QUICK TIP - Top Common Errors on WordPress make your headache!
Solution: Enable Index.php

- 1. QUICK TIP - How To Make Gold Miner Game With Unity 2D
- 2. QUICK TIP - Create a play bot T-Rex in Chrome – Hardcode version
If your blog is hosted on a Windows server, this could be an error with Directory Indexes.
- Login to the Control Panel.
- Click on Web Options.
- Go to Directory Indexes section.
- Add index.php to the Directory Indexes.
9.Fatal error undefined function is_network_admin()
The problem:
You receive “Fatal error undefined function is_network_admin()” when you login to WordPress admin after updating WordPress.
Solution: Manual Update
This error is caused by a fail WordPress version upgrade. Try a manual update.
- Download the latest WordPress zip file and unzip it.
- Back up your WordPress.
- Rename wp-includes and wp-admin directories to wp-includes.bak and wp-admin.bak.
- Upload the wp-includesand wp-admin directories from unzipped folder to your web host via FTP.
- Upload files from new wp-content to your existing wp-content folder. Replace and overwrite existing files.
- Upload the new version of the rest of files from the root directory to your existing WordPress root directory.
- Remove .maintenance at your WordPress directory via FTP.
- Login to WordPress admin and you will be given a link to URL like “http://domain.com/wordpress/wp-admin/upgrade.php”. Follow the link and instructions.
- Clear your cache to see the changes if you have caching enabled.
For more details about WordPress manual update, read http://codex.wordpress.org/Updating_WordPress#Manual_Update.
10. WordPress Admin Login 404 Issue
The problem:
You’re not able to login to WordPress admin. You receive a 404 error page instead.
Solution 1: Update the URL in database
If you’re able to access phpMyAdmin, try to update the URL in the database.
- Login cPanel, click on phpMyAdmin under Databases.
- Select your WordPress database. For example: Username_wrdp1.
- Go to wp_options, click on Browse.
- Search for siteurl under the field option_name.
- Click on Edit Field.
- Change the URL in the input box of option_value.
- At the bottom of page, click the Go button.
Solution 2: Update Folder Attributes
- Go to “/wp-admin” directory via FTP.
- Right click on wp-admin directory and click on File Attributes.
- Update the value to 755 and check Recurse into subdirectories if there’s an option.
- Click OK.
- Repeat step 1 to step 4 for /wp-content and wp-includes.
- Open your web browser and try to login to WordPress admin. Press Ctrl + F5 to clear cache.
11. “Briefly unavailable for scheduled maintenance” message remainins after an automatic upgrade
The problem:
Your WordPress site is showing “Briefly unavailable for scheduled maintenance” after an automatic upgrade has completed.
Solution: Remove .maintenance file
A file named .maintenance is placed by WordPress during an automatic upgrade to notify visitors that the site in under a short maintenance. If an upgrade fails or is corrupted, the file will remain in the WordPress folder and won’t get deleted.
To remove .maintenance file,
- Access your blog root directory via FTP.
- Locate the file .maintenance.
- Remove the .maintenance file from the blog root directory.
Once you solve this problem, you may want to run the WordPress automatic upgrade again.
12. Can’t delete a plugin
The problem:
You’re not able to delete a plugin in WordPress admin. It still appears even after you have deleted the directory via FTP.
Solution: Delete plugin via Secure Shell (SSH)
Your plugin might had uploaded some hidden/nested files inside the plugin directory which didn’t appear in FTP.
If you have SSH access to your blog,
- Login your site via SSH.
- Use SSH commands to nagivate “../wp-content/plugins/”.
- Use ls -al to see the full list of folders.
- Delete the particular plugin folder with rm (Folder Name).
Have comments you want to share abou the errors and solutions above? Share them below.
Final words
During developing your website, you will face to many issues from easy to hard. Before going to one solution that you found or searched please carefully backup your step before going with it.
You can save more time and easy to fix the issues. In this troubleshooting tutorial, we just select the most common issues that we can face to and easily get lost. Finally, we hope the tutorial can help you to fix the issues.
If you need support or ask for information you can add comments below. We will try to answer asap. Thanks for your reading time.