Christopher Finke
Forum Replies Created
-
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Missing constantAll instances of
AKISMET__PLUGIN_URLwere removed in 3.1.8; your plugin might not have updated completely.I’d try removing it and reinstalling to ensure that all files are from version 3.1.8. Let me know if that works.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] PHP 5.5 to Akismet Versione 3.1.83.1.8 has the same requirements as 3.1.7 and should run on PHP 5.2.4 or later.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Recent Rash of Spam being Approved@mromine: Version 3.1.8 of the plugin was released today, and it should help stop the problem. If it doesn’t, email us at support@akismet.com with your API key and mention me so that I can handle the ticket.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Recent Rash of Spam being ApprovedCan you contact us at support@akismet.com and include your API key? We should be able to address it better there.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] /home/xxxxxxx/public_html/error_logIt’s just debug information from the Akismet plugin. You can either disable
WP_DEBUG_LOGor add a filter onakismet_debug_logthat returns false to disable it.You should also remove that log data from your comment, since it contains your API key.
Akismet doesn’t include any functionality that would send a comment to the Trash; the most likely possibility is that another plugin is doing it. What other plugins are you running?
Great! I’m not sure why it happened, but this specific problem *shouldn’t* happen again as long as you don’t remove that line from your
wp-config.phpfile. I’m going to bookmark this thread in case this problem pops up for somebody else, and we’ll see if there are any similarities that can help us pinpoint the cause.Sorry for making assumptions, you were doing so well!
There should be a line that says
/* That's all, stop editing! Happy blogging. */You can add the
define( 'CONCATENATE_SCRIPTS', false );line right above it.
It looks like there is some code missing from that file — right after line 233, there are about 30 lines of code missing.
Try adding
define( 'CONCATENATE_SCRIPTS', false );to your
wp-config.phpfile. That may fix this specific symptom of the issue (your WYSIWYG editor not working) and give us some insight into the root cause.In that 2nd picture, can you scroll down to line 234 of load-scripts.php? The cause of all the other errors is most likely the missing “)” on line 234, so if I could see line 234, that would be very helpful.
Hmm… Are you using any browser extensions? Could you try it in a different browser and see if it’s broken there too?
Well, that definitely explains why the visual editor isn’t working. 🙂
It’s still not clear exactly which plugin’s fault it is, but the problem is basically that some plugin is trying to load code that has a typo in it, which stops all of the other code from loading.
What I would do is disable all plugins, confirm that the visual editor works with the plugins disabled, and then re-enable each plugin and test the editor after each one. Eventually, you’ll find the one that is causing the problem.
Post back here when you find it, and I can contact the author about fixing it.
I couldn’t find LeadPages connector, Attention Grabber, or MailChimp in the WordPress plugin directory, and none of the other plugins caused a problem.
If you’re using Firefox or Chrome, can you follow these steps?
1. Open the Edit page for any of your posts.
2. Right-click on the page and choose “Inspect Element”.
3. A panel should open, and there should be a tab that says “Console.” Click on “Console.”
4. Reload the page.In the Console, it should show some error messages, which should explain why the visual editor isn’t working. Can you post those messages?
What other plugins are you running? I’ve seen this before, and it’s always been another plugin doing something unexpected that clashes with what Akismet is doing.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet in error_logYou can either turn off
WP_DEBUG_LOGinwp-config.php, or you can add a filter that returns false for theakismet_debug_log filter. e.g.,add_filter( 'akismet_debug_log', '__return_false' );