Seriously, is there a reason things can't be fixed? I can muddle through and find what I need but the participation level $ucks!
This is the first time I’ve been able to get on in several days. If it makes anyone feel better a forum I frequent has had problems loading and showing pictures for well over a month now. Apparently they had some kind of deal with Amazon for picture storage . . . Something or somebody seized up and it ain’t workin’.
The site has been spotty at best for another week long now..... Maybe it's still suffering from some sort of post-partum stress?
I don't have endless time to navigate through the quagmire relentlessly looking for the glitch. I'm doing the best I can but it is what it is. And also it's a forum......alot of younger folks have walked away altogether from the forum format and have gone full-blown Facebook (some have already dumped FB and have gone Instagram). To keep up and maintain it 24/7 is nearly impossible with my work and home chores/responsibilities. I'm trying the best I can buddy....
Keep up the good work Scotty Overkill . I for one appreciate your hard work and dedication for this forum. Stay safe out there.
We all enjoy the site and have appreciated your efforts. I would do the same thing if I were in your shoes. First things first...job....family.....faith.....health.....(listed in no particular order) The forum should come last in your priorities. I've always had a difficult time collecting the membership dues anyway.
Don’t know if this will help. This is a PHP/MySQL server error: Fatal error: Allowed memory size exhausted in Zend/Db/Statement/Mysqli.php on line 304 The PHP process reached its memory limit while executing a MySQL query. The “tried to allocate 79 bytes” part means PHP had essentially no memory left—not that the query only needed 79 bytes. Common fixes: Check the SQL query for an unbounded result set, missing WHERE clause,inefficient joins, or accidental Cartesian product. Paginate results with LIMIT and OFFSET rather than loading every row. Fetch rows incrementally instead of storing the entire result in an array. Add indexes to columns used in WHERE, JOIN, ORDER BY, and GROUP BY. Increase PHP’s memory limit if the query is legitimately large: or temporarily: Inspect the query and logs around Mysqli.php line 304. That file is usually wherethe database call fails; the underlying issue is often the query or the amount of datareturned. If you’re only visiting the site, it’s a server-side problem—you can’t fix it from your browser.