I have 2 pages which need to be executed every night. As I only know PHP, I wrote them as PHP-pages. My webmaster would then install a script in the cronjob which simply calls these pages.
Problem is (maybe a simple one, but I don't know anything about Unix) that those pages may not be called by my users, only by myself if I want to do it manualy, and every night by the server (cronjob).
Off course, I can first use a login-page which verifies my identity, but can the cronjob do the same? Or how do I solve the problem?
I was thinking of building a page which is only readable by the machine (limit access, like not readable by the world?), which contains the login + password and which then calls for the other page?