8k8app19 login.REGISTER NOW GET FREE 888 PESOS REWARDS! https://www.ads-software.com/support/plugin/wp-performance-pack/feed Tue, 26 Nov 2024 06:07:07 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://www.ads-software.com/support/topic/fatal-error-4483/ <![CDATA[Fatal error]]> https://www.ads-software.com/support/topic/fatal-error-4483/ Thu, 06 Jul 2023 16:15:26 +0000 alx359 Replies: 0

(I’m aware have spammed these forums with my posts lately. I apologize for that. Just don’t know how else to document things, so the Author might look at these issues at some point.)

When trying various Face Recognition plugins, like My Eyes are Up Here, I get a fatal error: wp_basename(Object(WP_Error)) during attempt to do image face detection on a given singular image. The error happens because wp_basename is unable to handle a WP_Error object that arises from some kind of incompatibility, so we’d need to tweak a bit the logic of the eval code in class.wppp_dynamic_images.php to avoid such showstoppers. Namely:

	eval ("
		class WPPP_$editor extends $editor {

			public function make_subsize( \$size_data ) {
				if ( ! isset( \$size_data['width'] ) && ! isset( \$size_data['height'] ) ) {
					return new WP_Error( 'image_subsize_create_error', __( 'Cannot resize the image. Both width and height are not set.' ) );
				}

				\$orig_size = \$this->size;
		
				if ( ! isset( \$size_data['width'] ) ) {
					\$size_data['width'] = null;
				}
				if ( ! isset( \$size_data['height'] ) ) {
					\$size_data['height'] = null;
				}
				if ( ! isset( \$size_data['crop'] ) ) {
					\$size_data['crop'] = false;
				}

				\$dims = image_resize_dimensions( \$this->size['width'], \$this->size['height'], \$size_data['width'], \$size_data['height'], \$size_data['crop'] );
				if ( \$dims ) {
					list( \$dst_x, \$dst_y, \$src_x, \$src_y, \$dst_w, \$dst_h, \$src_w, \$src_h ) = \$dims;
					\$this->update_size( \$dst_w, \$dst_h );

					list( \$filename, \$extension, \$mime_type ) = \$this->get_output_format( null, null );

#alx359-->
/*
Handle gracefully fatal error 'wp_basename(Object(WP_Error))' during image face detection,
happening during use of face-Recognition plugins like 'My Eyes Are Up Here' and others.
Issue tested with both: Compatible & Fast rewrite

					if ( ! \$filename )
						\$filename = \$this->generate_filename( null, null, \$extension );

					\$metadata = array(
						'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', \$filename ) ),
*/
					\$filename = apply_filters( 'image_make_intermediate_size', \$filename );

					if ( !is_string(\$filename) ) {
						\$filename = \$this->generate_filename( null, null, \$extension );
					}
					\$metadata = array(
						'file'      => wp_basename( \$filename ),
#<--alx359
						'width'     => \$this->size['width'],
						'height'    => \$this->size['height'],
						'mime-type' => \$mime_type,
					);
					\$this->size = \$orig_size;
					return \$metadata;
				} else {
					return new WP_Error( 'image_subsize_create_error', __( 'Cannot resize the image. Both width and height are not set.' ) );
				}
			}
		}
	");
} else {
	eval (" 
		class WPPP_$editor extends $editor {
			public function multi_resize( \$sizes ) {
				\$metadata = array();
				/*\$orig_size = \$this->size;

				foreach ( \$sizes as \$size => \$size_data ) {
					if ( ! isset( \$size_data['width'] ) && ! isset( \$size_data['height'] ) ) {
						continue;
					}

					if ( ! isset( \$size_data['width'] ) ) {
						\$size_data['width'] = null;
					}
					if ( ! isset( \$size_data['height'] ) ) {
						\$size_data['height'] = null;
					}

					if ( ! isset( \$size_data['crop'] ) ) {
						\$size_data['crop'] = false;
					}

					\$dims = image_resize_dimensions( \$this->size['width'], \$this->size['height'], \$size_data['width'], \$size_data['height'], \$size_data['crop'] );
					if ( \$dims ) {
						list( \$dst_x, \$dst_y, \$src_x, \$src_y, \$dst_w, \$dst_h, \$src_w, \$src_h ) = \$dims;
						\$this->update_size( \$dst_w, \$dst_h );

						list( \$filename, \$extension, \$mime_type ) = \$this->get_output_format( null, null );


#alx359-->
/*
For the sake of consistency with the code change above

						if ( ! \$filename )
							\$filename = \$this->generate_filename( null, null, \$extension );

						\$metadata[\$size] = array(
							'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', \$filename ) ),
*/
						\$filename = apply_filters( 'image_make_intermediate_size', \$filename );

						if ( !is_string(\$filename) ) {
							\$filename = \$this->generate_filename( null, null, \$extension );
						}
						\$metadata[\$size] = array(
							'file'      => wp_basename( \$filename ),
#<--alx359
							'width'     => \$this->size['width'],
							'height'    => \$this->size['height'],
							'mime-type' => \$mime_type,
						);
						\$this->size = \$orig_size;
					}
				}*/
				return \$metadata;
			}
		} 
	");

