Method 1: Disable Plugins via hPanel File Manager #
This is the quickest way if you have access to hPanel.
Step 1: Log in to hPanel #
- Go to ozspeed.com.au and log in to your hPanel Dashboard.
- Navigate to Files > File Manager.
Step 2: Open the Plugins Directory #
- In the File Manager, go to the public_html folder (or your WordPress installation directory).
- Open the wp-content folder.
- Locate the plugins folder.
Step 3: Rename the Plugin Folder #
- Find the folder of the plugin you want to disable.
- Right-click on the folder and select Rename.
- Add _disabled to the end of the folder name (e.g., plugin-name_disabled).
- This change will deactivate the plugin.
Step 4: Test Your Website #
- Try accessing your WordPress admin page again.
- If the issue is resolved, you can go back and rename the folder to its original name after troubleshooting.
Method 2: Disable All Plugins via phpMyAdmin #
If you suspect a plugin conflict but aren’t sure which one is causing it, you can disable all plugins at once using phpMyAdmin.
Step 1: Access phpMyAdmin in hPanel #
- Log in to hPanel and go to Databases > phpMyAdmin.
- Select your WordPress database from the left sidebar.
Step 2: Edit the Plugins Table #
- Click on the wp_options table (prefix may vary, e.g., wp123_options).
- Look for the row with the option_name field labeled active_plugins.
- Click Edit.
Step 3: Disable All Plugins #
- In the option_value field, replace the existing value with a:0:{}.
- Click Save or Go.
Tip: #
- This method deactivates all plugins without deleting them, allowing you to re-enable them one by one after fixing the issue.
Method 3: Disable Plugins via FTP #
If you prefer using an FTP client like FileZilla, this method offers another way to access your site files.
Step 1: Connect to Your Website via FTP #
- Open your FTP client (e.g., FileZilla).
- Enter your FTP credentials (host, username, password) and click Connect.
Step 2: Navigate to the Plugins Folder #
- Go to the public_html/wp-content/plugins/ directory.
- Locate the folder of the plugin you want to disable.
Step 3: Rename the Plugin Folder #
- Right-click on the plugin folder and select Rename.
- Add _disabled at the end of the folder name (e.g., plugin-name_disabled).
- This will deactivate the plugin immediately.
Step 4: Check Your Site #
- Reload your WordPress site and see if the issue is resolved.
- If the issue persists, repeat the process for other plugins until you identify the problematic one.
Method 4: Use WP-CLI (Advanced) #
If you have SSH access to your server and are comfortable using command-line tools, you can use WP-CLI to disable plugins.
Step 1: Connect via SSH #
- Open your terminal or SSH client (e.g., PuTTY).
- Connect to your server using SSH credentials.
Step 2: List Installed Plugins #
- Run the following command to list all installed plugins:
bashCopy codewp plugin list
Step 3: Disable a Plugin #
- Use the following command to deactivate a specific plugin:
bashCopy codewp plugin deactivate plugin-name
Step 4: Disable All Plugins #
- To disable all plugins at once, use:
bashCopy codewp plugin deactivate --all
Additional Tips: #
- Create a Backup: Always back up your site before making changes to your files or database.
- Identify the Problem Plugin: After regaining access, re-enable plugins one by one to identify the source of the issue.
- Check Site Health: Use the Site Health tool in WordPress to monitor and address any potential issues.