Search results

  1. T

    Help setting a cronjob up.

    /usr/local/bin/php -q /home/tomfordx/public_html/alpha/turn.php >>/home/tomfordx/public_html/alpha/cron_log.txt 2>&1 I used the above command, yet I fail to get an output or error message in the cron_log.txt. It is as if the cron is not even running to start with...
  2. T

    Help setting a cronjob up.

    I am trying to run a cron every 10 minutes. Now I have tried several commands to get this to work but each time it doesn't! I can run the code manually perfectly fine. So it has to be down to the commands I am using. So could someone please help me with the commands used. The path I am using is...
  3. T

    php/mysql update

    I hope someone can help me on this, basically I am trying to take Value A & B from the database add the two togeather and then put value A back. Thats fine I can do that not a problem but what I am struggling with is that I want to do this for each member. Value A & B are never the same for each...
  4. T

    Access denied to mysql database

    Basically I am trying to run some code to insert some data into my database. I have a seperate file to connect to the data base: <?php $link = mysql_connect('localhost', '*****', '*****'); if (!$link) { die('Could not connect: ' . mysql_error()); } $db_selected = mysql_select_db('******'...
Top