arend
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] 2.5 GB error log!!??Thanks Pim,
I was about to write that the devs would understand the issue if they see this thread. It is indeed not only this plugin but any other error generated in PHP. But when migrating a WordPress site, changes are you have some errors somewhere that go unnoticed until your server runs out of disk space.
Great to hear this is resolved in upcoming releases.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] 2.5 GB error log!!??I agree, this is an issue with the plugin. You cannot tap into the global php error log without doing regular log rotation and cleanup. Users are simply not aware of this logging going on and therefor get problems like this. Make the logging optional and warn / notify of the log location.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] 2.5 GB error log!!??update:
I narrowed it down to a massive logging of an open_basedir error:
mod_fcgid: stderr: PHP Warning: is_dir(): open_basedir restriction in effect. File(/) is not within the allowed path(s):
This came from an incorrectly set upload_path in the wp_options table.
The upload_path value was still pointing to the incorrect pre-migration location.The All-in-One WP Migration plugin should probably rotate the log, or otherwise prevent it from growing unchecked.
Regards,
Arend
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] 2.5 GB error log!!??Just for the record, today my server went offline due tot 66GB error log file in:
web/wordpress/wp-content/plugins/all-in-one-wp-migration/storage# ls -lha
total 66G
drwxr-xr-x 2 web10 client1 4.0K Nov 27 06:10 .
drwxr-xr-x 4 web10 client1 4.0K Nov 27 04:28 ..
-rw-r–r– 1 web10 client1 66G Dec 9 07:36 error.log
-rw-r–r– 1 web10 client1 26 Nov 27 04:28 index.phpAs I was eager to get things up and running again, I have not looked into the file to see what caused it but deleted the file straight away. As I had already migrated long ago I removed the (excellent) plugin too.
It might be worth looking into this, somehow the plugin keeps logging to this file and it will grow and grow..
Regards,
Arend
Forum: Reviews
In reply to: [Email Client WM Plugin] Just a trial it seemsIndeed, if I knew it was a paid plugin, I wouldn’t have bothered installing.
Same question here, network activated but the Sucuri settings show up in every subsite. I prefer global settings instead of going through every single sub site..
There is this page about multisites, but it doesn’t help me much: https://kb.sucuri.net/plugins/WordPress+Plugin/multisite-subdomainsForum: Fixing WordPress
In reply to: Set Featured Image via URLWould love this option too, any progress ?
Forum: Plugins
In reply to: [wp-forecast] Impossible to setup locationUpdate:
When I add the line:
return;
In the file func_bug.php at line 294 everything works. I guess weatherbug is searched despite not entering the partner id, hence the empty xml response ?Forum: Plugins
In reply to: [wp-forecast] Impossible to setup locationHello Hans,
Thanks for writing this great plugin. It worked great but now I get this error while trying to add a new location: “XML Fehler: Undeclared entity error in Zeile 1”.
There is no restriction on outgoing connections on my server. The connection check to weather provider (accuweather) returns success.
Regards,
ArendForum: Themes and Templates
In reply to: [Absolum] [Theme: Absolum] How do I use the Nivo Slider?You will have to insert the image into the post in order for it to show up in the nivo header slider. I don’t like it like this. It would be better in my opinion to have the slider use the featured image instead.
Forum: Plugins
In reply to: [Plugin: All in One SEO Pack] Home Title Not WorkingSame problem here, apparently this happens when I position the call to wp_head() to the very top in header.php for SEO reasons (just after <head>)
Moving wp_head() just before </head> solves the problem.
viter-z-bayraku: thanks for the fix. I might try this out if I better understand the consequences.