We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
It seems that you use ABSPATH to get "root" folder for example here
ABSPATH
But if you have installed WordPress in a sub-folder and you use rewrite + index.php in the root folder with this change (added site/)
index.php
site/
/** Loads the WordPress Environment and Template */ require( dirname( __FILE__ ) . '/site/wp-blog-header.php' );
ABSPATH will return a wrong path. Please check get_home_path().
get_home_path()
The text was updated successfully, but these errors were encountered:
#134 if not exists file than use get_home_path
1381222
#134 changes
20b676d
Solution Released in Version 2.1.4
Sorry, something went wrong.
No branches or pull requests
Hi,
It seems that you use
ABSPATH
to get "root" folder for example hereBut if you have installed WordPress in a sub-folder and you use rewrite +
index.php
in the root folder with this change (addedsite/
)ABSPATH
will return a wrong path.Please check
get_home_path()
.The text was updated successfully, but these errors were encountered: