

|
If you've seen the weird thingie in our splash page, it's a plugboard thingie >3 First things first... Before you can start, you will need to (download) the plugboard files and unzip them with Winzip or another similar application. You sould now have readme.txt, plug.php, plug.db.php, banned.php, config.php and index.php. Make sure that your host supports PHP and FTP (so you can CHMOD the files)! If they do not then there's no way you will be able to install the plugboard X.o Installation: 1. Open config.php and edit the settings to your desire. Make sure you edit the $path to "yoursite.com/plugboard" 2. Create a folder for the plugboard files. 'Plugboard' would be a good thing to call it. 3. Upload config.php, banned.php, plug.php, plug.db.php and index.php to your plugboard folder (or just upload the entire folder and ignore #2) 4. CHMOD plug.db.php to 666. 5. To include the script on your .php page use the following code: <? include "plug.php"; ?> If you want to include it in an iframe (incase you don't want to use .php extensions on your site) use the following code. <iframe src="http://www.yoursite.com/path to plugboard/index.php" width="100" height="195" frameborder="0" scrolling="no"></iframe> Banning unwated IP's: Open banned.php and add the IP you wish to ban here; go look in the plug.db.php for the IP's of plugged buttons. $blockip = array("1.1.1.1"); If you want to ban more than one IP simply seperate them with a comma. $blockip = array("1.1.1.1, 2.2.2.2"); Then save the file; the unwanted IP's will now be banned from your plugboard. |