VirtueMart Forum

VirtueMart 2 + 3 + 4 => Security (https) / Performance / SEO, SEF, URLs => Topic started by: MKI-Miro on May 23, 2020, 22:43:37 PM

Title: Export product urls (alias)
Post by: MKI-Miro on May 23, 2020, 22:43:37 PM
Hi

I need to export URL links (alias-links) for products like

product_id, product_url

Is there any sql query for it?

Thanks
Title: Re: Export product urls (alias)
Post by: GJC Web Design on May 23, 2020, 23:17:24 PM
no -- they are never stored -
Title: Re: Export product urls (alias)
Post by: Studio 42 on May 24, 2020, 11:12:05 AM
You need to use the router to generate it.
JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id);
Title: Re: Export product urls (alias)
Post by: MKI-Miro on May 25, 2020, 09:26:27 AM
so not possible to construct it with SQL query?

thanks
Title: Re: Export product urls (alias)
Post by: Studio 42 on May 26, 2020, 14:42:01 PM
If it was possible, i had give the solution
Title: Re: Export product urls (alias)
Post by: GJC Web Design on May 27, 2020, 00:03:58 AM
you would need to code a small script that is in the Joomla namespace to use the router

get the pids, form the url and render it thru the router and record
Title: Re: Export product urls (alias)
Post by: MKI-Miro on June 10, 2020, 12:39:21 PM
Quote from: Studio 42 on May 24, 2020, 11:12:05 AM
You need to use the router to generate it.
JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id);

not working it outputs non sef urls, seems like it is missing something
Title: Re: Export product urls (alias)
Post by: GJC Web Design on June 10, 2020, 14:23:22 PM
the &Itemid={vm root menu}
Title: Re: Export product urls (alias)
Post by: MKI-Miro on June 10, 2020, 15:37:24 PM
thank you but it is still generating non sef url  :(

index.php?option=com_virtuemart&view=productdetails&Itemid=1912&virtuemart_product_id=9220
Title: Re: Export product urls (alias)
Post by: PRO on June 12, 2020, 15:36:07 PM
Do you have csvimproved?
Title: Re: Export product urls (alias)
Post by: pinochico on June 12, 2020, 15:56:48 PM
Do you have easyfeeder?
Title: Re: Export product urls (alias)
Post by: Jörgen on June 12, 2020, 16:46:15 PM
Perhaps a silly question, Do You have search friendly URL turned on in Joomla and in VM ?

Jörgen @ Kreativ Fotografi
Title: Re: Export product urls (alias)
Post by: Studio 42 on June 14, 2020, 12:16:13 PM
Do you run your PHP in admin ?
To get SEF url you need to do it in front side.