Manual Setup
Synopsis
This section shows how to complete the installation of Esvon Classifieds, should you be unable to execute install.php on your system.
Procedure
1. Application.php
Open inc/application.php in your php editor (or notepad).
Edit these lines with your database connection settings:
define(‘DB_SERVER’,'localhost’);
define(‘DB_NAME’,'database_name’);
define(‘DB_USER’,'database_username’);
define(‘DB_PW’,'database_password’);
2. MySQL
Open tables.sql in /docs in a text editor
For each line starting with ‘CREATE TABLE’ add ‘ec3′ before the table name. For example
change CREATE TABLE admin_login to CREATE TABLE ec3_admin_login
There should be around 36 tables names to update.
If your text editor allows it you can run find/replace as follows:
FIND ‘Table<space>’ – REPLACE ‘TABLE Ec3_’
Open PhpMyAdmin and navigate to your new database by selecting it in the drop-down menu on the left hand-side.
Select SQL at the top-right of the screen.
Copy the text from tables.sql and paste it into the SQL box. Click go.
The necessary tables will be created.
3. Final steps
Delete /docs and install.php from your server.
Change the permissions for /inc/application.php to 644
Log in admin and change your contact email address/site url and admin username and password.
You are now ready to proceed to the next section.
