No description
Find a file
2016-11-06 16:19:16 -06:00
images Initial commit 2016-11-06 16:19:16 -06:00
CHANGES Initial commit 2016-11-06 16:19:16 -06:00
COPYING Initial commit 2016-11-06 16:19:16 -06:00
emoticons.php Initial commit 2016-11-06 16:19:16 -06:00
index.php Initial commit 2016-11-06 16:19:16 -06:00
post.php Initial commit 2016-11-06 16:19:16 -06:00
README Initial commit 2016-11-06 16:19:16 -06:00
required.php Initial commit 2016-11-06 16:19:16 -06:00
tagboard.css Initial commit 2016-11-06 16:19:16 -06:00
tagboard.dat Initial commit 2016-11-06 16:19:16 -06:00
tagboard.php Initial commit 2016-11-06 16:19:16 -06:00
THANKS Initial commit 2016-11-06 16:19:16 -06:00
TODO Initial commit 2016-11-06 16:19:16 -06:00
VERSION Initial commit 2016-11-06 16:19:16 -06:00

Before the tag board will function, we have to do a few things...

  1. Make sure you have PHP on your server, if not, it won't work

  2. Unpack the .ZIP file to a directory on your server (/tagboard will be fine)

  3. a. If you decide to use a text file, then make sure you change the 
        permissions on the file to 666 (chmod 666 tagboard)

     b. If you are going to use a MySQL database, you will need to create your 
        database for the script to work off of:

          create table tagboard
            (
              id int(10) not null auto_increment,
              nick varchar(16) not null,
              url varchar(128) not null,
              message varchar(128) not null,
              datetime varchar(255) not null,
              ip varchar(15) not null,
              primary key(id)
            );

  4. Edit required.php to reflect your  set up, along with the other 
     customizations

  5. Enjoy your new tag board!

CHEERS!