Jump to content

This stream auto-updates

  1. Past hour
  2. HI, i want to know why my account is suspended.
  3. Today
  4. Hi team, I am getting below error every while accessing website. Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. 502 Bad Gateway nginx and Website loading time is very poor.
  5. Please reset my account, make initial state and add new domain name celestat.site
  6. Domain added. it can take up to 2 hours to start working.
  7. You're suspended because our system thinks you have more than one account. Users are only allowed to have one account. Which one do you want to keep?
  8. Yesterday
  9. Added. It can take up to 2 hours to function.
  10. Glad to see it's now working. Please let us know if you need anything else.
  11. ok thanks, i will just create a blank index page inside the directory.
  12. The details regarding your new Windows Server 2019 VPS have been sent to your email address.
  13. Last week
  14. Your rebuild has been started and you'll get an email in a bit when it finishes. Your next free rebuild will be available on 2025-08-18.
  15. They answered on Discord
  16. Read the post that you quoted
  17. I believe the issue is caused by `$this->results[$queryKey]` being overwritten when you run a new query inside `getCategory()`. So when you call `$this->fpdb->query(...)` in `getCategory()`, it updates the `$this->results` map and the current query key, which breaks the loop in `getProperties()` because `fetch_object()` now references the subquery instead of the original result set. To fix this, you can store the result of the main query in a temporary variable before entering the loop, like this: function getProperties() { $s = "SELECT * FROM properties"; $result_set = $this->fpdb->query($s, return_result: true); // store raw result $result = []; while ($r = mysqli_fetch_object($result_set, Property::class)) { $r->category = $this->getCategory($r->cid); $result[] = $r; } return $result; } This way, even if `getCategory()` runs a subquery internally, it won't interfere with the loop iterating over your original `$result_set`.
  18. Looks like this board is a bit quiet recently. Just sharing in case someone finds it useful later.🗣️
  19. Hello, The forum seems a bit deserted :))
  20. Added. it can take up to 2 hours to start working.
  21. No problem.
  22. This was posted at 10:12am my time. Based on the timestamps, I'm guessing this was caused by Johnny's /tmp being full this morning which would cause that error. I cleaned it up at 10:47am and everything should be working again now. Let us know if it happens again.
  23. Thank you ! it's working properly now
  24. Please check your PMs for information regarding your Lily account.
  25. Your rebuild has been started and you'll get an email in a bit when it finishes.
  26. Thanks! I'm in now.
  1. Load more activity
×
×
  • Create New...