HTH.

]]>
https://www.ads-software.com/support/topic/crop-positioning-per-thumbnail-a-proposal/ <![CDATA[Crop positioning per thumbnail. A proposal]]> https://www.ads-software.com/support/topic/crop-positioning-per-thumbnail-a-proposal/ Thu, 06 Jul 2023 07:08:03 +0000 alx359 Replies: 0

In our gallery, there are a number of images of people with an unpleasant tendency of getting their heads cut-off in the thumbnails. WP offers the ability of changing the crop position through an array that usually defaults to ['center', 'center']. For cases like the aforementioned, this would require ['center', 'top'] instead, but WPPP doesn’t seem to expose ways to change the default behavior for individual thumbnails, unfortunately.

As a side note, there are quite more elaborate solutions based on face-recognition (like My Eyes Are Up Here), but WPPP isn’t compatible with any of those I’ve tested, in any of the rewrite modes (even crashes badly). Anyway, they’re resource-intensive and won’t fit well with the need for max. speed during on-the-fly thumbnail generation.

I’ve already become aware the “Fast rewrite” mode imposes many limitations, as entire parts of core have been disabled in the name of greater performance. That’s fine, but there’s still a non-detrimental way to address the need to keep all heads in place, with the addition of a new filter. Namely:

class.wppp_serve_image.php ~210

foreach ( $sizes as $size => $size_data ) {
    $size_data[ 'crop' ] = apply_filters('wppp_dynimg_crop_position', $size_data[ 'crop' ], $this->localfilename );

Making this filter work in SHORTINIT would imply the implementation of this another change request regarding sharpening support first.

From the filter’s end, I fixed the issue by keeping a list of those images names that needed the different positioning. (For SHORTINIT to work, the filter code has to be inside a plugin.)

I’m writing with hope the Author would implement his way to this at some point. Thanks in advance for your consideration, Bjoern.

]]>
https://www.ads-software.com/support/topic/plugins-wont-activate-3/ <![CDATA[Plugins won’t activate]]> https://www.ads-software.com/support/topic/plugins-wont-activate-3/ Fri, 30 Jun 2023 16:11:42 +0000 alx359 Replies: 2

No plugins want to activate from the plugins page. The message “Plugin activated” is displayed, but nothing really happens. When WPPP is not active they activate just fine. The culprit seems with the firing of the plugin_load_first() function. Tried various things and what finally worked for me was changing the hook from wp_loaded to the latest possible one: wp_dashboard_setup , according this reference. Most tests were performed with Autoptimize (de)activation.

wp-performance-pack.php ~line 271 modified like this:

add_action( 'wp_dashboard_setup', array( $this, 'plugin_load_first' ) ); 

The issue was happening on a Linux VPS. Interestingly, I don’t have the issue with a local copy of that same website on WAMP.

]]>
https://www.ads-software.com/support/topic/settings-lost-upon-deactivation/ <![CDATA[Settings lost upon deactivation]]> https://www.ads-software.com/support/topic/settings-lost-upon-deactivation/ Wed, 28 Jun 2023 19:25:19 +0000 alx359 Replies: 1

When temporarily deactivating wppp all settings are lost. Specifically I care for the dynamic_images module. Skimming through the code makes apparent the issue is in a lack of differentiation between deactivation vs uninstall, which are 2 separate hooks. The fix that currently worked for me:

wp-performance-pack.php ~line 459 add:

register_deactivation_hook( __FILE__, array( $wp_performance_pack, 'deactivate' ) );
register_uninstall_hook( __FILE__, 'uninstall' ); // added

wp-performance-pack.php ~line 364 comment out the block of code below in deactivate():

public function deactivate() {
	if ( $this->options['dynamic_images'] ) {
		// Delete rewrite rules from htaccess
		WPPP_Dynamic_Images::static_disable_rewrite_rules();
	}
/*
	if ( is_multisite() && isset( $_GET['networkwide'] ) && 1 == $_GET['networkwide'] ) {
		delete_site_option( self::wppp_options_name );
	} else {
		delete_option( self::wppp_options_name );
	}
	delete_option( 'wppp_dynimg_sizes' );
	delete_option( 'wppp_version' );
*/
	// restore static links
	WPPP_CDN_Support::restore_static_links();
}

performance-pack.php ~line 378 move the commented out code above to a new function uninstall():

#alx359-->
	public function uninstall() {
        
		if ( is_multisite() && isset( $_GET['networkwide'] ) && 1 == $_GET['networkwide'] ) {
			delete_site_option( self::wppp_options_name );
		} else {
			delete_option( self::wppp_options_name );
		}
		delete_option( 'wppp_dynimg_sizes' );
		delete_option( 'wppp_version' );
	}
#<--alx359

(This of course is just an example that seems to suit me atm. Bjoern would have to implement a throughout fix.)

]]>
https://www.ads-software.com/support/topic/fast-rewrite-sharpening/ <![CDATA[Fast Rewrite sharpening]]> https://www.ads-software.com/support/topic/fast-rewrite-sharpening/ Tue, 27 Jun 2023 05:31:51 +0000 alx359 Replies: 4

Everything is setup and working smoothly so far with dynamic_images, but there’s one last thing I’d like to improve, before putting it on a live site.

