javierdemuga
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajax Cart AutoUpdate for WooCommerce] Is plugin maintained?This plugin works flawlessly but needs some maintenance, HPOS is critical right now. Is there a new date for the update?
Many thanks for the great work!
Forum: Plugins
In reply to: [WPZOOM Social Feed Widget & Block] Not lazyloading image video previewsThank you for the improvement, that helps a lot with video loading but still the video poster should not be set (as it cannot be lazyloaded) if lazyload is activated. If you add poster then the poster images are loaded without lazyload and afterwards the other images are loaded.
On other topics the last version did not work with a shortcode inside a widget, when I used directly the shortcode it worked.
Forum: Plugins
In reply to: [WPZOOM Social Feed Widget & Block] Not lazyloading image video previewsAutoplay tag is downloading all the videos, that is terrible for perfomance.
Better solution would be to remove autoplay and autoplay through javascript when magnificPopup is open, it is pointless to autoplay the video (and consume a lot of data) when it has not been opened.
Concept: use the callback open in magnificPopup and if there is a video play it.
if(this.content.find( '> .swiper-container > .swiper-wrapper > .swiper-slide[data-uid="' + currentElement.data( 'mfp-src' ) + '"] video')){ this.content.find( '> .swiper-container > .swiper-wrapper > .swiper-slide[data-uid="' + currentElement.data( 'mfp-src' ) + '"] video')[0].play(); }
Forum: Plugins
In reply to: [WPZOOM Social Feed Widget & Block] Not lazyloading image video previewsJust do not set the poster tag in video if you are adding the preloaded image on top, that would make the case.
On other improvement please would be really good to add preload=”none” to video as the videos as preload metadata has not the same behaviour depending on browser and downloads many data.
Forum: Reviews
In reply to: [WooCommerce PayPal Payments] Beta plugin, do not installHi Niklas thank you for answering,
The issue ITEM_TOTAL_MISMATCH has been reported many days ago, it is a HUGE bug which is blocking thousands of payments. I know there is a patch and i installed it because i know where to search but, how many users just do not know about it and are losing clients? Why the plugin has not been updated directly with this solution?? It is probably blocking around 10-20% of payments because of rounding…
I am computer scientist and i know things take a while on testing but this is a super critical bug to solve and 3 weeks is way too long time to fix it. If you introduce a new bug in a future version it is going to take 3 weeks to get it solved?
Unprocessable_entity bug appears at some points where it seems the Paypal API has not been hit yet so probably a plugin bug too.
Give the plugin stability and the ratings will grow but for now it is like a Beta testing plugin.
I’ll send you the details in private.
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorThank you for your efforts @roselldk that is amazing support from your side.
The hosting finally changed the configuration of PHP 8 and now everything is working wonderfully, the workaround is nice to solve other wrong hosting configurations.
Best
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal Error@roselldk I think i found what is the problem and opened a case for them to solve it.
From phpinfo() i could check that in PHP 7.4 they use parameter
disable_functions system, exec, passthru, popen, proc_open, shell_exec, dl, set_time_limit, syslogBut in PHP 8.0 they disabled functions (i don’t know how) but disable_functions parameter is empty.
Hope they fix the config soon.
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorHi @roselldk in my case the provider is CDMON https://www.cdmon.com/en/ it is quite big in Spain, I will ask their support how did they disabled the exec function. I was told at some point that they recompiled PHP without exec functions, maybe that is the problem.
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorSame error for me, the error has changed but seems exec is still trying to execute at some point.
PHP Fatal error: This function has been disabled for security reasons in /wp-content/plugins/webp-express/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallback.php on line 60
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorHi @roselldk digging in the code i can see that function detectVersion($binary) calls directly exec without controlling if function_exists exec.
From the code I see i could disable try-cwebp option and maybe that could help avoid that Fatal error in PHP8, from what I see with PHP8 it will always return Fatal Error with default configuration if exec function is disabled.
Could you give some guide on how to disable try-cwebp option? The configuration with GD works wonderfully in PHP 7.4 but on PHP 8 disabled functions are giving Fatal Error and every attempt to modify images to webp are giving fatal error, not only settings page (although i have GD option selected, i can see that on PHP7.4)
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorActually i have just talked with hosting support and it seems GD extension is installed and active.
When i use PHP 7.4 everything works smooth, also with exec and proc_open disabled using GD extension but when i switch to PHP 8.0 the images are not generated and the fatal error persists at the settings page so i cannot check if GD is working (that should!)
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal Errorproc_open also disabled
Result from the code:
proc_open() function does not existForum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorAh no sorry i was just adding again the php error happening at the settings page, the test was only that part:
disabled functions: system, exec, passthru, popen, proc_open, shell_exec, dl, set_time_limit, syslog
exec() function does not exist
Sorry for the misunderstanding
Forum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorHi @roselldk
Result is:
disabled functions: system, exec, passthru, popen, proc_open, shell_exec, dl, set_time_limit, syslog
exec() function does not exist
PHP Fatal error: This function has been disabled for security reasons in /usr/home/ceroresiduo.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Converters/Cwebp.php on line 577
My hosting told me that they only allow to execute through composer
proc_open (exec) and that they compiled php that way but I am not really sure what do they meanForum: Plugins
In reply to: [WebP Express] PHP 8 and exec disabled leads to Fatal ErrorJust to let you know, it is still happening on the last version 0.24.1
/options-general.php?page=webp_express_settings_page
Critical Error