1
Hello, I have a php script that needs to run automatically every 15 minutes in windows (my system is hosted locally).
Well, I saw that it has to be by the scheduler of windows tasks so I configured as follows: I added a basic task and selected to start Chrome and put the script path in the arguments (localhost/script.php).
It’s working fine, the problem is that every time the task is executed, it opens a new Chrome, then gets dozens of Chromes open.
I wonder if there is any other way to do this scheduling or some command or option to execute the task in the window already open or simply reload the page, because as the script will be running 24 hours a day, one hour someone will have to close these windows.
I don’t know how this task scheduler works, but by the logic, what I thought is: Open for the first time and schedule a task to press F5.
– Francisco