But still i can log in to control panel from my phone through WordPress Android app
Hi,
This could be related to your .htaccess file. If you have one, please check it’s content.
If you don’t have .htaccess you can refer to this basic .htaccess.
Basic/default .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Hope this helps.
Thank you Vodien.com Tim for your comment. I checked my .htaccess file in same director but it seems ok.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Can you give any further sugestion
Hi,
Other possible cause for this could be a security plugin. You might want to disable it by renaming the /wp-content/plugin folder to isolate the issue.
If after renaming the plugin folder allows you to see the dashboard login then could be one of the plugins that is causing this and mostly security plugins.
Hope this helps.
try to change your plugins folder to plugins.old
you can found it inside wp-content.
Try to login and update.
Thank you yehudah it worked now i could log in to control panel.
Shall i re install required plugins from beginning.
Now i can remember i deactivated some of my plugins last time it may be the reason.
As well Thank you both yehudah & Vodien.com Tim for spending your valuable time to help me.
No problem
install one by one so you can found the plugin making problem.
Thank You verry much yehudah again
I can’t log in to make changes to my page because of this message “Unknown application `wordpress’. Please contact your service provider. what should I do?
I can’t log in to make changes to my page because of this message “Unknown application `wordpress’. Please contact your service provider. what should I do?
@Vodien.com Hosting Sir/ Mam, thank you very much.
Your basic .htaccess script is what I’m looking for after I cannot access my website for 4 months!
I even didn’t realize the culprit is .httaccess :
## BEGIN WordPress<<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
## END WordPress
Then I changed to this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
AND IT’S WORKS LIKE A CHARM!!
Note : I never ever touch .htaccess before! It was hidden by CPanel.
You’re welcome @ventoz. Goodluck with your wordpress website!