On multisite installs the “Check Out” button no longer works in fixed_cart.php and order.php.
It should go to:
https://www.domain.com/multisite1/cart/book
https://www.domain.com/multisite2/cart/book
https://www.domain.com/multisite3/cart/book
etc.
Instead it goes to an invalid relative path:
/cart/book
Hi Guys
When this plugin is used alongside AIOSEO it adds a second canonical link in the header.
Thanks
]]>The plugin tends to slow down our site. When its disabled the site is very fast, but once enabled page load takes about 1-2 seconds.
]]>Does the Rezgo plugin support PHP 8? I’ve had some bad experiences with other plugins not being compatible and I’d like to be sure before recommending this to my client.
]]>Hi Guys
The plugin is not functional, tested with no other plugins and default theme. Please see below for Js Error 500 when using shortcode, : Also Causes PHP fatal errors
Warning: Undefined variable $_SESSION in /plugins/rezgo/rezgo/include/class.rezgo.php on line 144 Warning: Trying to access array offset on value of type null in /plugins/rezgo/rezgo/include/class.rezgo.php on line 144 Warning: Undefined array key “order” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 285 Warning: Undefined array key “rezgo_cart_token_32708” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 3038 Warning: Undefined array key “rezgo_refid_val” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 1229 Warning: Undefined array key “rezgo_cart_token_32708” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 3038 Warning: Undefined array key “rezgo_promo” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 1234 Warning: Undefined array key “search” in /plugins/rezgo/index.php on line 13 Warning: Undefined array key “pg” in /plugins/rezgo/index.php on line 18 Warning: Undefined array key 1 in /plugins/rezgo/rezgo/include/class.rezgo.php on line 586 Warning: Trying to access array offset on value of type null in /plugins/rezgo/rezgo/include/class.rezgo.php on line 713 Warning: Undefined array key 1 in /plugins/rezgo/rezgo/include/class.rezgo.php on line 586
Warning: Undefined array key “intro” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 734 Warning: Undefined array key 1 in /plugins/rezgo/rezgo/include/class.rezgo.php on line 586 Warning: Undefined array key “rezgo_cart_token_32708” in /plugins/rezgo/rezgo/include/class.rezgo.php on line 2903 Warning: Undefined property: RezgoSite::$package_data in /plugins/rezgo/rezgo/include/class.rezgo.php on line 2934
PHP fatal Ajax error
/wp-admin/admin-ajax.php?action=rezgo&method=index_ajax&parent_url=%2Ftest&wp_slug=test&pg=1&start_date=&end_date=&tags=&search_in=&search_for=&cid=&security=8773c4a959
]]>We moved from staging to live & ever since the plugin api settings is giving this error:
XML API Error
No more info avalabele!
]]>Rezgo plugin suppressing PHP errors.
This is occurring on multiple environments. All environments are using php 8+
PHP: 8.0.14, 8.0.8, and 8.0.8
MariaDB: 10.6.5, 10.5.13
MySQL: 5.7.34
When the rezgo plugin is disabled php errors are display on page as expected due to:
define( ‘WP_DEBUG’, true );
When the rezgo plugin is enabled php errors are do not display on page even with:
define( ‘WP_DEBUG’, true );
Use a custom Rezgo template options is not saved to the WP options table when trying to update plugin settings despit the success message appearing Your Rezgo options have been updated.
This is occurring on multiple environments. All environments are using php 8+
PHP: 8.0.14, 8.0.8, and 8.0.8
MariaDB: 10.6.5, 10.5.13
MySQL: 5.7.34
The only work around has been going into the database and manually setting the value in the wp_options table.
]]>MultiSite doesn’t work in Rezgo due to pathing issues. This needs to be fixed in the Rezgo plugin, but for now I made the following changes.
First, don’t install it as a Network plugin, but rather on individual sites.
Then before activation, make the following change in config.rezgo.php from:
define("REZGO_DIR", strstr(preg_replace('/(https?\:\/\/)/', '', WP_PLUGIN_URL), '/') . "/$plugin_dir/rezgo");
// The web root you want to precede links, the default is "" (empty) for root
// to change to your own custom directory, add it like /my_directory or /my/directory
define("REZGO_URL_BASE", strstr(preg_replace('/(https?\:\/\/)/', '', WP_PLUGIN_URL), '/') . "/$plugin_dir");
to:
if ( is_multisite() ) {
$new_plugin_url = str_replace(get_home_url().'/', network_home_url(), WP_PLUGIN_URL);
define("REZGO_DIR", strstr(preg_replace('/(https?\:\/\/)/', '', $new_plugin_url), '/') . "/$plugin_dir/rezgo");
// The web root you want to precede links, the default is "" (empty) for root
// to change to your own custom directory, add it like /my_directory or /my/directory
define("REZGO_URL_BASE", strstr(preg_replace('/(https?\:\/\/)/', '', $new_plugin_url), '/') . "/$plugin_dir");
} else {
define("REZGO_DIR", strstr(preg_replace('/(https?\:\/\/)/', '', WP_PLUGIN_URL), '/') . "/$plugin_dir/rezgo");
// The web root you want to precede links, the default is "" (empty) for root
// to change to your own custom directory, add it like /my_directory or /my/directory
define("REZGO_URL_BASE", strstr(preg_replace('/(https?\:\/\/)/', '', WP_PLUGIN_URL), '/') . "/$plugin_dir");
}
]]>
We’ve identified an issue where some hosting environments result in a pathing issue that causes the Rezgo plugin to not work correctly and return a series of PHP errors. We’re working to resolve this issue and will fix this item in the next release.
]]>