Author |
|
mikedkap Newbie
Joined: 02 April 2009
Online Status: Offline Posts: 1
|
Posted: 02 April 2009 at 9:10am | IP Logged
|
|
|
Can anyone explain to me where to make these changes from Step 5 of the installation?
Thanks!
# Now you should assign owners and their rights.
Change the current working directory to the folder with WebMail PHP scripts:
cd /var/www/html/webmailphp/
Assign rights to files and folders:
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
Assign owner to files and folders. You can assign another owner (the same as owner of other folders/files in /var/www/html/):
find . -type d -exec chown root.root {} \;
find . -type f -exec chown root.root {} \;
Change the current directory to the WebMail PHP working folder:
cd /var/webmail_data/
Assign rights to files and folders:
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
Assign owner to files and folders. Please note, Apache can be started under another user account, for example, under nobody.nogroup. Apache process (httpd) should have write permission to the specified folder, thus, you should assign as owner user Apache is running under:
find . -type d -exec chown apache.apache {} \;
find . -type f -exec chown apache.apache {} \;
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 02 April 2009 at 9:32am | IP Logged
|
|
|
You should make them on your Linux server where you're installing WebMail PHP (Pro or Lite).
Regards,
Alex
|
Back to Top |
|
|
Gsmith Newbie
Joined: 10 April 2009
Online Status: Offline Posts: 1
|
Posted: 10 April 2009 at 7:11am | IP Logged
|
|
|
Hello there,
Even i am getting this problem, i can't understand what to do at all in Step 5. Can you be precise Mr Alex, and also "how to make them on our Linux server".
Waiting your reply,
Thanks in advance,
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 10 April 2009 at 7:31am | IP Logged
|
|
|
In order to help you on this, we need to know whether you're trying to run Pro or Lite version of AfterLogic WebMail. Additionally, please let us know if you have SSH access to server or you can manage files using FTP only.
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|