Page 197 of 506 FirstFirst ... 97147187195196197198199207247297 ... LastLast
Results 1,961 to 1,970 of 5054
  1. #1961
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Glamorousshoe View Post
    Is it possible to add a new ID delimiter? For example "/" I want to add that between the categories.
    No, unless you use link alias. Please check my post just above, also if you want, play with 3.6.0RC2

    Demo for RC2:
    http://demo.rubikintegration.com/ssu/
    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. #1962
    Join Date
    Dec 2008
    Location
    USA
    Posts
    64
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Demystifying Duplicate Content Penalty

    This is a must read for anyone thinking about SEO and is worried about duplicate content.

    http://googlewebmastercentral.blogsp...t-penalty.html

    Thank you very much yellow1912. With your help all of us using simple SEO URL will benefit a lot.


    Sri

    Fitness Equipment Store

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

    Default Re: Simple SEO URL [support thread]

    3.6.0 RC 3 which is considered Stable is now available

    If you are using 3.5.8 and currently happy with it, no need to upgrade for now. If you are using any 3.x version less than 3.5.8, please consider upgrading to 3.5.8 asap, many bugs have been fixed.
    http://wiki.rubikintegration.com/zen.../ssu/changelog

    Auto Alias and Category Separator

    Version 3.6.0 comes with a new feature called "Auto Alias", which will automatically remove all identifiers from your links.
    It also let you set the "separator" between category names when link alias is on and auto alias is on ("/" can be used)
    A very good example is
    Code:
    http://demo.rubikintegration.com/ssu/dvd-movies/action/speed-2-cruise-control
    You will see that "dvd-movies" is the parent category, "action" is the sub category and "speed-2-cruise-control" is the product.

    Please note that the link above is possible in older version as well, it's just that you have to do it manually by adding link aliases. Now it can be done automatically.

    Improved Link Alias Manager

    SSU now uses jquery grid to provide a totally new manager with pagination (which will help alot if you have thousands of aliaes), sorting, and searching.

    Optimized caching

    SSU used to store thousands of cache files in the same folder, this can slow down the file retrieval speed. Now the files are put randomly into multiple folders.


    If you want to upgrade, make sure you read:
    http://wiki.rubikintegration.com/zen...es/ssu/upgrade
    AND
    http://wiki.rubikintegration.com/zen...ers/link_alias
    Last edited by yellow1912; 25 Jan 2009 at 06:02 AM.
    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. #1964
    Join Date
    Aug 2006
    Posts
    36
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Well I just installed the new RC and its works well.

    But there is one slight problem.

    I have a static page (index.html) for the website with the store loading on index.php. This allows us to work on the site behind the scenes.

    However with the new version I'm finding that calls to siteurl/index.php are getting turned into calls to siteurl/ which of course loads my static page.

  5. #1965
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I've installed RC3. I'm now getting the following error in the admin site when going to admin -> Extras -> Simple SEO URL Manager :
    Code:
    Warning: Invalid argument supplied for foreach() in /home/splatcoo/public_html/store/includes/init_includes/init_ssu.php on line 11
    Any ideas?

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by pglock View Post
    I've installed RC3. I'm now getting the following error in the admin site when going to admin -> Extras -> Simple SEO URL Manager :
    Code:
    Warning: Invalid argument supplied for foreach() in /home/splatcoo/public_html/store/includes/init_includes/init_ssu.php on line 11
    Any ideas?
    As of the new version, the local config file is not there by default as to not overwrite your local config file. But if you dont have any local config file, then the foreach loop may give a warning. It is not a big deal, but I will add a check to avoid this.
    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. #1967
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Steve_A View Post
    Well I just installed the new RC and its works well.

    But there is one slight problem.

    I have a static page (index.html) for the website with the store loading on index.php. This allows us to work on the site behind the scenes.

    However with the new version I'm finding that calls to siteurl/index.php are getting turned into calls to siteurl/ which of course loads my static page.
    Interesting, I never thought of it. The reason it redirects to index.php was that I want to make sure all the inbound links will point to the same link and help the page rank.

    Obviously in your case you dont want it happens that way. I will check to see how we can get around that for your specific case.

    Lets try this
    Edit includes/classes/ssu/cores/link.php

    Find this line
    Code:
    if((strpos($this->original_uri, 'index.php') !== false)){
    Add right below it

    Code:
    if((strpos($this->original_uri, '?') === false))
    return false;
    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

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

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    As of the new version, the local config file is not there by default as to not overwrite your local config file. But if you dont have any local config file, then the foreach loop may give a warning. It is not a big deal, but I will add a check to avoid this.
    Try to replace the content of init_ssu.php by:
    PHP Code:
    <?php
        
    // load the default config file
        
    require (DIR_FS_CATALOG.DIR_WS_CLASSES.'ssu/config.php');    
        
        
    // load the config class
        
    require (DIR_FS_CATALOG.DIR_WS_CLASSES.'ssu/core.php');    
        
        if(
    file_exists(DIR_FS_CATALOG.DIR_WS_CLASSES.'ssu/local.config.php')){
            require (
    DIR_FS_CATALOG.DIR_WS_CLASSES.'ssu/local.config.php');    
            
            foreach (
    $ssuLocalConfig as $key => $config)
                foreach (
    $config as $subKey => $subConfig)
                    if(!
    is_array($subConfig))
                        
    $ssuConfig[$key][$subKey] = $ssuLocalConfig[$key][$subKey];
                    else
                        
    $ssuConfig[$key][$subKey] = array_merge($ssuConfig[$key][$subKey], $ssuLocalConfig[$key][$subKey]);
        }
        
        
    SSUConfig::init($ssuConfig);
        
        
    // load the core classes
        
    foreach(SSUConfig::registry('cores') as $class)
            require(
    SSUConfig::registry('paths''cores')."{$class}.php");    
        
        
    // set identifiers
        
    foreach(SSUConfig::registry('identifiers') as $key => $identifier){
            if(
    is_array($identifier))
                foreach(
    $identifier as $sub_key => $sub_identifier)
                    
    $identifiers[$sub_key] = SSU_ID_DELIMITER.$sub_identifier.SSU_ID_DELIMITER;
            else
                
    $identifiers SSU_ID_DELIMITER.$identifier.SSU_ID_DELIMITER;
            
    SSUConfig::register('identifiers'$key$identifiers);
        }
        
        
    // init plugins
        
    foreach(SSUConfig::registry('plugins') as $className => $classArray){
            foreach(
    $classArray as $plugin){
                require(
    SSUConfig::registry('paths''plugins')."$className/{$plugin}.php");    
            }
        }

        
    // init alias
        
    if(SSUConfig::registry('alias_status'))                
            
    SSUAlias::retrieveAliases();
    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. #1969
    Join Date
    Aug 2006
    Posts
    36
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks for that, it fixed it and it seems to work now!!

    Is there any easy way of getting rid of the -c-1_3 part of the category link. I understand that it means that identical category/subcat structures are different but they look a bit odd
    Last edited by Steve_A; 25 Jan 2009 at 08:10 PM.

  10. #1970
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    putting a dummy local.config.php file gets rid of the warning. Changing the init_ssu.php doesn't (though it looks like it should).

    One other hint. My site can be reached by two urls: http://www.splatcooking.net/store/ or http://store.splatcooking.net I've modified the .htaccess to check for which uri was used so that redirects are only applied to store.splatcooking .net. here's the revised .htaccess:

    Code:
    #### BOF SSU 
    Options +FollowSymLinks -MultiViews 
    RewriteEngine On 
    RewriteBase /store/ 
    
    # Deny access from .htaccess 
    RewriteRule ^\.htaccess$ - [F] 
    
    RewriteCond %{SCRIPT_FILENAME} !-f 
    RewriteCond %{SCRIPT_FILENAME} !-d 
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA] 
    
    # STRIP THE REWRITEBASE RULE FROM NON-SSL CONNECTIONS. 
    RewriteCond %{SERVER_PORT} 80 
    RewriteCond %{HTTP_HOST} store.splatcooking.net 
    RewriteCond %{REQUEST_URI} ^/store/ 
    RewriteRule ^(.*) /index.php?/$1 [E=VAR1:$1,QSA,L] 
    #### EOF SSU
    Note the HTTP_HOST condition.

 

 

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