TKServer
Forum Replies Created
-
Ticket created. Thank you.
Done
Thank you!
This issue has been resolved by increasing the WordPress memory limit from 256MB to 512MB.
Perhaps examine Cleantalk’s memory consumption. With Cleantalk disabled the custom admin pages function properly under 256MB.
Will this fix be included in an auto-update at some point?
Thanks. Most of those settings were already set, except for don’t check trusted and anti-crawler. This user was sending out buddypress messages, but CC’ing multiple users for one message, presumably to get around flooding limits. But he had still sent out over 100 of those, to hundreds of users.
It would be great if you added a flood limit with a configurable daily, or hourly etc limit of messages that can be sent by a user.
I’ve got it set as per your instructions so we will see what happens moving forward. Thanks very much for the response.Forum: Fixing WordPress
In reply to: Various widget & block related PHP errorsSame here. I have classic widgets plugin installed but have:
PHP Fatal error: Uncaught Error: Class 'WP_Widget' not found
PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php'
PHP Fatal error: Uncaught Error: Call to undefined function get_the_block_template_html()- This reply was modified 4 years, 6 months ago by TKServer.
Forum: Reviews
In reply to: [Gutenberg] Totally destroyed WordPress!Millions use it because they’re forced to or don’t know they have alternatives. Come on.
Forum: Reviews
In reply to: [Gutenberg] Why they are not discontinuing this?It’s not “one” thing that is the problem. It is EVERYTHING. And the answer is “Gutenberg is used by millions…” Uh, probably because they’re forced to use it. That’s like saying internet explorer is the most popular browser, but that’s just because it is the default browser in windows.
Forum: Reviews
In reply to: [Gutenberg] DisasterAbsolutely agree. Don’t like the direction wp is going. Looking for alternatives now but I’m so deeply invested in the platform with my own custom plugins and themes that it’s going to be painful to move. But probably less painful than staying.
Thanks @rongo I’ll do that!
Forum: Plugins
In reply to: [WP-Polls] WordPress database errors –Ok I overwrote it. Looks to be working. Error log is clean. Will report back if anything appears to be broken.
Forum: Plugins
In reply to: [WP-Polls] WordPress database errors –Thanks Lester! Glad to help. By the way, I created my own plugin to add a REST Endpoint for wp-polls so I could integrate it into one of my sites’ mobile apps. Check out Ute Hub for android or ios and look at the polls option.
Forum: Plugins
In reply to: [Flyzoo Chat] Chat Down?Still down about 8 hours later.
Forum: Developing with WordPress
In reply to: Conflict with React Router in subfolderWOA! I think I’ve got it. I’m able to get react router routes working with the following .htaccess code in the location /gallery/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
# Don’t rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]
</IfModule>Turned WP’s permalinks back on to day and name and all still seems to work.