Author |
|
donovan Newbie
Joined: 24 November 2008 Location: Brazil
Online Status: Offline Posts: 2
|
Posted: 03 December 2008 at 4:30pm | IP Logged
|
|
|
I'm trying to install the WebMailPro PHP into my remote webhosting http://gmailclone.apenex.info and following the WebMail PHP Installation Instructions for Unix servers, I opened the inc_settings_path.php file from web/ folder, and set the value of the $dataPath variable to <? $dataPath = "/public_html/data"; ?> what is my web root directory. However when I open http://gmailclone.apenex.info/web/adminpanel/index.php it retrieve an error :
Failed to access "adminpanel.xml" config file.
The chmod 777 already sets for "data" folder and files.
Please look it in the browser. thanks.
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 04 December 2008 at 5:36am | IP Logged
|
|
|
/public_html/data isn't a valid path to the data folder. There's no public_html folder in the root folder on your server, it's subfolder of another folder like /var/www. However, that folder may be a root folder of your FTP account.
So, you need to specify full absolute path to the data folder (something like /var/www/public_html/data or /home/donovan/public_html/data) or relative one as described in FAQ.
Best regards,
Andrew
|
Back to Top |
|
|