07-16-2010, 09:08 PM
(This post was last modified: 07-22-2010, 05:48 PM by matteo lucarelli.)
* Unpack all the files in a public web server folder
If you're working on a hosting machine your provider will indicate you where you should upload the files.
* Create a data folder somewhere in your web server
For security reason probably it should not be in the public folders.
The directory must have read/write permission for the web-server user.
* Create a new DB on your web server
* Create a new user for the DB with all permissions on the new DB
* Execute "create_tables.sql" in the new DB
This three steps depends on which DB interface you're using (whith phpMyAdmin is all very easy).
* Edit the inc/inc.Settings.php to match your preference and settings
At least $_rootDir, $_httpRoot, $_contentDir, $_ADOdbPath, $_dbHostname, $_dbDatabase, $_dbUser, $_dbPass must be edit.
Note that for the paths you probably need to ask to your provider because the absolute path on the server is not immediatly viewable in a hosted system.
If you're working on a hosting machine your provider will indicate you where you should upload the files.
* Create a data folder somewhere in your web server
For security reason probably it should not be in the public folders.
The directory must have read/write permission for the web-server user.
* Create a new DB on your web server
* Create a new user for the DB with all permissions on the new DB
* Execute "create_tables.sql" in the new DB
This three steps depends on which DB interface you're using (whith phpMyAdmin is all very easy).
* Edit the inc/inc.Settings.php to match your preference and settings
At least $_rootDir, $_httpRoot, $_contentDir, $_ADOdbPath, $_dbHostname, $_dbDatabase, $_dbUser, $_dbPass must be edit.
Note that for the paths you probably need to ask to your provider because the absolute path on the server is not immediatly viewable in a hosted system.