cancel
Showing results for 
Search instead for 
Did you mean: 

Changes not saving in admin after move to new server

Changes not saving in admin after move to new server

I recently moved my magento store from a server using one domain name to a new host/server with another domain name. DNS has not been changed on the new domain yet so I am using my host file to work on the site.

After the move to a new server, When I make changes to product descriptions or CMS Page Click Save it says that it was saved, however, after saving, changes show on frontend of site immediately but don't show in the admin unless I log out and log back in.

I am unable to delete text in existing CMS page or product descriptions at all without going into phpMyAdmin and removing the text from the database.

I have done the url rewrite fixes and made sure base urls are correct in database and all but nothing fixes this.

1 REPLY 1

Re: Changes not saving in admin after move to new server

Hi

 

I was also moving to another server running PHP7. For debugging reasons I added

 

register_shutdown_function("fatal_handler");
function fatal_handler() {
$error = error_get_last();
echo("<pre>");
print_r($error);
}

 

to index.php which caused the problem. Not sure this helps...

 

Lesson learned for me (again): Remember the changes you do. :-)

 

Regards

Jonas