• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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