Fast Rewrite (FR) feels sensibly faster than Compatible Rewrite, but produces blurrier images. FR doesn’t seem to fire other hooks, like image_make_intermediate_size. Have modded a tiny plugin that improves sharpening dramatically for our kind of usage, but it doesn’t work in FR as it’s attached to the aforementioned hook. Would you consider integrating some sharpening abilities to wppp, or perhaps better, enable a (limited) set of filters so one could hook into them? I looked into this but couldn’t figure it out. Thanks!

]]>
https://www.ads-software.com/support/topic/unknown-image-size-and-lack-of-images-issue/ <![CDATA[‘Unknown image size’ and lack of images issue]]> https://www.ads-software.com/support/topic/unknown-image-size-and-lack-of-images-issue/ Sun, 25 Jun 2023 19:51:53 +0000 alx359 Replies: 1

I’m getting hit by a 404 Unknown image size that doesn’t render some thumbnails at all. As it happens in the frontpage, this is becoming a showstopper if not addressed.

Skimming through the code, the culprit seems to start at line 202 of class.wppp_serve_image.php that says:
WPPP only serves “known” image sizes to prevent filling up server space

I’m not sure why not serving an alternate image, even if not optimal, isn’t a more sensible approach than not serving anything at all.

Anyway, as adding a filter there isn’t firing for me, a slight code change about line 207 would do:

// always check, even if size is in meta data, as the size could have changed since it was saved to meta data
$new_size = image_resize_dimensions( $imgsize[ 'width' ], $imgsize[ 'height' ], $size_data[ 'width' ], $size_data[ 'height' ],

//-->
$the_size = $size;
$crop = $size_data[ 'crop' ]; // needed later if not 404

//<--

// added '$new_size &&' check, as image_resize_dimensions() may also return false
if ( $new_size && ( abs( $new_size[ 4 ] - $this->width ) <= 1 ) && ( abs( $new_size[ 5 ] - $this->height ) <= 1 ) ) {

Indeed, some more thumbnails get generated with that tweak (97 instead of 94 in the frontpage), but at least said frontpage renders correctly.

Thanks for your consideration.

]]>
https://www.ads-software.com/support/topic/trying-to-access-array-offset-on-value-of-type-bool-35/ <![CDATA[Trying to access array offset on value of type bool]]> https://www.ads-software.com/support/topic/trying-to-access-array-offset-on-value-of-type-bool-35/ Sun, 25 Jun 2023 17:05:05 +0000 alx359 Replies: 1

I got a lot of these warnings in debug.log

PHP Warning: Trying to access array offset on value of type bool in \wp-content\plugins\wp-performance-pack\modules\dynamic_images\class.wppp_serve_image.php on line 211

In line 207 of said page, function image_resize_dimensions can return false instead of array, so an extra check for $new_size is required next line:

if ( $new_size && ( abs( $new_size[ 4 ] - $this->width ) <= 1 ) && ( abs( $new_size[ 5 ] - $this->height ) <= 1 ) ) {

]]>
https://www.ads-software.com/support/topic/exit404-function-change-suggestion/ <![CDATA[exit404 function change suggestion]]> https://www.ads-software.com/support/topic/exit404-function-change-suggestion/ Tue, 04 Oct 2022 07:37:49 +0000 madmax4ever Replies: 1

Hello,

Thank you for your latest version! I��m glad you��re back. ??

Regarding the exit404 function, my previous suggestion wasn��t more than a thought. As a matter of fact, just as it is, almost nothing is loaded and this doesn��t work.
So I suggest something else -that I actually use- that would be to modify this function as follow (even if this could have a frontend to activate or select 404 behavior…):

function exit404( $message ) {
	header( 'Cache-Control:?no-cache,?must-revalidate' );	// HTTP/1.1
	header( 'Expires:?Sat,?26?Jul?1997?05:00:00?GMT' );	// past date
	if ( WP_DEBUG ) {
	    header( $_SERVER[ 'SERVER_PROTOCOL' ] . ' 404 Not Found' );
	    echo $message;
	} else {
	    header ('HTTP/1.1 301 Moved Permanently');
	    header ("Location: /404"); // Or any page that doesn't exist...
	}
	exit();
}

Redirecting offers an easy way to get the WordPress 404 page.
HTTP redirection code could be either 301 or 302, as selected by the webmaster (302 could help if the error was not meant to be…).

What do you think about it?

]]>
https://www.ads-software.com/support/topic/problem-with-sizes/ <![CDATA[Problem with sizes]]> https://www.ads-software.com/support/topic/problem-with-sizes/ Wed, 21 Jul 2021 16:42:29 +0000 madmax4ever Replies: 0

Hello,
I had a problem that I solved my way (read here). But it wasn��t the good solution.
To me, at least, I found that in fact I had problem with sizes in general as I also got “Unknown image size” error with some “resized” images asked that were in fact of a template size BIGGER than the original.

So I finally modified fuction filter_wp_get_attachment_metadata in /wp-performance-pack/trunk/modules/dynamic_images/class.wppp_dynamic_images.php as follow:

