Yakovos Frountas
Forum Replies Created
-
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Bug in version 2.5.2I can confirm this bug in the latest version.
Forum: Plugins
In reply to: [WebP Express] PHP 8.2 warnings Constant HDOM_ & filesize(): stat failedThis is just a hotfix, of course developer should fix this officially.
Forum: Plugins
In reply to: [WebP Express] PHP 8.2 warnings Constant HDOM_ & filesize(): stat failedIn order to fix the error of the filesize(): stat failed for you can alter the file BiggerThanSource.php with the following code until an official fix is released
<?php /* This class is made to not be dependent on WordPress functions and must be kept like that. It is used by webp-on-demand.php. It is also used for bulk conversion. */ namespace WebPExpress; class BiggerThanSource { /** * Check if webp is bigger than original. * * @return boolean|null True if it is bigger than original, false if not. NULL if it cannot be determined */ public static function bigger($source, $destination) { if (!file_exists($source) || !file_exists($destination)) { return null; } $filesizeDestination = @filesize($destination); $filesizeSource = @filesize($source); // sizes are FALSE on failure (ie if file does not exists) if (($filesizeDestination === false) || ($filesizeSource === false)) { return null; } return ($filesizeDestination > $filesizeSource); } }also if you are getting a warning on the file PictureTags.php change the line 142 from
@$dom->loadHTML($html);to
@$dom->loadHTML($html, LIBXML_NOWARNING | LIBXML_NOERROR);hope that helps a bit.
Forum: Fixing WordPress
In reply to: Not able to add new user on wordpressIf you haven’t admin access in WP dashboard you can create a new admin user directly from phpMyAdmin. If you are not familiar with this process you should contact your hosting provider.
- This reply was modified 7 years, 4 months ago by Yakovos Frountas.
Forum: Reviews
In reply to: [Jackshare Social Sharing] perfect!Really thanks about your review @dimos78, i will try to add some features in the near future 🙂
Forum: Reviews
In reply to: [Jackshare Social Sharing] Cool & Clean!Thanks @madking-web-design i am looking forward to add some new features in the near future.
Forum: Reviews
In reply to: [Hello Stranger Things] It’s going to be okay. Remember, Bob Newby: superheroYeah! I just update the plugin with these phrases! I really thank you about your voting!