I've been playing around with this today and found out two things. First of all, there's a way of getting this MOD passed the first stage of easyMOD installation (Something that was initially bringing up errors.) First I moved the 'admin', 'includes' and 'templates' directories into a 'root' folder. Then I took these lines at the beginning of the installation instructions;
Code: Select all
admin/admin_random_quotes.php
templates/subSilver/admin/random_quotes.tpl
includes/functions_quotes.php
and replaced them with;
Code: Select all
copy root/admin/admin_random_quotes.php to admin/admin_random_quotes.php
copy root/templates/subSilver/admin/random_quotes.tpl to templates/subSilver/random_quotes.tpl
copy root/includes/functions_quotes.php to includes/functions_quotes.php
Then you're able to run it through easyMOD without any trouble, except for the second thing I noticed. A small segment of the SQL command seems to bring up an error in easyMOD;
1 Warning(s) reported by the SQL Parser
Non-portable syntax option(s) "TYPE = MYISAM", ignored, statement: 1, table: "phpbb_quotes"
Is this an issue? EasyMOD leaves out this segment and instead runs only this part of the opening command;
CREATE TABLE phpbb_quotes (
quotes_name VARCHAR(255) NOT NULL,
quotes_value LONGTEXT NOT NULL
);
Anyway, glad to hear that the custom font is coming along. I have a TestBoard setup that I've been using for skinning etc. and I'd be happy to use that for testing of this MOD. So sign me up and let me know when you wanna give it a shot.
