alfredopacino
Forum Replies Created
-
I’m on a shared hosting (very limited) with LAMP.
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size […] on wp-includes/wp-db.phpany tip about this problem?
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size […] on wp-includes/wp-db.phpChecking my db I’m pretty sure it comes from post table
https://www.awesomescreenshot.com/image/1746541/cacc3e5440dbccce96f060da1ba4c5a7wp_options have 454 rows/2.6MiB
Forum: Plugins
In reply to: [Plugin: NewStatPress] js errors in backendthanks for help. I contacted the developer and he knew about this issue and already provided the fix.
well very thanks way more then!
(anyway i’m not sure I have to mark this as solved, my issue with zip compression isn’t actually solved..)
thanks to you! so you aren’t a ithemes developer?
more that happy to help.
But that’s the result:Zip file created successfully. array(1) { [0]=> array(10) { ["filename"]=> string(71) "/membri/mysite/wp-content/uploads/ithemes-security/backups/asc.sql" ["stored_filename"]=> string(71) "/membri/mysite/wp-content/uploads/ithemes-security/backups/asc.sql" ["size"]=> int(246060) ["compressed_size"]=> int(36638) ["mtime"]=> int(1422910075) ["comment"]=> string(0) "" ["folder"]=> bool(false) ["index"]=> int(-1) ["status"]=> string(2) "ok" ["crc"]=> int(2121487303) } }
I tried a little sql dump (200kb) and my site sql dump (~35MB) both..it works..
a sql it’s enough I don’t need necessarily a zip ??
thanksthat’s what I have now, I guess it finally works
https://www.diigo.com/item/image/51ynl/0i9eWith other files I mean the images and the scripts, why the backup saves just the db? what about the other file? ??
uhm, as I said to you I disabled compression, but not sure why, just right now I found the option enabled (but maybe I’ve just clicked on the “save changes button” related to another tab last time, not sure it’s the same ?? ). Now I disabled correctly the option.
I will let you know what’s happen.thanks
and that’s the current situation…
https://www.diigo.com/item/image/51ynl/a264
what’s wrong here :/after 1 day this is the situation
https://www.diigo.com/item/image/51ynl/mead
(when I opened this thread in that directory I had ~30 .zip and .sql files)
not sure what’s changed, but it looks it works SO LONG.
I’ll update you tomorrow, if I’ll find just 1 .SQL file it works (if itheme security deletes the old one).Forum: Plugins
In reply to: [WP-reCAPTCHA] recaptcha ignored without error messageguys i’m new in wordpress..i just don’t get this kind of problem in wordpress: this is the most downloaded recaptcha plugin and no one noticed this huge issue before us? how is that even possible?
your script prints “zlib extension loaded !”
PHP Memory Limit: 128M
PHP Max Script Execution Time: 30 Seconds.
Now I turned off “Compress Backup Files”..I will see what’s happen..
after more than 24h I have a .zip file with size 0 “backup-my-site-name-1422212278-q1xiMCp.zip”.
this is my working test script, please note $homedir
$_SERVER[‘DOCUMENT_ROOT’] doesn’t works fine on my free hosting.
in this way fopen and unlink works.<?php $homedir = substr( $_SERVER['SCRIPT_FILENAME'],0,-strlen($_SERVER['SCRIPT_NAME']) ).'/'; $filename =$homedir.'wp-content/uploads/ithemes-security/backups/'.'test.txt'; $fh = fopen($filename, "w"); if($fh==false) die("unable to create file"); $state=fputs ($fh, "hello i'm a little string and i'm pretty sure i will be in test.txt"); if($state==false) echo "fputs problem"; else echo "file created and filled"; //phpinfo(); if(isset($_GET['remove'])){ if(unlink($filename)) echo "<br>removed"; else echo "<br>remove error"; } ?>