
Originally Posted by
miles
after uploads all this files to my server
my product info just dissapears.. nothing shows
and i try to upload this file TabbedProducts_v3.8_Full.sql from admin>tools but i get this error
why is that?? wht ive done wrong..?

This is because you are using a prefix in your database. Edit the included sql file and globally replace:
Code:
configuration_group
with
Code:
mensdesi_zc1.configuration_group
(Do that one first)
After that one do:
with
Code:
mensdesi_zc1.configuration
So you should result in things like:
DELETE FROM `mensdesi_zc1.configuration_group`
and
INSERT INTO mensdesi_zc1.configuration_group
This will solve your empty page problem that is occurring because it is erroring on your missing database calls.
Bookmarks