QUESTION: do you have any SPECIAL INSTALLATION instructions using your plugin on LOCAL MACHINES? If so, please direct me to that information.
==>
No, there is no such special instructios.
This is the requirements for Toolset plugins:
- https://toolset.com/toolset-requirements/
And this is how you can install and register the Toolset plugins:
- https://toolset.com/faq/how-to-install-and-register-toolset/
And I do not see any other user reported such issue and I'm helpless as the installation is on localhost and to say anything without reviewing things will be throwing stone in the dark.
#1 it's not XAMPP compatible or not XAMPP INTRANET compatible (I have a different setup in my computer... instead of typing "localhost" on my URL, I have to type my IP4Address... WHY? So, I can access my WordPress installation using any devices or gadgets or equipment and any operating system.... OR.....
==>
I've localhost installation and I do not see any issues. However, I'm using localhost and not the IP but it should work.
# 2 TOOLSET has a special instructions or restrictions or limitations when it comes to LOCAL INSTALLATION because it is a PAID PRODUCT... because it is working perfectly on LIVE SITE/WEB HOSTING PROVIDER.
==>
No, there is nothing such. As said, you should activate the WP_DEBUG.
Go in your wp-config.php file and look for
define('WP_DEBUG', false);
Change it to:
define('WP_DEBUG', true);
Then add these lines, just after the WP_DEBUG line:
define('WP_DEBUG_LOG', dirname(__FILE__) . '/error_log.txt');
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 1 );
define('WP_DISABLE_FATAL_ERROR_HANDLER',true);
Reload the page and If any backend errors are thrown, this should create an error_log.txt file in your site's root directory. Please open that file in a text editor and see if you see any errors.