Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 496 Bytes

README.md

File metadata and controls

8 lines (7 loc) · 496 Bytes

TuneIn Air API PHP Script with Plain Text URL Support

(c) 2016: Nomy - https://hellclan.co.uk/

Add this script to crontab to run every 15 seconds (php-cli dependant):

* * * * * for i in 0 1 2 3 ; do php /home/web/domains/domain.com/public_html/tunein-cron.php & sleep 15; done

or (using wget to run a script on the web):

* * * * * for i in 0 1 2 3 ; do wget http://domain.com/tunein-cron.php -O /dev/null & sleep 15; done