Author Topic: migrate fengoffice 1.6.2 to a new server - only get header after login  (Read 4273 times)

derUser

  • Newbie
  • *
  • Posts: 3
    • View Profile
Hello,

I had to move our fengoffice installation to a new and bigger server to get better performance. the server runs under ubuntu 9.10. There is also a bugzilla und mediawiki running perfectly on it.

For the migration from the old server to the new one I dumpt the mysql database in the new one and copied the whole fengoffice directory to the new location. After that I did like in the documentation and edited config/config.php. Changed db-settings and entered new url. I also deleted cache/autoloader.php and changed the file permissions.

After that I loaded the page on the new server, could log in with my user/password but got only the header and some errors in javascript ( shown by firebug ).

- og.maxUploadSize is missing a ;
- og.preferences is undefined

When I click on the "Alles" link, I get a new javascript error

- in the function og.expandSubWsCrumbs = function(id) {

}

var tree is not defined.

What is wrong here?

I get the same errors with a fresh install on that server.


Thanks for any help

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
The problem seems to be that in some PHP configuration file you have upload_max_filesize or post_max_size set as 16MB. The correct syntax would be 16M. Changing this should fix the problem.

derUser

  • Newbie
  • *
  • Posts: 3
    • View Profile
Thanks for your help.

It was realy that simple.