How to setup scheduled cron on AWS Lightsail LAMP server
First, just wanted to say awesome program!
Second, I had an issue getting the scheduled cron to work. The solution for me was to include the full bin path of php. So, to make it work,
Log into your Lightsail server's console
Type in
sudo crontab -e
- Paste the following at the bottom of the file:
*/5 * * * * /opt/bitnami/php/bin/php /opt/bitnami/apache2/htdocs/sendy/scheduled.php >> /dev/null 2>&1
Thirdly, code change recommendation to send-to.php ~line 841
<pre id="command"><?php echo PHP_BINARY;?> <?php echo $server_path;?>scheduled.php > /dev/null 2>&1</pre>
Although I haven't tested the PHP_BINARY constant extensively on shared servers.
Keep up the great work!
This discussion has been closed.
Comments
Thank you for sharing and glad to hear you like Sendy.