Plugin doesn't work when WP is installed in a subdirectory
-
The call to plugins/wp-live-chat-support/ajax.php fails, because it is trying to include wp-load.php from a relative path. Changing
require_once( '../../../wp-load.php' );
torequire_once( ABSPATH.'wp-load.php' );
on line 13 of ajax.php fixes the problem for me.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Plugin doesn't work when WP is installed in a subdirectory’ is closed to new replies.