Mixpost Lite Install Guide for LAMP App
-
@jdaviescoates yes I did! I’m planning on waiting about a year to see the app’s progress. If i decide that it’s not for me, the license is yours.
-
@humptydumpty fair enough, thanks!
-
I found the solution, there were some typos:
Step 7, you should use:
#!/bin/bash # Place custom startup commands here sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan horizon sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3 &
but now logs say:
=> Healtheck error: Error: connect ECONNREFUSED <ip_here>:80
where
<ip_here>
is my ip
does someone know what is happening? -
Okay I managed to make it work, there was another typo in step 7, this is the correct script to make it work:
#!/bin/bash # Place custom startup commands here sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan horizon & sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3 &
-
@reactive said in Mixpost Lite Install Guide for LAMP App:
Okay I managed to make it work, there was another typo in step 7, this is the correct script to make it work:
#!/bin/bash # Place custom startup commands here sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan horizon & sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3 &
fyi I'm just using it in the cron section:
* * * * * cd .. && cd data/public/mixpost-enterprise-app && php artisan schedule:run >> /app/data/null 2>&1 @service cd .. && cd data/public/mixpost-enterprise-app && php artisan horizon