Hi
That's pretty normal, because you didn't set path to your store.
Please open this file ../administrator/components/com_virtuemart/virtuemart.cfg.php and find this fragment:
- Code: Select all
// these path and url definitions here are based on the Joomla! Configuration
define( 'URL', '' );
define( 'SECUREURL', '' );
and add you path or url of your website where you have VM installed. Something like this:
- Code: Select all
// these path and url definitions here are based on the Joomla! Configuration
define( 'URL', 'http://www.yourwebsite.com/' );
define( 'SECUREURL', 'http://www.yourwebsite.com/' );
Cheers