Quote:
Sirius said:
So the chat u use can only be used for their network? cause i wanna be able to use it for Aniverse and have forum users click the chan name and it connect with the java applet u have. I've seen them before but I like the way yours looks the best.
|
The webmaster backpack java applet only works with webchat servers. Actually, what you see on my forum is incredibly stripped down. I turned off most of the buttons to make it easy for first-time chatters.
Quote:
hey whats it mean when someone says run the file from AdminCP to install?
That was in the instructions of one of the hacks i'm trying to install and i have no clue how to do that.
|
Because of the complexity of installing some hacks (modifying 20-30 files), people have started to write smart installers to automate the process. If you look around, you'll see that more and more hacks come as "vbHacker installable". My IRCBrowse hack does not have an installer because you only modify one file to use it.
Quote:
Also what is Query's and how do i do them. Will need step by step on this one cause have not a single clue what it is, what it does, how to do it, or where to do it at^_^
|
You know I have been doing PHP for about a month now, I just haven't gotten round to using MySQL much.
A query is how you get information FROM or write information TO the MySQL database your forum (or website) runs on. Queries can be incredibly complex, grabbing a ton of cross-linked information from various parts of the database and recombining it into a temporary array which is then merged with HTML to display a forum page or other such tasks.
The reason why we talk about queries is that each MySQL query, no matter how simple or complex, adds to the load your server uses. But in many cases you do not have a choice. Each PHP page needs to do MySQL queries to get the information necessary to display the forum home, or a forum thread list, or to do a search, or to handle attachments, etc.
If you want to know how many users registered on your forum today and a MySQL query has not already been done to grab this information and provide it to the PHP script that's running, you'll have to do a query for it.
You can imagine that if someone comes out with a hack that does 5-10 queries and someone else does the same hack but it only does 1 query or even piggybacks on queries ALREADY being done on the page, then we'll probably favor that version of the hack!
Take your time, there's no rush to learn this stuff.