0

phpmydirectory にサイトを構築しています。

管理パネルに移動すると、以下の警告が表示されます。誰かがそれを修正する方法を教えてもらえますか? 一時フォルダーには755のアクセス許可があり、777でも試しました。

Scheduled tasks have not run in the last 5 days. Please ensure the /files/temp/ folder is writable. If it continues to fail, please setup your cron job to run hourly using one of the following:

Using PHP:

php -q /home/content/60/8955660/html/cron.php 2f1d8c64644e7d9d462d8602aed5e6a3

Using GET:

GET http://www.peydaa.com/cron.php?c=2f1d8c64644e7d9d462d8602aed5e6a3

前もって感謝します。

4

1 に答える 1

0

「 www-data」という Apache Web サーバー グループが「/files/temp/」の所有者であることを確認してください。

例:

chmod -R 775 www-data /files/temp/

chown -R www-data:www-data /files/temp/

于 2013-01-12T16:03:06.277 に答える