vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   The Blank Installer Project (https://vborg.vbsupport.ru/showthread.php?t=65419)

Zachery 05-22-2004 09:30 PM

The Blank Installer Project
 
The Blank Installer Project

The Idea.

Even with the HTL, which can make things so much easier for a hacker’s life, not everyone chooses to use the HTL or even wants to install it, and then there is the rule that no hack may be released with out a txt or other installer if it uses the HTL, which is not under discussion here. So as we all know every hacker is left writing their own installer which can take just as long - if not longer than the hack itself to write.

The idea behind this project is to create a blank installer system that can be used for any hack at least at first, a template, as it would be. The installer should be able to use vBulletin’s own XML files, for both adding new templates, and adding new phrases, to help decrease time in having full templates and or full phrases in the system if it is at all possible.

Now, my self being a sub par hacker as it is, I would hope that the vBulletin community could get together and work on this as a group, where everyone could contribute what they are able to, and then in the future release this for all future hackers to be able to use.

Oblivion Knight 05-22-2004 09:33 PM

This has been discussed for a while now, but nothing has arose..

It would be great if such a thing could be created, but many people are currently busy with their own projects, or don't have the knowledge to help with such a thing (myself included probably). The HTL was a step in the right direction though..

Jerry 05-22-2004 10:00 PM

API & IDL. :)

Zachery 05-23-2004 01:38 AM

Quote:

Originally Posted by Jerry
API & IDL. :)

Are you going to be doing this for us jerry :p

Tony G 05-23-2004 07:06 AM

Sounds like a great idea, and I'd love to see it happen. :)

AlexanderT 05-23-2004 07:56 AM

Honestly, I've always prefered simple plain text instruction on how to apply a hack. Firstly, I want to know exactly what a hack does to my board. And secondly, I have my own way of commenting applied hacks, which enables me to make it easier to upgrade vB later on.

If someone people prefer automated installers, like based on HTL or a "blank installer" (whatever that is :)), that's fine with me; I only hope that hack authors will continue to always supply plain texts file as well.

Tony G 05-23-2004 08:05 AM

Quote:

Originally Posted by AlexanderT
Honestly, I've always prefered simple plain text instruction on how to apply a hack. Firstly, I want to know exactly what a hack does to my board. And secondly, I have my own way of commenting applied hacks, which enables me to make it easier to upgrade vB later on.

If someone people prefer automated installers, like based on HTL or a "blank installer" (whatever that is :)), that's fine with me; I only hope that hack authors will continue to always supply plain texts file as well.

It would be wise for them to display both versions, as some people prefer installing it manually.

Zachery 05-23-2004 08:10 AM

Quote:

Originally Posted by Tony G
It would be wise for them to display both versions, as some people prefer installing it manually.

All i plan for this to be is a tempalte for other hackers to use as an installer, for txt files its becoming too much of a hassle, to apply some changes that way, having to mass change querys to work with prefixes is a problem in it self. Not to mention having to add 30+ phrases would be insane, i get fed up adding 5 as it is now.

Most big hacks are released with installers, all they do is add templates settings and phrases and maybe a query or two, they still require you to manualy change files and templates.

Tony G 05-23-2004 08:12 AM

Quote:

Originally Posted by Zachery
All i plan for this to be is a tempalte for other hackers to use as an installer, for txt files its becoming too much of a hassle, to apply some changes that way, having to mass change querys to work with prefixes is a problem in it self. Not to mention having to add 30+ phrases would be insane, i get fed up adding 5 as it is now.

Most big hacks are released with installers, all they do is add templates settings and phrases and maybe a query or two, they still require you to manualy change files and templates.

Well, if the installers were put to that use, it would be fine. But couldn't these be used to install whole hacks for you, without you editing a thing yourself?

sabret00the 05-23-2004 08:17 AM

Quote:

Originally Posted by Tony G
Well, if the installers were put to that use, it would be fine. But couldn't these be used to install whole hacks for you, without you editing a thing yourself?

i just wanted (when i requested it in the other thread) something that inserts the templates and phrases, basically does all database additions.

thank you zach, wish i had more knowledge but this is a great move for this community :)

Tony G 05-23-2004 08:21 AM

Ah, well, that will be handy then. Just ignore my stupidity about this. :p

Zachery 05-23-2004 08:23 AM

Quote:

Originally Posted by Tony G
Well, if the installers were put to that use, it would be fine. But couldn't these be used to install whole hacks for you, without you editing a thing yourself?

Yes it could, but we tried that once, like vB hacker, its much better to let a real person do the template & file modifctions in the long run ;)

Jerry 05-24-2004 01:12 PM

Quote:

Originally Posted by Zachery
Are you going to be doing this for us jerry :p

Well I'm a bit busy with about 15 more importers atm ..........

Xenon 05-24-2004 01:34 PM

Quote:

Originally Posted by Jerry
Well I'm a bit busy with about 15 more importers atm ..........

aw, no real work for you to do then ^^

Jerry 05-24-2004 02:12 PM

Getting there, just about to start some more flat files ones, and that always slows things down !! :tired:

Dean C 05-24-2004 02:34 PM

A question for you Jerry - if such a system were to be implemented by you how would you go about it and what kind of framework would it involve :)?

tjdrico 05-28-2004 08:58 AM

A problem with automated installers is that they can barf horribly when being applied over an already-hacked system. For example, a hack I'm working on at the moment has this instruction:

Code:

FIND
????????????????
        'cansetthreadvisibility'  => 524288
????????????????
REPLACE WITH
????????????????
        'cansetthreadvisibility'  => 524288,
        'canpostvbookieevent'  => 1048576,
        'canbet'  => 2097152
????????????????

That's great, unless a previous hack has been installed with its own permission specified for 1048576. At least with a human being reviewing changes as they are made, they can cater for this if they know what they're doing. I wouldn't be confident of writing something that could cope with this sort of thing automatically though.

AlexanderT 05-28-2004 10:14 AM

Quote:

Originally Posted by tjdrico
A problem with automated installers is that they can barf horribly when being applied over an already-hacked system. For example, a hack I'm working on at the moment has this instruction... At least with a human being reviewing changes as they are made, they can cater for this if they know what they're doing. I wouldn't be confident of writing something that could cope with this sort of thing automatically though.

Ditto.

After re-reading this thread, I think what Zachery means by the mysterious "Blank Installer Project" is a standardized script that only offers automated installs of templates and phrases.

Zachery 05-28-2004 10:58 AM

Quote:

Originally Posted by AlexanderT
Ditto.

After re-reading this thread, I think what Zachery means by the mysterious "Blank Installer Project" is a standardized script that only offers automated installs of templates and phrases.

Templates, phrases, settings, any querys that need to be run.

Somthing that should help newer and even older users just coming up with an installer, if we have a more standized script where things can be "pluged" into it makes things so much simpler. :)


All times are GMT. The time now is 04:16 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01657 seconds
  • Memory Usage 1,763KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (19)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete