HJÆLP
HejEr der nogen som kan hjælpe mig med at få det her l... til at virke. Jeg har undersøgt om jeg kan få lov til at køre cron, det kan jeg ikke siger webmasteren. Her er hvad der står i scriptet for at få det til at virke.
Håber at nogen har en god ide
Create a cron job or devise another method to ensure that the page
/cron.php gets executed periodically. This page will close auctions,
notify bidders, etc. In Linux, you can create a file
/etc/cron.daily/phpauction.cron with these contents:
#!/bin/sh
lynx -dump /dev/null http://www.mydomain.com/phpauction/cron.php
*** Note: if you have PHP installde as a module the above one is the only way
to run cron. If have (or also have) PHP installed as a CGI you can substitute
the lynx call aove with the following:
PHP /absolute/path/to/cron.php
Of course the path to cron.php will depend on where you did install phpauction.
Be sure to give cron.php permission to be executable.
Mailmann