Jump to content

This stream auto-updates

  1. Past hour
  2. Requests merged. Do you want us to reset your account then add the domain after the reset? Or do you no longer want the reset performed and just want the domain removed/added?
  3. Added. It can take up to 2 hours to function.
  4. Glad to see it's now working. Please let us know if you need anything else.
  5. Today
  6. ok thanks, i will just create a blank index page inside the directory.
  7. The details regarding your new Windows Server 2019 VPS have been sent to your email address.
  8. Yesterday
  9. 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.
  10. They answered on Discord
  11. 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`.
  12. Looks like this board is a bit quiet recently. Just sharing in case someone finds it useful later.🗣️
  13. Hello, The forum seems a bit deserted :))
  14. Added. it can take up to 2 hours to start working.
  15. No problem.
  16. 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.
  17. Last week
  18. Thank you ! it's working properly now
  19. Please check your PMs for information regarding your Lily account.
  20. Your rebuild has been started and you'll get an email in a bit when it finishes.
  21. Thanks! I'm in now.
  22. Thank you very much! Appreciate all the availability you guys provide for this specially as a newbie web developer!
  23. Domain added. It can take up to 2 hours to function.
  24. You can't change or delete the root user, but you can add as many users as you want with the useradd command. https://www.strongdm.com/blog/create-users-in-linux-with-useradd-command
  25. Yes another invite was sent to your email.
  26. DKIM, SPF, and DMARC have been set up for the domains aslfarms.com and asl.ng. We recommend sending a real email (not just the word "test" or a blank email) to https://www.mail-tester.com/ to make sure that everything is set up correctly. If you get less than a 10/10 score please post a link to the full report so we can help you fix any other issues that there may be.
  1. Load more activity
×
×
  • Create New...