function filter_wp_get_attachment_metadata( $data ) {
	if ( !isset( $data[ 'file' ] ) )
		return $data;
	$ext  = strtolower( pathinfo( $data[ 'file' ], PATHINFO_EXTENSION ) );
	if ( ( $ext === 'jpg' ) || ( $ext === 'jpeg' ) || ( $ext === 'gif' ) || ( $ext === 'png' ) ) { // MR - Added "jpeg" extension as it is found in all regexp inside plugin
		$name = wp_basename( $data[ 'file' ], ".$ext" );

		$sizes = get_option( 'wppp_dynimg_sizes' );
		foreach ( $sizes as $size => $sizeinfo ) {
			if ( !isset( $data[ 'sizes' ][ $size ] ) ) {
				// MR - Following check should be done inside image_resize_dimensions, but it is not. Don't know why...
				// Maybe because of the early applied filter 'image_resize_dimensions' inside the core function? No arm done double-checking!
				if ( ($sizeinfo[ 'width' ] > $data[ 'width' ]) || ($sizeinfo[ 'height' ] > $data[ 'width' ]) ) continue;
				if ( isset( $sizeinfo[ 'crop' ] ) )
					$newsize = image_resize_dimensions( $data[ 'width' ], $data[ 'height' ], $sizeinfo['width'], $sizeinfo['height'], $sizeinfo['crop'] );
				else
					$newsize = image_resize_dimensions( $data[ 'width' ], $data[ 'height' ], $sizeinfo['width'], $sizeinfo['height'], false );
				if ( $newsize !== false ) {
					$data[ 'sizes' ][ $size ] = array (
						'width' => $newsize[ 4 ],
						'height' => $newsize[ 5 ],
						'file' => $name . '-' . $newsize[ 4 ] . 'x' . $newsize[ 5 ] . '.' . $ext,
					);
				}
			}
		}
	}
	return $data;
}

Maybe my problem is related to some other plugin (as always suspected). But now, as I��ve checked image_resize_dimensions returns (and read its code too), I now this was my problem and I��ve solved it without really “changing” the plugin’s behavior for other users.

Hope it helps

]]>
https://www.ads-software.com/support/topic/size-medium_large-not-managed/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Size medium_large not managed]]> https://www.ads-software.com/support/topic/size-medium_large-not-managed/ Tue, 24 Nov 2020 07:26:58 +0000 madmax4ever Replies: 0

Hello,
I just noticed that the medium_large WordPress size seems not be registered globally. It seems this size is generated automatically when needed.
As a result, it can be found in the attachement’s sizes array, but WPPP do not recognize this size (it’s not set in its specific option containing WPPP known sizes).
So I had to modify function serve_image so that in the try statement, if WPPP do not find a valide size, a secpnd chance it taken as follow:

// 2ND CHANCE START - Try to get attachement's specific sizes
if ( $the_size === '' ) {
	$size_pattern = '/-[0-9]+x[0-9]+\.(jpe?g|png|gif)/';
	$repl_pattern = '.$1';
	$request_uri = $_SERVER['HTTPS'] ? 'https://' : 'https://';
	$request_uri .= $_SERVER['SERVER_NAME'];
	$request_uri .= preg_replace ($size_pattern, $repl_pattern, $request);
	$postid = attachment_url_to_postid($request_uri);
	if ( $postid > 0 ) {
		$meta_d = wp_get_attachment_metadata($postid);
		$sizes = $meta_d['sizes'];
		foreach ( $sizes as $size => $size_data ) {
			// always check, even if size is in meta data, as the size could have changed since it was saved to meta data
			$new_size = image_resize_dimensions( $imgsize[ 'width' ], $imgsize[ 'height' ], $size_data[ 'width' ], $size_data[ 'height' ], $size_data[ 'crop' ] );
			if ( ( abs( $new_size[ 4 ] - $this->width ) <= 1 ) && ( abs( $new_size[ 5 ] - $this->height ) <= 1 ) ) {
				// allow size to vary by one pixel to catch rounding differences in size calculation 
				$the_size = $size;
				$crop = $size_data[ 'crop' ];
				break;
			}
		}
	}
}
// 2ND CHANCE END

I know it may not be the proper solution, but this kludge manages the 768x… medium_large size some images have.

I’m sure you’ll find a better way to do that.
Just to share and help your plugin improve. ??

Thank you

]]>
https://www.ads-software.com/support/topic/gettextmo-dynamic-problem-with-multi-line-strings/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>[gettext][mo-dynamic] Problem with multi-line strings]]> https://www.ads-software.com/support/topic/gettextmo-dynamic-problem-with-multi-line-strings/ Fri, 20 Nov 2020 05:46:38 +0000 madmax4ever Replies: 0

Hello,

I am using your localization optimization and I am currently translating a plugin.
But some parts of it weren’t translated as they should be in pop-ups in the back end. At first I blamed this plugin…
In fact, it turns out that the not translated strings are multi-line ones, and that they are not translated only when WPPP’s Use gettext or Use alternative MO reader option is enabled.
With those localization optimizations disabled, wordpress translation mechanism works with those multi-line strings.
A sample of such multi-line strings should:

sprintf(__( 'Here is a dynamic multi-line test string with replacement as="%s"
                   Could you find why it is not translated
                   by [gettext] nor [mo-dynamic]?
                   I sincerely hope. Thx!' , 'my-test-plugin-text-domain' ),
        $this) );

Of course, I delete WPPP’s localization cache dir after enabling each option before testing and reporting this, just to be sure everything was in sync.

