Problem: Just now, I needed to move a website running Joomla 1.5 and VirtueMart 1.1.2 from the development server, to the live web space. After I had moved the data, and the files, and updated the path in Joomla’s ‘configuration.php’ file, it seemed to work ok, but all the links in the VirtueMart Admin area still pointed to my development server.
Fix: After doing a ‘find in files’ for my development server’s name, I found two more paths that need changing in VirtueMart’s own configuration file. This is the file:
/administrator/components/com_virtuemart/virtuemart.cfg.php
The following two paths need editing to point to the new server location (URL):
35 36 | define( 'URL', 'http://my.devserver.com/joomla/' ); define( 'SECUREURL', 'https://secure.devserver.com/joomla/' ); |
A simple fix, but probably worth posting.
Thank you, this helped!