millllan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Huge Action Scheduler tablesForum: Plugins
In reply to: [WebP Express] 404 error from settings pageSame here, 404 on /wp-admin/options-general.php?page=webp_express_settings_page
php v5.6 FPM/FastCGI- This reply was modified 5 years, 7 months ago by millllan.
Forum: Plugins
In reply to: [PB SEO Friendly Images] Slow db queriesIts on a website iwth ~5000 posts and 30 000 uploads …
Fixed it by adding an index on guid collumn trough phpmyadmin:
ALTER TABLE
wp_posts
ADD INDEXguidindex
(guid
)Following this guide https://stackoverflow.com/questions/3002605/how-do-i-add-indices-to-mysql-tables
Forum: Plugins
In reply to: [Live Edit] Uncaught TypeError: $(…).resizable is not a functionThanks!
Forum: Plugins
In reply to: [Autoptimize] Stop autoptimizer for logged in usersWorks, thanks!
Forum: Plugins
In reply to: [Autoptimize] Google fonts groupingWorks!
Thank you very muchI can confirm its not working on PHP7 too…
Forum: Plugins
In reply to: [Autoptimize] Solving cache size the easiest way“look only in head” option fixed it for me … my bad
Forum: Plugins
In reply to: [Autoptimize] Solving cache size the easiest wayWhat about css? I have slow page load times for logged in users with CSS optimization ON … everything is fine if its disabled. “Anonymous” visitors get evertyhing form page cache, so it loads fine for them…
Forum: Plugins
In reply to: [WP Optimize Speed By xTraffic] Fatal errorI get this too on one website… and it was working fine before … latest versions
Forum: Plugins
In reply to: [Autoptimize] JavaScript comment removal doesn't worki am not into coding, i just removed that line… here is the result file: https://powerhouseworld.com/wp-content/cache/autoptimize/js/autoptimize_d39c2fd083991371801fc378ee27c924.js
No jquery comment at the begging, and all the other comments that were there before …
and my pagespeed result
https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fpowerhouseworld.com%2F&tab=desktopForum: Plugins
In reply to: [Autoptimize] JavaScript comment removal doesn't workIts working, thanks! I commented out that line 191 and now it removes all the comments…
Google pagespeed score stays the same without that extra 1KB ( gziped I guess its even less ) so i guess its no use to do this… but my client will be happy.
Forum: Plugins
In reply to: [Autoptimize] JavaScript comment removal doesn't workAny way to go around this? i would love if google pagespeed test would not complain about a few bytes that could be minified…
Forum: Plugins
In reply to: [WP Optimize By xTraffic] dont watarmark images with classor ignore images with some text in filename
My final solution … not the best way to do this, not even close to EWWW, but it worked for me, Google page speed doesn’t complain abut the pictures anymore … I OPTIPNG all the files while making the backups ( -preserve parameter ) than restored the ownership to local user
Same thing with JPEGOPTIM for jpg files, but i did it with lossy compression of 90 ( parameter -p90 ) cause some files where huge
And at the very last line it restores ownership on public_html folder … without this i would get error 403 on the website
all this just for one account (cormsorg) …
And i didnt find safe solution for .gif files yet…
cd /home/cormsorg/public_html
find -name ‘*.png’ -print0 | xargs -0 optipng -o7 -keep -preserve -log optipng.log
find -name ‘*.png’ -print0 | xargs -0 chown cormsorg:cormsorg -vfind -name ‘*.jpg’ -print0 | xargs -0 jpegoptim -p -P -m90 –all-progressive -t -v -s
find -name ‘*.jpg’ -print0 | xargs -0 chown cormsorg:cormsorg -vfind -name ‘*.jpeg’ -print0 | xargs -0 jpegoptim -p -P -m90 –all-progressive -t -v -s
find -name ‘*.jpeg’ -print0 | xargs -0 chown cormsorg:cormsorg -vchown cormsorg:nobody /home/cormsorg/public_html -v