Hello,
When active sef url in joomla and vm, at joomla work good, put dash - in spaces, but at vm the urls show with space %20.
I try set diferent config and change values at .htaccess but nothing.
Where could be the problem?
are there spaces in the "slug" ?
You can do an update statement in mysql to change the space to -
update jos_virtuemart_products_en_gb set slug = replace(slug,' ', '-');
_en_gb if for the language. So if you are using a different language make sure you do the right one
Thanks