Jump to content

Tjoene

Moderators
  • Posts

    1,430
  • Joined

  • Last visited

  • Days Won

    29

Posts posted by Tjoene

  1. You were suspeneded again for 3 cronjobs.

    While you only have 1 cronjob set up, you can't execute that more then twice every 24h.

     

    Cronjobs are quiet resource intensive on the server, that is why the amount of executions is restrected.

     

    If you need to test your script, we would suggest you use a free third party cronjob provider like https://www.setcronjob.com/.

    That way, you won't be bound by the server limit.

     

    Your account has been unsuspended again.

  2. Your account was suspended for running too many cron jobs. To help keep load low, we limit accounts to two (2) cron executions in a 24 hour period. This means that, if you only have a single job, it can run no more frequently than once every 12 hours, with two jobs, they can each only run once a day, and so on.

     

    Your account has been unsuspended.

  3. Somewhere on your page, you have send something back to the client (meaning you used an "echo" for example).

    This causes PHP to send out the headers to the client.

     

    Then you are most likely tried to start a session, which results in an error that you see.

    Session_starts needs to set a cookie containing the session number in the headers, but it can't since the headers were already sent.

     

    This could be fixed by putting session_start at the very beginning of your script.

×
×
  • Create New...