Page 130 of 506 FirstFirst ... 3080120128129130131132140180230 ... LastLast
Results 1,291 to 1,300 of 5054
  1. #1291
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Chris Rama View Post
    Some feedback on v.3.3.6

    After running on a test site for a while it seems that everything works for me. Still, "zenid" sometimes appears in the links(it is excluded in ssu settings). And product types didn't work for me originally - I had to manually edit products.php parcer to fix. Link alias - is the best software invention in human history ever!!! Thanks a lot, great feature indeed.

    After some testing, installed it on my live site. http://www.FramesCity.com No other problems found so far
    Zenid must be there in the first visit, so it is not really a bug.

    But product type not working is a bug, let me know what did you do to fix it.

    Regards
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  2. #1292
    Join Date
    Jun 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I have custom product types defined. In the old SSU there was init_ssu.php with this code:

    Code:
    	function simple_seo_url(){
    		// This is here to support multiple product types shorthand links
    		// if you want to add support for your custom type, first you have to go to your database and check table products_types
    		$this->products_handlers = array('1'=> 'product_info',
    										 '2'=> 'product_some_info',
    									  	 '3'=> 'product_some_other_info',
    									     '4'=> 'document_product_info',
    									  	 '5'=> 'product_free_shipping_info'
    									  	);
    		$this->products_identifiers = array('1'=> SSU_ID_DELIMITER.'p'.SSU_ID_DELIMITER,												
    									  		'2'=> SSU_ID_DELIMITER.'m'.SSU_ID_DELIMITER,
    									  		'3'=> SSU_ID_DELIMITER.'e'.SSU_ID_DELIMITER, 
    									 		'4'=> SSU_ID_DELIMITER.'d'.SSU_ID_DELIMITER, 
    									 		'5'=> SSU_ID_DELIMITER.'f'.SSU_ID_DELIMITER
    									  		);
    Editing this worked ok. The link contained a correct products_identifiers

    After upgrading to 3.3.6 editing this part of config.php:

    Code:
    'identifiers'	=>	array(	'products'		=>	array(	'product_info'					=>	'p',
    															'product_some_info'			=>	'e',
    															'product_some_other_info'			=>	'm',
    															'document_product_info'			=>	'd',
    															'product_free_shipping_info'	=>	'f',
    															'document_website_info'			=>	'w',
    didn't have any affect. 'p' kept appearing in all product links and product types were not switching. All product displayed under "product_info" type template. Maybe i missed something in the upgrade process, could be.

    I didn't go deep into figuring out how parsers work, but editing "getName" function in products.php helped my case. i replaced the "$identifiers[self::$main_page]" with a small "case ..." structure with correct identifiers. This is a weird way to fix this i guess

    Quote Originally Posted by yellow1912 View Post
    Zenid must be there in the first visit, so it is not really a bug.
    Got ya. I wasn't sure about the purpose of zenid.

  3. #1293
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    A bug it is, but the fix is much more simpler. I have updated the products.php parser for you here.

    I will also update SSU to add this fix. Thank you very much for letting me know the bug and the solution.

    PS: anyone who is using 3+ version is encouraged to upgrade to 3.3.7 to have the latest fixes, but some of these bugs wont affect your site unless:
    1. You are not using multi language mode(fixed in 3.3.6)
    2. You are not using any other product types (other that the default general one) (fixed in 3.3.7)

    @ Chris Rama: changing local.config.php will be better than changing the default config file btw. In later versions I will not include local.config.php in there so this file will not be overwriten when you upgrade.
    Attached Files Attached Files
    Last edited by yellow1912; 12 Nov 2008 at 08:42 PM.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #1294
    Join Date
    Jun 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    While torturing my test site, i've noticed another thing: Old SSU took care of inappropriate symvols when converting product name to url. If a product name contained commas, brackets and stuff like that, it ignored that in order to make clean url. The 3.3.x just passes that along into the link. Some sort of a bug too

  5. #1295
    Join Date
    Jun 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Also i had a test product with a blank name. in Old SSU the link looked like [category]/-p-[product_num] . The 3.3.x converts it differently [category]/product_name-p-[product_num]

  6. #1296
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Chris Rama View Post
    Also i had a test product with a blank name. in Old SSU the link looked like [category]/-p-[product_num] . The 3.3.x converts it differently [category]/product_name-p-[product_num]
    This is a more appropriate way to handle it (from my pov), instead of leaving a blank field there.
    SSU 3+ leaves much parsing job in your hand (since removing non alphanumeric characters can destroy the names of those sites that use multi-lang names). But I will make sure those names are handled more properly in the future.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  7. #1297
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    This is the old-style link:
    http://site.com/this-is-a-cat-c-1/great-product-p-1

    This is the alias:
    http://site.com/this-is-a-cat/great-product

    Or it can even be this:
    http://site.com/october-promotion


    I will have to come up with a solution, somehow. All suggestions are welcome.

    Raine

    Hi Yellow...

    I've just added this mod to my test site and configured..

    Just a question
    I take it from your post (as quoted above) that the product ID still has to reside in the link until you can find a fix ?

    Great work btw..

  8. #1298
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    No, it doesnt have to be in the links (Assuming you are using 3.3.7)

    You can use link-alias to do that. The only drawback is that you have to do it manually for each link.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  9. #1299
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    No, it doesnt have to be in the links (Assuming you are using 3.3.7)

    You can use link-alias to do that. The only drawback is that you have to do it manually for each link.
    Ouch.. that could take a while, I have 400+ products... they might have to stay there !!!!

  10. #1300
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    The id in the categories can go away if you want to, assuming you dont have too many categories.

    An automate process is planned for future release.

    BTW, I meant to say "manually for each name", not link. Watch the link-alias video tutorial and you will understand.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR