Ben bu dosyayı eklemek için gereken bir cron işi var:
require '../includes/common.php';
however, when it is run via the cron job (and not my local testing), the relative path does not work. the cron job runs the following file (on the live server):
/home/username123/public_html/cron/mycronjob.php
ve burada hata var:
Fatal error: require(): Failed opening required '../includes/common.php'
(include_path='.:/usr/lib/php:/usr/local/lib/php') in
/home/username123/public_html/cron/mycronjob.php on line 2
cron işi olarak aynı mutlak biçimini kullanarak, common.php
yer olurdu
/home/username123/public_html/includes/common.php
i ile hattımı 2 değiştirmek zorunda demek:
require '/home/username123/public_html/includes/common.php';
?
teşekkürler!