Jump to content

latest cubecart and seo mod


Guest peanutp

Recommended Posts

Guest peanutp

Hello - Has anyone had any issues with upgrading cubecart and the SEO mod. I did a manual upgrade today and now my SEO mod is not working. Site still up and running, but has now reverted to the old urls, rather than the nice seo friendly ones.

cheers

Peter.

Link to comment
Share on other sites

Hello - Has anyone had any issues with upgrading cubecart and the SEO mod. I did a manual upgrade today and now my SEO mod is not working. Site still up and running, but has now reverted to the old urls, rather than the nice seo friendly ones.

cheers

Peter.

i think brooky updated the template engine.

open

classes/xtpl.php

find something like this

function out ($bname) {



	$out = $this->text($bname);




and replace with




	function out ($bname) {

	

	/* <rf> search engine friendly mod */

	global $glob, $config;	

	include_once($glob['rootDir']."/includes/sef_urls.inc.php");	

	$out = $this->text($bname);

	$out = sef_rewrite_urls($out);	

	/* <rf> end mod */

i just did a fresh install from 3.0.13 with the 3.0.12 seo mod. that was the one bit i had to get creative with.

Link to comment
Share on other sites

Guest peanutp

Hello - Has anyone had any issues with upgrading cubecart and the SEO mod. I did a manual upgrade today and now my SEO mod is not working. Site still up and running, but has now reverted to the old urls, rather than the nice seo friendly ones.

cheers

Peter.

i think brooky updated the template engine.

open

classes/xtpl.php

find something like this

function out ($bname) {



	$out = $this->text($bname);




and replace with




	function out ($bname) {

	

	/* <rf> search engine friendly mod */

	global $glob, $config;	

	include_once($glob['rootDir']."/includes/sef_urls.inc.php");	

	$out = $this->text($bname);

	$out = sef_rewrite_urls($out);	

	/* <rf> end mod */

i just did a fresh install from 3.0.13 with the 3.0.12 seo mod. that was the one bit i had to get creative with.

Thank you very much for the help, has worked a treat :-)

Link to comment
Share on other sites

  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...