Jump to content

[Solved] transfer to remote server


Recommended Posts

Hi Friends
I did transfer my shop from local dserver to remote server
I did all steps to preper moving
I change my setting.php file
but when i want to enter to shop the browser sends me to local version of ashop
help me please

Link to comment
Share on other sites

Thank u very much
I did it and now I'm not rid of to local but there is another problem I recieve blank page and not the shop
do you know (and I feel yet that you know all) what is a problem solution?

Link to comment
Share on other sites

  • 3 weeks later...

You have to change the domain name in database.<br/>You can change at back office <br/><br/>Preference tab<br/>SEO & URLs tab<br/><br/>But you may also be redirected to local when you access you back office.<br/>In this case, please check my blog here to fix that<br/><br/>Please check it out here to fix your issue.

 

I've the same(?) problem.

I've configured my site local (just simple, no url rewitting or .htaccess things) and wanted tot transfer it to server:

 

so i did:

transfer files tot server (filezilla)

chmod serveral dir's

export db local,

import db server,

change the ps_configuration with correct url (without http://)

change settings.inc.php (not really, dbase setting complete the same, name, user, password and path)

 

but can't see my BO, only blank screen.

What should i do, what did i wrong?

Link to comment
Share on other sites

but can't see my BO, only blank screen.

What should i do, what did i wrong?

there musst be some error is happening.

please set "display_errors" to 'on' in file /config/config.inc.php to see what the error is, and it will give you some clues.

Link to comment
Share on other sites

but can't see my BO, only blank screen.

What should i do, what did i wrong?

there musst be some error is happening.

please set "display_errors" to 'on' in file /config/config.inc.php to see what the error is, and it will give you some clues.

 

Thanks for reply! (it's sometimes hard to do everthing alone ;-) )

 

Great! I wasn't aware of this setting.

 

It is an: mcrypt_encrypt() error:

Fatal error: Call to undefined function mcrypt_encrypt() in /var/www/vhosts/(domein).nl/httpdocs/classes/Rijndael.php on line 44

 

I think the - mycrypt - module is not installed on the server (i saw it when i did an fresh server-install, it was the only red cross, but i could continue so i thought it wasn't necessary, but it is?)

I should ask my hosting provider, i think?

Link to comment
Share on other sites

It would appear that you've chosen the encryption method that requires mcrypt (or maybe this is now the default). I would change the record in the configuration table with name PS_CIPHER_ALGORITHM to '0'.

 

e.g. (assuming the DB_PREFIX is 'ps_') :

 

UPDATE `ps_configuration` SET `value` = '0' WHERE `name` = 'PS_CIPHER_ALGORITHM';

 

Paul

  • Like 1
Link to comment
Share on other sites

It would appear that you've chosen the encryption method that requires mcrypt (or maybe this is now the default). I would change the record in the configuration table with name PS_CIPHER_ALGORITHM to '0'.

 

e.g. (assuming the DB_PREFIX is 'ps_') :

 

UPDATE `ps_configuration` SET `value` = '0' WHERE `name` = 'PS_CIPHER_ALGORITHM';

 

Paul

 

Tnx for replying.

i'll try...and inform this forum.

 

yep, it worked! tnx...but is it secure?

  • Like 1
Link to comment
Share on other sites

I think it is PHP configuration problem.

look into your PHP.ini file, if you find following line started with ";" (it is commented out). Try to removed ";".

 

;extension=php_mcrypt.dll 

 

If you don't know how to do that, it is better talk to your provider.

  • Like 2
Link to comment
Share on other sites

×
×
  • Create New...