"Input file not specified" Error in WordPress

I am working on this site. Backend is working fine. On the front side, none of the other pages is displayed except the index page. on error, "No input file specified" appears

thanks for the help

+7
source share
7 answers

This is a problem with your .htaccess file.

Correction:

Update to the latest WordPress. Some installations have a permalink error.

Make sure Apache is configured correctly for ModRewrite.

From support: by options> Permalink - This is the "Optional" section. This is not true. After the update, it is mentioned for the index.php / file category (I have PATHINFO permalinks), I don’t want β€œfiles”, so I changed it to index.php / Now that I have changed to index.php / _ / (or leave it blank, which gives the standard subpath "Category"), and everything works again. Here is the Rewrite file:

<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> 
+4
source

I got the same error. On this server, I have about 70 WP instalation. I have one problem.

FIX - CTRL + F5 several times ... and it works!

+3
source

In my case, it was a file called .user.ini

Just deleted it.

+3
source

In my case, this turned out to be an incorrect permission / edit in the public_html files. The error message is really not very helpful.

+1
source

I had this problem and it ended up running into my php configuration. After recovering php.ini my site then stopped.

0
source

I also had the same problem after switching from WordPress to the new wordpress (the site was completely recreated)

Ive migrated wth wp-migrate-pro data.

iTheme Security was installed on older versions of WordPress and not disabled. Thus, the migration ended with this error message.

I start all over again (and deactivated iTheme Security before transferring data using wp-migrate-pro)

0
source

Check your version of PHP! I upgrade my php from 5.4.45 to 7.2.14 and my WordPress pulled up

0
source

Source: https://habr.com/ru/post/890035/


All Articles