Page 269 of 506 FirstFirst ... 169219259267268269270271279319369 ... LastLast
Results 2,681 to 2,690 of 5054
  1. #2681
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Huhm, it doesnt work the way it should. More likely it doesnt load the product type correctly

    Just to make sure, I happen to have a site where I use another product type, here is the config of local.config.php

    PHP Code:
    <?php
        
        $ssuLocalConfig 
    = array(
            
    'plugins'        =>    array(
                                        
    'parsers'    =>    array('manufacturers')
                                    ),
            
    'identifiers'    =>    array(    'products'        =>    array(    'product_module_info'                    =>    'pm')),
            
    'languages'        =>    array(    'fr'    =>    'default',
                                        
    'ru'    =>    'ru',
                                        )
        );
    Notice the product type here is product_module_info, and I used pm for it.

    In your case, the link appears like that because the product type is not taken in correctly for some reason. I dont think version have anything to do with it, since this feature is available very early in SSU, but anyhow the latest is 3.6.6
    http://public.rubikintegration.com/

    Also, check to make sure if the local.config.php is read correctly, i guess 1 thing you can try is just siply die() in that script, then your site should not load at all. If it still loads, huhm, the file is not loaded correctly.
    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. #2682
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Simple SEO URL [support thread]

    Here is what I have

    Code:
    <?php
        
        $ssuLocalConfig = array(
            'plugins'        =>    array(
                                        'parsers'    =>    array('manufacturers')
                                    ),
            'identifiers'    =>    array(    'products'        =>    array(    'product_ring_info'                    =>    'pr')),
            'languages'        =>    array(    'default'    =>    'default',
                                        'en'    =>    'en',
                                        )
        );
    It is loading something because it removes the /product_ring_info/ from the url when I have the file uploaded.

    My most current version (I just checked is 3.6.1). I might have somebody who knows more than me take a look at it too.

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

    Default Re: Simple SEO URL [support thread]

    No, it doesnt remove, take a look at this link

    Code:
    http://www.ashadiamonds.com/product_ring_info/asha-rings-engagement-c-1_49/round-asha-antique-inspired-engagement-ring-p-425
    If you want, pm me the ftp info, i should be able to fix it in several mins for you

    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

  4. #2684
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi Yellow :)

    I have some products that have the word page in them, for example Melon Delight Page Kit

    The links are showing like this: /store/designers/shortcut-creations/melon-delightkit

    I understand, I think LOL, that it cuts out the page bit because of the auto-alias and some pages having page in it like Page 2, Page 3 etc, however I have those url's set in the manual alias feature and would really like the url's as above to have the whole product name in them as in /store/designers/shortcut-creations/melon-delight-page-kit ...any easy way around this?
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

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

    Default Re: Simple SEO URL [support thread]

    Okie, I get what you mean after reading it several times. There are 2 solutions for it.

    First:
    Manually goes into link alias manager and set the alias, you can also set the alias to permanent and it will not be altered.

    Second:
    we will mess with the config here, we will edit includes/classes/ssu/local.config.php

    PHP Code:
    <?php
        
        $ssuLocalConfig 
    = array(
            
    'identifiers'    =>    array(    'pages'        =>    'pages')
        );
    You can see in use "pages" instead of "page" here

    Either way, you will need to clear ssu cache after that.
    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

  6. #2686
    Join Date
    Oct 2007
    Location
    Australia
    Posts
    843
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    You are awesome! LOL thank you
    I went with messing with the config file and it worked perfectly lol
    HunnyBee Design
    "A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe

  7. #2687
    Join Date
    Sep 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello, I am using 3.6.6 (had the same problem with 3.6.4 but not with 3.5.x) and when a new category is added it gives me the following error:

    Fatal error: Class 'simple_seo_url' not found in /<edited url> /admin/categories.php on line 237


    For new products goes the same:
    Fatal error: Class 'simple_seo_url' not found in /<edited url> /admin/includes/modules/update_product.php on line 198

    Both the new category and product are added.
    Can someone please advise?

  8. #2688
    Join Date
    Oct 2006
    Posts
    225
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Just a quick question, will the old style links still work with this addon? I'm assuming that both the SEO friendly ones and the old links would both work and just want verification before I get into adding this to my site.
    Visit my Decal website: DecalDepot.net

  9. #2689
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by FSIT View Post
    Hello, I am using 3.6.6 (had the same problem with 3.6.4 but not with 3.5.x) and when a new category is added it gives me the following error:

    Fatal error: Class 'simple_seo_url' not found in /<edited url> /admin/categories.php on line 237


    For new products goes the same:
    Fatal error: Class 'simple_seo_url' not found in /<edited url> /admin/includes/modules/update_product.php on line 198

    Both the new category and product are added.
    Can someone please advise?
    I assume you put the additional code into these 2 files, this information was outdated. Please remove any additional ssu code you put in those 2 files

    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

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by dinki View Post
    Just a quick question, will the old style links still work with this addon? I'm assuming that both the SEO friendly ones and the old links would both work and just want verification before I get into adding this to my site.
    Old links will be redirected to new links.
    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