Ok. I have loaded each file 1 at a time and tested for the login to the admin area after each one. The only one that gave me a problem was the file mentioned earlier;
admin/includes/functions/extra_functions/infopages_functions.php
So I backed this one out. According to other users this is not necessary as functionality is duplicated elsewhere.
To complete the install I logged into the admin area and enabled the infopages sidebox in Admin>Tools>Layout Boxes and got the following message on the public facing site:
1146 Table toys.zen_infopages doesn't exist
I had run infopages.sql in phpmyadmin and thought this is what that did? Create the table?
Code:
DROP TABLE IF EXISTS infopages;
CREATE TABLE infopages (
`pages_id` int(11) NOT NULL auto_increment,
`pages_title` varchar(64) NOT NULL default '',
`alt_url` varchar(255) NOT NULL default '',
`pages_html_text` text,
`status` int(1) NOT NULL default '1',
`vertical_sort_order` int(3) NOT NULL default '0',
`horizontal_sort_order` int(3) NOT NULL default '0',
PRIMARY KEY (`pages_id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
I admit this is all new to me and whilst I think I could create a table manually, I wouldn't know how to 'configure' it. I feel I am so nearly there and any support on completing this would be gratefully received.
Thank you