Quote:
Originally Posted by y2krazy
Well, that fixed it. Seems that this was the snag in the XML file:
Code:
) ENGINE = MYISAM ;");]]></installcode>
Simply remove that little piece and it should work fine.
Also, I wasn't aware of this, but is this mod just for the owner of the site it's used on to utilize, or is it editable on a per-user basis?
EDIT: That didn't fix the SQL. It never made the 'portfolio' table and when I tried to run that query in phpMyAdmin, this it what it gave me:
#1074 - Too big column length for column 'description' (max = 255). Use BLOB instead
|
I was hoping that it didn't do that. You'll need to do this instead:
PHP Code:
CREATE TABLE `portfolio` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`link` VARCHAR( 100 ) NOT NULL ,
`site` VARCHAR( 100 ) NOT NULL ,
`start` VARCHAR( 100 ) NOT NULL ,
`finish` VARCHAR( 100 ) NOT NULL ,
`screen1` VARCHAR( 255 ) NOT NULL ,
`alt1` VARCHAR( 255 ) NOT NULL ,
`screen2` VARCHAR( 255 ) NOT NULL ,
`alt2` VARCHAR( 255 ) NOT NULL ,
`description` VARCHAR( 255 ) NOT NULL
) ENGINE = MYISAM ;
Also note, that the table prefix is not in there. If you have vb_ as your table prefix change "portfolio" to "vb_portfolio" and it'll correctly integrate.
Yes, this mod is for the Owner only. Or at least anyone with access to the ACP.
Quote:
Originally Posted by mac27
OK but where do you find the portfolio at. I know it is there but where. 
|
After you install the mod, and upload the files go to the following URL:
http://www.domain.tld/forum_directory/portfolio.php
That is if you didn't rename that.