Hope it helps.

]]>
https://www.ads-software.com/support/topic/exit404-function-impacts-website-cohesion/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>exit404 function impacts website cohesion]]> https://www.ads-software.com/support/topic/exit404-function-impacts-website-cohesion/ Sat, 14 Nov 2020 09:29:51 +0000 madmax4ever Replies: 0

For dynamic images management, your exit404 function is great for debugging, but maybe you should modify your function to:

function exit404( $message ) {
	global $wp_query;
	$wp_query->set_404();
	status_header(404);
}

This way, you’ll redirect to the site global 404 management system and page.
As a webmaster, I think it’s way better for the website and the brand image than a one line “debug” error…
Or maybe could you propose a debug mode to switch between both behaviors?
Not meaning to be rude at all, just wanting to participate improving your great plugin by sharing my needs and ideas.

]]>
https://www.ads-software.com/support/topic/htaccess-regex-should-be-improved-for-treatment-and-security/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>htaccess regex should be improved for treatment and security]]> https://www.ads-software.com/support/topic/htaccess-regex-should-be-improved-for-treatment-and-security/ Sat, 14 Nov 2020 09:17:59 +0000 madmax4ever Replies: 1

Currently, for dynamic images handling, the Rewrite conditions and rules are the following:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} /wp-content/uploads(.*)$
RewriteCond %{DOCUMENT_ROOT}/wp-content/wppp/images/%1 -f
RewriteRule .* /wp-content/wppp/images/%1 [L]
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*)-([0-9]+)x([0-9]+)?\.((?i)jpeg|jpg|png|gif) /wp-content/plugins/wp-performance-pack/modules/dynamic_images/serve-dynamic-images.php [QSA,L]

Meaning:

  1. IF real path to requested file OF ANY KIND is not a file (meaning if file is not found).
  2. AND IF requested file uri ENDS with a path inside wp-content/uploads dir or any of its subdirectories
  3. AND IF file is not found in /wp-content/wppp/images either, USING the same final path used to check previous condition
  4. THEN change the request to /wp-content/wppp/images directory
  1. IF real path to requested file OF ANY KIND is not a file (meaning if file is not found).
  2. THEN requested file STARTING WITH: (anything) then a hyphen character then (1 or more number) then the ‘x’ lowercase character then MAYBE (1 or more number) then the dot character then one of the following word CASE INSENSITIVE (jpeg, jpg, png or gif) THEN change that to /wp-content/plugins/wp-performance-pack/modules/dynamic_images/serve-dynamic-images.php WITH THE PENDING REQUEST ELEMENTS

But with such rules, you match and call /wp-content/plugins/wp-performance-pack/modules/dynamic_images/serve-dynamic-images.php, potentially encountering errors for bad calls…

For instance:

  • wp-content/uploads/test/-1x.jpg
  • wp-content/uploads/test/fakeimg-1x.jpeg.exe
  • wp-content/uploads/test/fakeimg-1×1.png_or_not.pdf OR wp-content/uploads/test/fakeimg-1x.gif_imagine_here_any_type_of_code_attack_that_could_be_tried_against_your_code

This way I could try: wp-content//uploads/test/fakeimg-1x.gifdie() or wp-content//uploads/test/fakeimg-1x.gifphpinfo() and get the image…
On other tries (such as (-1x.jpg.pdf) I got the plugin error message.

So I suggest ot secure a little more those rules like that:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} /wp-content/uploads(.*)\.((?i)jpeg|jpg|png|gif)$
RewriteCond %{DOCUMENT_ROOT}/wp-content/wppp/images/%1.%2 -f
RewriteRule .* /wp-content/wppp/images/%1.%2 [L]
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.+)-([0-9]+x[0-9]+)\.((?i)jpeg|jpg|png|gif)$ /wp-content/plugins/wp-performance-pack/modules/dynamic_images/serve-dynamic-images.php [QSA,L]

This way, on line 2 we check only for files with the jpeg, jpg, png or gif CASE INSENSITIVE extension. Not interfering with other plugins (such as webp ones…).
On line 6, we now avoid :

  • files not having any character before the hyphen character,
  • files without a number after the x character
  • files with trailing characters after the extensions we are looking for

On most test cases, I now get the system 404 page. Better as it dosn’t concern WPPP.

Finally, I’m not aware about any [0-9]x[0-9] only generated thumbnails, so maybe regex on line 6 could be:
^(.+)-([0-9]{2,}x[0-9]{2,})\.((?i)jpeg|jpg|png|gif)$
but let’s keep it as is for now, there could be specific usages (FB or other tracking pixel?).

So, are you interested in changing that this way?

  • This topic was modified 4 years ago by madmax4ever. Reason: problem with tags
]]>
https://www.ads-software.com/support/topic/deprecated-call-when-deactivating/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Deprecated call when deactivating]]> https://www.ads-software.com/support/topic/deprecated-call-when-deactivating/ Tue, 10 Nov 2020 11:18:09 +0000 madmax4ever Replies: 0

While trying your plugin, with DEBUG ON (PHP 7.4), I get, when deactivating it whereas image module was loaded with Fast rewrite:

PHP Deprecated: Non-static method WPPP_Dynamic_Images::flush_rewrite_rules() should not be called statically in /my_wordpress/wp-content/plugins/wp-performance-pack/wp-performance-pack.php [...]

