Your web app’s user interface (UI) is the first thing that users will see and interact with, so it’s important to make a good impression. A well-designed web app UI design can help you attract and retain users, and even increase conversions. Here are 10 things to consider when designing a high-converting web app UI...
Over the last few weeks I’ve tried everything to get a simple cron job test running on 1and1 dedicated linux hosting. Although the test PHP file would run fine in the browser and again run fine from a SSL command it just would not run from crontab. All I kept getting was a “Could not open input file:” error.
I tried making sure the path to the php CLI/CGI/Executable was correct but that made no difference. I added #!/usr/bin/php to the top of the php file, still no joy. I tried adding the -q and -f commands, still nothing. I changed file permission, nowt. Everytime it ran it just gave the same “Could not open input file:” error until this morning I wanted to try and track everything that was happening when crontab tried to run the php script so I ended up trying to write the output to a cron.log file. The first thing I did was add an extra bit to the crontab entry that would save to the log file like this…
>> /home/######/cron.log
And suddenly it just worked! So, to make that clear, this wasn’t working…
45 1 * * * /usr/bin/php /home/#####/public_html/system/application/views/ImportRSS.php
But this did work…
45 1 * * * /usr/bin/php /home/#####/public_html/system/application/views/ImportRSS.php >> /home/######/cron.log
For some reason adding the log file entry after the script path got it going. Maybe crontab was expecting it to log something and without the reference to the log file it wasn’t running. Who knows. I’m just glad its working and hopefully this will save someone the hours and hours I’ve wasted over such a simple solution.
- Music Streaming UI/UX design version 2 - December 4, 2023
- 10 Things to Consider When Designing a High-Converting web app UI design - September 20, 2023
- How to Use Web Design to Improve User Experience - September 6, 2023