enginewizz
New Member
Hi, there
I have php 7.3 installed, and cronjob installed using ubuntu 16.04
and camp is not sending, tried to remove >/dev/null 2>&1 but still had no luck,
i tried with or without "root" on each of command but still had no luck
# Campaigns sender, runs each minute.
* * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php send-campaigns >/dev/null 2>&1
# Transactional email sender, runs once at 2 minutes.
*/2 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php send-transactional-emails >/dev/null 2>&1
# Bounce handler, runs once at 10 minutes.
*/10 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php bounce-handler >/dev/null 2>&1
# Feedback loop handler, runs once at 20 minutes.
*/20 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php feedback-loop-handler >/dev/null 2>&1
# Delivery/Bounce processor, runs once at 3 minutes.
*/3 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php process-delivery-and-bounce-log >/dev/null 2>&1
# Various tasks, runs each hour.
0 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php hourly >/dev/null 2>&1
# Daily cleaner, runs once a day.
0 0 * * * root /usr/bin/php -q /var/www/html/apps/console/console.php daily >/dev/null 2>&1
Please help!
Thanks
I have php 7.3 installed, and cronjob installed using ubuntu 16.04
and camp is not sending, tried to remove >/dev/null 2>&1 but still had no luck,
i tried with or without "root" on each of command but still had no luck
# Campaigns sender, runs each minute.
* * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php send-campaigns >/dev/null 2>&1
# Transactional email sender, runs once at 2 minutes.
*/2 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php send-transactional-emails >/dev/null 2>&1
# Bounce handler, runs once at 10 minutes.
*/10 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php bounce-handler >/dev/null 2>&1
# Feedback loop handler, runs once at 20 minutes.
*/20 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php feedback-loop-handler >/dev/null 2>&1
# Delivery/Bounce processor, runs once at 3 minutes.
*/3 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php process-delivery-and-bounce-log >/dev/null 2>&1
# Various tasks, runs each hour.
0 * * * * root /usr/bin/php -q /var/www/html/apps/console/console.php hourly >/dev/null 2>&1
# Daily cleaner, runs once a day.
0 0 * * * root /usr/bin/php -q /var/www/html/apps/console/console.php daily >/dev/null 2>&1
Please help!
Thanks