As you can read, it’s because of:

public function deactivate() {
  if ( $this->options['dynamic_images'] ) {
    // Delete rewrite rules from htaccess
    WPPP_Dynamic_Images::flush_rewrite_rules( false );
  }

My workaround was to add the following static function inside class.wppp_dynamic_images.php :

	public static function static_flush_rewrite_rules() {
		// init is called prior to options update
		// so add or remove rules before flushing
		global $wp_rewrite;
		if ( $wp_rewrite && isset( $wp_rewrite->non_wp_rules['(.*)-([0-9]+)x([0-9]+)?c?\.((?i)jpeg|jpg|png|gif)'] ) ) {
			unset( $wp_rewrite->non_wp_rules['(.*)-([0-9]+)x([0-9]+)?c?\.((?i)jpeg|jpg|png|gif)'] );
		}
		flush_rewrite_rules();
	}

And modify accordingly wp-performance-pack.php by switching to it:

public function deactivate() {
  if ( $this->options['dynamic_images'] ) {
    // Delete rewrite rules from htaccess
    WPPP_Dynamic_Images::static_flush_rewrite_rules();
  }

Just to share with you.

Great plugin by the way ??

]]>
https://www.ads-software.com/support/topic/when-uploading-images-highlighted-in-wordpress-5-5-they-are-blank/ <![CDATA[When uploading featured images in wordpress 5.5 they are blank]]> https://www.ads-software.com/support/topic/when-uploading-images-highlighted-in-wordpress-5-5-they-are-blank/ Thu, 13 Aug 2020 20:53:16 +0000 ramonjosegn Replies: 1

Hi
When uploading images featured in wordpress 5.5 they are blank

Thanks for support

  • This topic was modified 4 years, 3 months ago by ramonjosegn.
]]>
https://www.ads-software.com/support/topic/i-am-try-for-image-resizing-but-doesnt-seem-to-be-working/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>I am try for image resizing, but doesn’t seem to be working]]> https://www.ads-software.com/support/topic/i-am-try-for-image-resizing-but-doesnt-seem-to-be-working/ Thu, 13 Aug 2020 20:40:22 +0000 ramonjosegn Replies: 1

Hello, thanks for the plugin

I am try for image resizing, but doesn’t seem to be working

When I am testing with gtmetrix.com show a lot of images with an inappropriate escalation

View post on imgur.com

Thanks for support

]]>
https://www.ads-software.com/support/topic/gettext-test-failed-2/ <![CDATA[Gettext test failed]]> https://www.ads-software.com/support/topic/gettext-test-failed-2/ Fri, 19 Jun 2020 13:10:45 +0000 aausten Replies: 2

I want to enable to use getext but have the error message “Gettext test failed. Activate WPPP debugging for additional info.”

When checking WPPP debugging it shows;

OS Linux 6D18DE3 4.15.0-38-generic #41-Ubuntu SMP Wed Oct 10 10:59:38 UTC 2018 x86_64
PHP gettext extension is Available
WordPress locale en_GB
LC_MESSAGES defined? Yes
System locales (LC_MESSAGES) C
Putenv available? Yes
Locale writeable? (en_GB) No
Directory /xxxxx/wordpress/wp-content/wppp/localize/en_GB/LC_MESSAGES Exists

Is the issue because locale is not writable and if so what is the fix please?

I am using PHP-FPM if that makes any difference.

Thanks

]]>
https://www.ads-software.com/support/topic/device-dependent-image-resize-2/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>device-dependent image resize?]]> https://www.ads-software.com/support/topic/device-dependent-image-resize-2/ Mon, 15 Jun 2020 16:05:25 +0000 alx359 Replies: 1

Do this plugin is capable of doing image resizing, depending on screen-resolution of the browsing device? Thanks.

]]>
https://www.ads-software.com/support/topic/undefined-index-dyn_links-on-clean-install/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Undefined index: dyn_links – on clean install]]> https://www.ads-software.com/support/topic/undefined-index-dyn_links-on-clean-install/ Mon, 15 Jun 2020 12:05:28 +0000 jmslbam Replies: 2

Undefined index: dyn_links in wp-performance-pack/wp-performance-pack.php

Installed it clean and loaded it as a must use plugin. Then it gave this notice.

Saved the settings and it was gone.

If you have a public Github repo, I gladdly send a PR to add a “array key exists” to the check.

]]>
https://www.ads-software.com/support/topic/images-not-generated/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Images not generated]]> https://www.ads-software.com/support/topic/images-not-generated/ Fri, 10 Apr 2020 22:53:46 +0000 djbdijkstra Replies: 5

