|
|
|
|
Please help us keep this project
alive by making a small donation
via SourceForge |
|
|
|
|
Running Aqua CMS in a sub folder |
|
|
Install Aqua CMS as normal.
Once installed open the application.php file that's in your folder root and change the following line:
if($folcnt > 1) { for($i=2;$i<=$folcnt;$i++) { $folappstep .= "../"; } } else { $folappstep = ""; }
To:
if($folcnt > 1) { for($i=3;$i<=$folcnt;$i++) { $folappstep .= "../"; } } else { $folappstep = ""; }
Open the aq_editor.php
Change:
$folcnt = $folcnt - 2;
To:
$folcnt = $folcnt - 3;
Please note: We do not recommend installing Aqua CMS into a subfolder. It is not designed to do so. If you want to have several different sites on one domain use sub domains.
|
|
|
|