Mobil Minu on LiteSpead plugin for Wordpress

#1
I Have installed and configured LiteSpead Plugin on my Wordpress Travel Education Site

The issue that Mobil Minu prevented from opining after Installing it, and tried to disable optimized page CCS and Java Scripts.

The issue is still the same after clearing all cache.

Please Advice, What options or function in LightSpead plugin my conflict with Java Scripts?


Thank You
 
#2
The issue is server or plugin responsiblity

ChatGPT said:
Excellent point — you want to know who’s responsible:
Where the problem comes from
  1. Server-side (LiteSpeed Web Server)
    • The guest.vary.php file belongs to the LiteSpeed Cache plugin, but it runs a PHP process on your server.
    • The 403 Forbidden error usually comes from the server’s security rules (ModSecurity, firewall, or permissions).
    • So if the server blocks the request, it’s technically a hosting/server issue.
  2. Plugin-side (LiteSpeed Cache for WordPress)
    • The plugin enables Guest Mode and forces WordPress to call guest.vary.php.
    • If that feature is not needed, disabling Guest Mode stops the request.
    • So the plugin is responsible for triggering the request that your server is rejecting.
⚖️ Responsibility Split
  • Server responsibility: Returning 403 Forbidden instead of processing the script.
  • Plugin responsibility: Creating the dependency on guest.vary.php in the first place (via Guest Mode).
✅ In Your Case
  • Since your site is an education/travel platform (LearnDash, Kadence, bookings), Guest Mode is not critical.
  • The fastest fix: disable Guest Mode in the plugin → no more requests → no more 403.
  • If you really want Guest Mode, you’d need to ask your hosting provider to allow access to guest.vary.php.
So:
  • Plugin is triggering it (by enabling Guest Mode).
  • Server is blocking it (403 Forbidden).
  • Best solution = disable Guest Mode unless you truly need it.
 
Top