Hi, i have two sites… one test and one live (www..)
Dynamic image resizing/generating is functioning on the test-site (https://test.johannaengelina.nl/de-historie-van-dit-charterschip-en-zeilklipper-2/)
but not on the live-site.
I copied all the settings and plug-ins from the test-site… The only difference is that the www-site is running with SSL (through a plug-in called Really Simple SSL)
When i look in the error-log, i find erros for all the images that need to be generated (because missing) Ofcourse the originals exist! One of the errors (all are similar) is:

[Sat Apr 11 00:41:03.454035 2020] [proxy_fcgi:error] [pid 107905:tid 139734873532160] [client 92.108.202.79:34062] AH01071: Got error ‘PHP message: PHP Warning: filemtime(): stat failed for /home/johannaengelina.nl/public_html/wordpress/wp-content/uploads/wordpress/Historisch/danaadrianarev.jpg in /home/johannaengelina.nl/public_html/wordpress/wp-content/plugins/wp-performance-pack/modules/dynamic_images/class.wppp_serve_image.php on line 71\n’, referer: https://www.johannaengelina.nl/de-historie-van-dit-charterschip-en-zeilklipper-2/

What can be wrond? I tried to debug the plug-in, but get errors when i change anything in class.wppp_serve_image.php

Thanks in advance, DJ

]]>
https://www.ads-software.com/support/topic/more-fixes-for-alternative-mo-mode/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>More Fixes for alternative mo mode]]> https://www.ads-software.com/support/topic/more-fixes-for-alternative-mo-mode/ Tue, 07 Apr 2020 08:27:54 +0000 Nick name Replies: 4

View post on imgur.com

wp-performance-pack/modules/l10n_improvements/class.wppp_mo_dynamic.php
Line 562
Fixes notice for undefined nplurals


if ( $t !== false ) {
    $ts = isset($this->_nplurals) ? explode( self::PLURAL_SEP, $t, $this->_nplurals ) : null;
    $i = $this->gettext_select_plural_form( $count );
    if ( $ts && isset( $ts[ $i ] ) ) {
        return $ts[ $i ];
    } else { 
        return $default;
    }
} else {
    $this->translations[$s] = $singular . self::PLURAL_SEP . $plural;
    $this->modified = true;
    return $default;
}
  • This topic was modified 4 years, 7 months ago by Nick name.
]]>
https://www.ads-software.com/support/topic/fixes-for-alternative-mo-mode/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Fixes for alternative mo mode]]> https://www.ads-software.com/support/topic/fixes-for-alternative-mo-mode/ Sat, 21 Mar 2020 17:51:28 +0000 Nick name Replies: 2

class.wppp_mo_dynamic.php

line 347


if(!$moitem) { // handle null items
 continue;
}

line 404


$orig_idx = isset($moitem->hash_table[$idx]) ? $moitem->hash_table[$idx] : 0; // this
while ( $orig_idx != 0 ) {
 $orig_idx--; // index adjustment
  • This topic was modified 4 years, 8 months ago by Nick name.
]]>
https://www.ads-software.com/support/topic/502-bad-gateway-error-17/ <![CDATA[502 Bad Gateway error]]> https://www.ads-software.com/support/topic/502-bad-gateway-error-17/ Fri, 28 Feb 2020 09:26:02 +0000 jmslbam Replies: 7

When only activating Localization and visiting the tab I get a 502 Bad Gateway error:

https://xyz.local/wp-admin/options-general.php?page=wppp_options_page&tab=l10n_improvements

Other tabs do work.

WPPP: v2.2.5
WP: 5.3.2
PHP 7.2 – NGinx
Local development enviroment: Local Lightning: 5.2.4

Hope you have enough information, if you need more, please let me know.

Ciao Jaime!

]]>
https://www.ads-software.com/support/topic/class-wppp_mo_dynamic-php515-substr-expects-parameter-2-to-be-int-string-g/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>class.wppp_mo_dynamic.php:515 – substr() expects parameter 2 to be int, string g]]> https://www.ads-software.com/support/topic/class-wppp_mo_dynamic-php515-substr-expects-parameter-2-to-be-int-string-g/ Tue, 25 Feb 2020 20:40:23 +0000 erwinbr Replies: 3

Hello, I just installed your module to see if it does what I need and I noticed this notice in the log/debug bar:
NOTICE : wp-content\plugins\wp-performance-pack\modules\l10n_improvements\class.wppp_mo_dynamic.php:515 – substr() expects parameter 2 to be int, string given
require_once(‘wp-admin/admin.php’), require_once(‘wp-admin/admin-header.php’), do_action(‘in_admin_header’), WP_Hook->do_action, WP_Hook->apply_filters, wp_admin_bar_render, do_action_ref_array(‘admin_bar_menu’), WP_Hook->do_action, WP_Hook->apply_filters, wp_admin_bar_updates_menu, wp_get_update_data, _n, apply_filters(‘ngettext’), WP_Hook->apply_filters, WPML\ST\MO\Plural->handle_plural, __, translate, WPPP_MO_dynamic_Debug->translate, WPPP_MO_dynamic->translate, substr

I guess that solving it is as simple as replacing self::PLURAL_SEP with 0 on the given line.

]]>
https://www.ads-software.com/support/topic/scaled-images-do-net-get-saved-on-creation/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Scaled Images do net get saved on creation]]> https://www.ads-software.com/support/topic/scaled-images-do-net-get-saved-on-creation/ Sun, 09 Feb 2020 12:11:32 +0000 wimsjohn Replies: 1

In the current implementation this plugin doesn’t save previews created out of scaled (edited inside wordpress) images. It creates them though. It just doesn’t save them which is interesting.

Example on my server: img1.jpg -> img1-600×338.jpg – works
Example2 on my server: img1.jpg + img1-scaled.jpg -> img1-600×338.jpg – doesn’t work / no file created

