I have a problem when try to move my Mambo 4.5.1a site from a local testing server to remote hosting (I installed Mambo locally, add components, mambots and content and now I want to move all to remote server)
Here is what I did:
1. Export db from PHPMyadmin (local server)
2. Create new db, user, password on remote server
3. Import dump file
4. FTP all Mambo site from local to remote server (root directory)
5. Chage configuration.php (remote server) as follows
$mosConfig_host = 'localhost';
$mosConfig_user = ' username created in new db';
$mosConfig_password = 'password created in new bd';
$mosConfig_db = 'name of new bd';
$mosConfig_live_site = 'http://www.mydomain.com/';
$mosConfig_absolute_path = '/usr/home/user/public_html/'; (ISP wrote me this one)
$mosConfig_cachepath = '/usr/home/user/public_html/cache';
The problem:
When write in browser
http://mydomain.com/ or
http://mydomain.com/administrator the error is:
The requested URL /installation/index.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
What is wrong?
The versions:
Locak server MySQL 4.1.8 PHP 5.0.3
Remote server MySQL 4.0.21 PHP 4.3.11
thank you in advance!