Reputation: 1410
I am working with an existing magento instance and somewhere in the code there is this:
$url = Mage::getStoreConfig('companyname/joomlapath/url');
What I'm trying to do is change the value of this variable. I searched the entire code for "joomlapath" but there doesn't seem to be a definition anywhere. And I search the backend, but I seem to be too stupid to find this.
Any hints where I might be able to change this value? Thanks in advance!
Upvotes: 0
Views: 1811
Reputation: 2762
login to admin panel
go to system -> configuration
in side bar check the extension configuration
there you will find the field with name url or something similar. change that field values.
second solution got to your database
find table core_config_data
and search companyname/joomlapath/url
in path column
Upvotes: 1
Reputation: 1388
Hope this helps you!
Upvotes: 1