• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Error running cron

S

StuartS

Guest
I am getting the following error message after running a php script using a cron job from my VPS.


--07:05:01-- http://www.examsolutions.co.uk/tuition/expiring_ad.php
=> `expiring_ad.php'
Resolving www.examsolutions.co.uk... 212.241.218.66
Connecting to www.examsolutions.co.uk|212.241.218.66|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 258 [text/html]
expiring_ad.php: Permission denied

Cannot write to `expiring_ad.php' (Permission denied).

Can anyone tell me what to do to stop this.

Many thanks in advance
 
Fix?

Hi, you probably just have to change the file permissions to 777 or rwxrwxrwx...

To do this, either go to the parent folder in SSH and do:

chown -hR [user]: psacln [folder]
chmod -R 755 [folder]

or if that fails

chown -hR [user]: psacln [folder]
chmod -R 777 [folder]

(remove the space after the : - it is there to prevent smiley)

or from Plesk file manager change permissions on the folder to allow read, write and execute to all...
 
I tried changing the folder and file permissions to 777 but unfortunately I still get the same error.

Any ideas?

Thanks in advance
 
Back
Top