Search results

  1. H

    PHP code to show if a user is logged in or not.

    Are you wanting your users to see if they are logged in, or are you wanting to see which users are logged in? If the former, you could set a cookie and check on each page if the cookie is set then run your code. Something like this: <?php if(isset($_COOKIE['login_details'])) { //code here }...
  2. H

    Some site issues.

    Have you checked your resource usage in your cPanel?
  3. H

    Freenom with X10Hosting

    How long has it been since you changed nameservers?
  4. H

    Entry Processes and Consequences

    I think I have made some kind of solution to my problem. I set all of my javascript requests to any scripts inside a setTimeout. This seems about the easiest solution but is suboptimal IMO.
  5. H

    Entry Processes and Consequences

    Hello, I've noticed that my site receives many Resource Usage Limit errors, specifically to the entry processes limitation. This occurs for 1 visitor to the site. From what I have found on the forums, the entry processes are any initial call to a php script, mysql query, a cron job, or shell...
Top