Why i noticed this: I always recieved two images of my previews a tad bit late. These were generated on demand, but i could not find them acessing my ftp server.

How i temporarily fixed this: I downloaded the images in question via the link, uploaded them via ftp in the corresponding folder und voila, they get served fast again.

(This is all before working with webp express which i disabled for this test)

Thank you!
wimsjohn

]]>
https://www.ads-software.com/support/topic/php7-2-fpm-error-2/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>PHP7.2-FPM error]]> https://www.ads-software.com/support/topic/php7-2-fpm-error-2/ Sat, 08 Feb 2020 14:34:39 +0000 lucabarelli Replies: 3

Hi Bjoern,

I’m fighting with PHP7.2-FPM (under Apache, but I presume it’ll be the same under Nginx) and I’m getting an error related to your plugin.
Most probably this happens because PHP7.2-FPM is not loaded as Apache module.
Check this https://stackoverflow.com/questions/2916232/call-to-undefined-function-apache-request-headers
Error below:

AH01071: Got error ‘PHP message: PHP Fatal error: Uncaught Error: Call to undefined function apache_request_headers() in /PATH/TO/SITE/FOLDER/wp-content/plugins/wp-performance-pack/modules/dynamic_images/class.wppp_serve_image.php:216\nStack trace:\n#0 /PATH/TO/SITE/FOLDER/wp-content/plugins/wp-performance-pack/modules/dynamic_images/class.wppp_serve_image.php(332): WPPP_Serve_Image->check_cache_headers()\n#1 /PATH/TO/SITE/FOLDER/wp-content/plugins/wp-performance-pack/modules/dynamic_images/serve-dynamic-images.php(101): WPPP_Serve_Image->serve_image()\n#2 {main}\n thrown in /PATH/TO/SITE/FOLDER/wp-content/plugins/wp-performance-pack/modules/dynamic_images/class.wppp_serve_image.php on line 216\nPHP message: PHP Fatal error: Uncaught Error: Call to undefined function wp_kses_normalize_entities() in /PATH/TO/SITE/FOLDER/wp-includes/formatting.php:4316\nStack trace:\n#0 /PATH/TO/SITE/FOLDER/wp-includes/class-wp-fatal-error-handler.php(190): esc_url(‘https://wordpre…&#8217;)\n#1 /PATH/TO/SITE/FOLDER/wp-includes/class-wp-fatal-error-handler.php(147): WP_Fatal_Error_Handler->display_default_error_template(Array, false)\n#2 /PATH/TO/SITE/FOLDER/wp-includes/class-wp-fatal-error-handler.php(52): WP_Fatal_Error_Handler->display_error_template(Array, false)\n#3 [internal function]: WP_Fatal_Error_Handler->handle()\n#4 {main}\n thrown in /PATH/TO/SITE/FOLDER/wp-includes/formatting.php on line 4316\n’, referer: https://MYSITE.URL/CATEGOERY/POST

]]>
https://www.ads-software.com/support/topic/htaccess-entries-not-cleaned-properly-when-disabling-plugin/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>.htaccess entries not cleaned properly when disabling plugin]]> https://www.ads-software.com/support/topic/htaccess-entries-not-cleaned-properly-when-disabling-plugin/ Sat, 08 Feb 2020 14:09:08 +0000 lucabarelli Replies: 4

Hi Bjoern,

just to let you know that your last update doesn’t clean entries when plugin disabled without prior disabling image options.
Still kudos because it puts entries in .htaccess in a correct way (like many don’t).
Best,

– Luca

]]>
https://www.ads-software.com/support/topic/this-not-generating-thumbnail/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>This not generating thumbnail]]> https://www.ads-software.com/support/topic/this-not-generating-thumbnail/ Fri, 07 Feb 2020 14:02:04 +0000 ikomet Replies: 8

Hi,
We have used WP Performance Pack Plugin but it’s not generating the thumbnail. We have followed the given screenshot for the settings. but we need to know more about any other option to enable.

Thanks.

]]>
https://www.ads-software.com/support/topic/make-dynamic-image-creation-compatible-to-webp-express/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Make Dynamic Image creation compatible to Webp Express]]> https://www.ads-software.com/support/topic/make-dynamic-image-creation-compatible-to-webp-express/ Wed, 05 Feb 2020 21:45:12 +0000 wimsjohn Replies: 3

I just found this plugin and it is amazing! Sadly it broke compatibility to Webp Express. Maybe you can do sth about this?

Thanks
wimsjohn

]]>
https://www.ads-software.com/support/topic/no-editor-could-be-selected-plugin-doesnt-work-as-expected/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>“No editor could be selected” – plugin doesn’t work as expected]]> https://www.ads-software.com/support/topic/no-editor-could-be-selected-plugin-doesnt-work-as-expected/ Sat, 25 Jan 2020 18:40:47 +0000 lucabarelli Replies: 4

I’m on Ubuntu 18 with Apache 2.4.29 and PHP 7.2.24 (proxy__fcgi) with both GD and imagick installed but when I try to regenerate thumbs it says “No editor could be selected”.
I’ve already enabled the rt integration via the config panel and tried all possible solutions but still it doesn’t work-
Help, please?

  • This topic was modified 4 years, 10 months ago by lucabarelli.
]]>
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit