Author Topic: SEF Problem  (Read 4976 times)

dominiosclave

  • Beginner
  • *
  • Posts: 12
SEF Problem
« on: December 19, 2011, 06:14:24 am »
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?

PRO

  • Global Moderator
  • Super Hero
  • *
  • Posts: 10440
  • VirtueMart Version: 3+
Re: SEF Problem
« Reply #1 on: December 22, 2011, 20:27:35 pm »
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

dominiosclave

  • Beginner
  • *
  • Posts: 12
Re: SEF Problem
« Reply #2 on: December 26, 2011, 23:47:00 pm »
Thanks