Setting MageBridge offline through the database
The MageBridge extensions offer you a lot of different solutions, but sometimes you might make a mistake that renders your entire Joomla! site offline. You might be locked out of your Joomla! Administrator, or the entire Joomla! Administrator might be even unavailable. By setting MageBridge offline through the database, you might be able to restore your access to the Joomla! Administrator.
Setting the MageBridge component offline
There are numerous MageBridge plugins that might block your access to the Joomla! Administrator. But all of these plugins actually can be taken offline, when the bridge is set offline manually. This might save you time troubleshooting things. For instance, if you have configured MageBridge to authenticate backend users, while this does not work, this is a good solution for getting back in.
To modify the database, open up your database management tool (phpMyAdmin, the MySQL Administrator or perhaps the mysql command-line client), next open up your Joomla! database and execute the following query:
UPDATE `jos_magebridge_config` SET `value`=1 WHERE `name`='offline'
Note that you might need to change the jos_ table prefix depending on your database settings.
Unpublishing MageBridge plugins
If the problem is not that MageBridge functionality has stopped working, but that the actual MageBridge code is causing problems, a more rigorous step is to disable all MageBridge plugins in Joomla!. To do this, you will need the following MySQL query under Joomla! 1.6 or higher:
UPDATE `jos_extensions` SET `enabled`=0 WHERE `type` = 'plugin' AND `name` LIKE '%magebridge%'
Under Joomla! 1.5 you can use the following MySQL query:
UPDATE `jos_plugins` SET `published`=0 WHERE `element` LIKE '%magebridge%'
If this does not solve your problems, just post your question on the forums.
Created on Monday, 05 September 2011Modified on Monday, 05 September 2011
More tutorials in this section
- Setting the MageBridge URLs in Magento
- Disabling user synchronization in MageBridge
- Importing and exporting users
- Using the MageBridgeLinks/JCE-plugin
- Best practices with MageBridge
- Using MageBridge Product Connectors
- Migrating users between Joomla! and Magento
- Using MageBridge stores to load a different Magento theme
- Using the MageBridge Content Plugin
- MageBridge SEO Guide
- Removing MageBridge
- Step-by-step: Adding a custom Magento block
- Managing MageBridge extensions
- How to use URL-suffices with MageBridge?
- Step-by-step: Create a Magento API user
- Step-by-step: Activating MageBridge plugins
- Step-by-step: Creating a MageBridge Menu-Item
- API permissions with MageBridge
- Configuring payment methods in MageBridge
- Using MageBridge modules
- Authentication guide for MageBridge
- Working with MageBridge URL Replacements
- Handling Downloadable Products in MageBridge
- Handling file uploads in MageBridge
- Configuring the MageBridge Root Menu-Item
- Setting MageBridge offline through the database
- How Joomla! works with MageBridge URLs
- Migrating MageBridge from Joomla! 1.5 to Joomla! 2.5
- Using the MageBridge System Plugin
