[REVCMS] Help Page Addon

Obey

You just played yourself.
Nov 23, 2013
250
29
I made a help tool addon based off of zMagenta's staff application standalone page. This works by sending the submitted information into your database therefore it's essential that you run the SQL below or it simply won't work. Install instructions are included within the download, it really isn't hard to do. This is old and at the time I didn't replace my skin with {skin}, but I have now, so ignore that in the install instructions.

df3c409ebba53093f78ed2451e3b6915.png
RUN THIS SQL IN YOUR DATABASE:
Code:
DROP TABLE IF EXISTS `helptool`;
CREATE TABLE `helptool` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subject` varchar(255) DEFAULT NULL,
  `message` varchar(255) DEFAULT NULL,
  `staff` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
The only bug I can see is the "content-bottom" that doesn't show. I've tried to fix it but can't, so if you can post it in the replies. I didn't want such a small bug to hold this release back, so I just posted it anyway.

Download:

If you have any feedback please leave it below and I would be happy to try and improve.
 

Users who are viewing this thread

Top