The installation process doesn't seem to write the config file, what should I do?
If the installer fails to write the config file, you can write the config file manually, by copying and pasting the following code:
Manual Config (for v3.1.4 and future versions)
^ Click to expand.
<?php
if(!defined('ACMS')){ header("Location: ../../"); }
//- Site Settings
$debug = 0; #- Debug Mode Enabled? (0 = No | 1 = Yes)
//- Database Connection Info
$port_host = ""; #- Domain without or IP Address
$db_host = ""; #- Database Host
$db_user = ""; #- Database User
$db_pass = ""; #- Database Pass
$db_data = ""; #- Database DB
$db_acc = ""; #- Account Database
//- Paypal Settings |:| Do Not Edit
$palurl = array(
"1" => "www.paypal.com",
"2" => "www.sandbox.paypal.com",
);
$palcur = array(
"1" => "USD",
"2" => "EURO",
"3" => "Other Currency Here", // Other Currency - cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
);
//- Paypal Manual Edit For Security
$palmail = "";
$palurl = $palurl[1]; // 1 = Paypal, 2 = SandBox
$palcur = $palcur[1]; // 1 = USD, 2 = EURO, 3 = Other
//- SOAP/Telnet Settings - Manual Edit
$soap_host = ""; #- World Server Host
$soap_user = ""; #- Account Username (Access = 4)
$soap_pass = ""; #- Account Password (Access = 4)
?>
Manual Config (for v3.1.3 and previous versions)
^ Click to expand.
<?php
if(!defined('ACMS')){ header("Location: ../../"); }
//- Site Settings
$debug = 0; #- Debug Mode Enabled? (0 = No | 1 = Yes)
//- Database Connection Info
$port_host = ""; #- Domain without or IP Address
$db_host = ""; #- Database Host
$db_user = ""; #- Database User
$db_pass = ""; #- Database Pass
$db_data = ""; #- Database DB
$db_acc = ""; #- Account Database
//- Paypal Settings |:| Do Not Edit
$palurl = array(
"1" => "www.paypal.com",
"2" => "www.sandbox.paypal.com",
);
$palcur = array(
"1" => "USD",
"2" => "EURO",
"3" => "Other Currency Here", // Other Currency - cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
);
//- Paypal Manual Edit For Security
$palmail = "";
$palurl = $palurl[1]; // 1 = Paypal, 2 = SandBox
$palcur = $palcur[1]; // 1 = USD, 2 = EURO, 3 = Other
//- RA/Telnet Settings - Manual Edit
$ra_host = ""; #- World Server Host
$ra_user = ""; #- Account Username (Access = 4)
$ra_pass = ""; #- Account Password (Access = 4)
?>
You will however, need to add your information manually, as well as fill out the global CMS table manually for this to work properly.