I was tasked with building a new server and migrating the exist website over to the new server. I got almost everything, however, there are certain things in fckeditor that broke.
Background information,
Original server: Ubuntu 9.04
New server: Debian 6
I used rsync to transfer the files in /var/www to the new server.
mysqldump to export the database and imported it into the new server.
I used `dpkg --get-selections | grep 'php\|mysql'` to get the dependency list needed. The only difference is mysql is 1 point revision newer.
The issue is when I try to edit a page, it says "Changes successfully saved." but the changes did not take. The apache logs tell me this...
[Wed Jan 23 14:54:30 2013] [error] [client 10.24.0.70] PHP Notice: Undefined index: msg in /var/www/intranet/admin/includes/adm-header-inc.php on line 21, referer: http://10.25.8.102/admin/content_man.php?id=1&msg=50
[Wed Jan 23 14:54:30 2013] [error] [client 10.24.0.70] PHP Notice: Undefined variable: vertical_link_id in /var/www/intranet/admin/includes/adm-verticalmenu-inc.php on line 13, referer: http://10.25.8.102/admin/content_man.php?id=1&msg=50
[Wed Jan 23 14:54:30 2013] [error] [client 10.24.0.70] PHP Notice: Undefined variable: vertical_link_id in /var/www/intranet/admin/includes/adm-verticalmenu-inc.php on line 13, referer: http://10.25.8.102/admin/content_man.php?id=1&msg=50
[Wed Jan 23 14:54:30 2013] [error] [client 10.24.0.70] PHP Notice: Undefined variable: sBasePath in /var/www/intranet/admin/content_man.php on line 168, referer: http://10.25.8.102/admin/content_man.php?id=1&msg=50
There are some other errors, but they are related to missing image files which isn't an issue.
Could the new version of mysql cause these Undefined variables? The mysql logs do not give me any information (in fact, they are blank).