我有問題cron作業..我cron作業設置爲運行每五分鐘一個文件,但是那不行...... cron作業沒有運行文件,代碼:cron作業沒有運行該文件
<?php
set_time_limit(1000000000000000);
include $_SERVER['DOCUMENT_ROOT'].'/includes/connect.php';
mysql_connect('localhost', 'root', '') or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
$getinfo = mysql_query("SELECT * FROM something WHERE game_id = '2'") or die(mysql_error());
while($servers[] = mysql_fetch_assoc($getinfo)){
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
</head>
<body>
</body>
</html>
感謝所有的人試圖幫助...
是什麼cron中的配置文件或crontab中的條目是什麼樣子? –
/website/includes/something/thisfile.php – user3199197
請問http://stackoverflow.com/questions/2689284/executing-php-with-crontab有幫助嗎?如果這是標準的'cron'系統,則它被設計爲運行'php'命令之類的東西;它不會直接運行PHP源代碼,但是您可以提供文件名作爲'php'命令的參數。 –