WordPress: Files ending in .php in the wp-content/plugins/ directory are treated as Not Found
like this: http://technologysolved.ca/wp-content/plugins/store-locator/js/
when other files types (.js and .html) are clicked they work correctly. But when a file like: the store-locator-js.php is clicked WordPress returns a 404 style error.
This happens with all .php files in the plugins directory and below.
I believe this may be some kind of .htaccess more mod_rewrite error but I am not sure.
My .htaccess file is the following...
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - L
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 L
RewriteCond %{REQUEST_FILENAME} -f OR
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - L
RewriteRule . index.php L
Any help would be appreciated. Thanks!
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$4 Answers
If you need to view the files your only recourse is to open in your browser from your desktop before you upload them. They will not function properly however due to the fact that they are not in a live environment but you can peek at some of the way it looks. Again the htaccess is there for the protection of your site and I would not make any changes to is as it would compromise site security.
I hope this helps and i am here if you need anything more
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$When you go in from the server side, are files actually there or not? You may need to re-upload the plugin(s). I once had one missing bracket break the entire site, and it was not a bracket I myself removed, but a corrupted file.
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$