tenfashion Posted February 18, 2011 Share Posted February 18, 2011 I moved my site on server . I make a new subdomain /shop , i upload all site and sql, config sql , but define('__PS_BASE_URI__', '/'); not know how config ?i try : define('__PS_BASE_URI__', '/');define('__PS_BASE_URI__', '/shop/');define('__PS_BASE_URI__', '/public_html/shop/');define('__PS_BASE_URI__', '/home/public_html/shop/');define('__PS_BASE_URI__', '/site/shop/');who is ok ? Link to comment Share on other sites More sharing options...
joglon Posted February 18, 2011 Share Posted February 18, 2011 Hi,depends on which version you are using.for 1.3.x -> define(’__PS_BASE_URI‘__, ‘/shop/’); in config/settings.inc.php AND if version 1.3.2 in database change in tabel ps-configuration, field PS_BASE_URI !for 1.4 -> only define(’PS_BASE_URI‘, ‘/shop/’); in config/settings.inc.phpBUT:since you said: I moved my site on server . I make a new subdomain /shop , i upload all site and sql, config sql , but define(’PS_BASE_URI‘, ‘/’); not know how config ? Have you changed your database-settings in config/settings.inc.php :define('_DB_NAME_', 'prestashop'); --> it is possible your host has given you a db-name(not changeable)define('_DB_SERVER_', 'localhost'); --> this has to be your host's database-serverdefine('_DB_USER_', 'root'); --->your user name for the host's db-serverdefine('_DB_PASSWD_', 'root'); -->your password for your host's db-server Link to comment Share on other sites More sharing options...
tomerg3 Posted February 18, 2011 Share Posted February 18, 2011 It should be /shop/You can turn on error reporting (/config/config.inc.php line #4) which should show you the actual error rather than a white screen.It could be related to incorrect permissions. 1 Link to comment Share on other sites More sharing options...
tenfashion Posted February 18, 2011 Author Share Posted February 18, 2011 CHMOD 777 was problem! Link to comment Share on other sites More sharing options...
Recommended Posts