Page 236 of 291 FirstFirst ... 136186226234235236237238246286 ... LastLast
Results 2,351 to 2,360 of 2907
  1. #2351
    Join Date
    Jun 2010
    Posts
    207
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    It's definitely not the module, it doesn't change the content of your href tags other than to change the URI generated. It sounds like you've accidentally broken some link code in a template file. Check to see if one of yotu template files has something like the following in it:

    PHP Code:
    <?php echo zen_href_link(...) . ' class="
    insetad of something like

    PHP Code:
    <?php echo zen_href_link(...) . '" class="
    This would cause "class =" to be added to the end of the URIs.

    Good luck in getting this sorted!

    All the best...

    Conor
    ceon


    Conor,

    Thank you for your insight. I have begun my search for the offending code. Nothing yet, but hopefully soon...

    If/when a solution is found, I will post it here just in case anyone else comes across the same issue in the future.

    Thanks again!

  2. #2352
    Join Date
    Jun 2010
    Posts
    207
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by hockey2112 View Post
    Conor,

    Thank you for your insight. I have begun my search for the offending code. Nothing yet, but hopefully soon...

    If/when a solution is found, I will post it here just in case anyone else comes across the same issue in the future.

    Thanks again!


    The issue was related to an attempt I made to highlight the link for the "current" EZ Page. I reverted the file in question (ezpages_bar_header.php) and the problem is now resolved.

    Many thanks to gjh42 for pointing this issue out in another thread.

  3. #2353
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi

    I have Ceon URI Mapping mod installed. There are some links on my sites I want to apply rel="nofollow". Will that be possible even though the urls are re-written?

    thanks

  4. #2354
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by buildingblocks View Post
    I have Ceon URI Mapping mod installed. There are some links on my sites I want to apply rel="nofollow". Will that be possible even though the urls are re-written?
    Yes, the software doesn't change the way the HTML works in the background, you can make any changes like this that you desire!

    All the best..

    Conor
    ceon

  5. #2355
    Join Date
    Feb 2010
    Posts
    23
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I'm in the process of updating our shopping cart and eventually adding the URI Mapping. I just updated to 1.3.9h and installed the 1.3.9d version of Ceon URI mapping which was suggested for "h". The part I think I'm stuck on is the .htaccess file. I'm trying it out first on my "test" installation, so it's located in a folder called "zen" and my admin file is "adminTVC". Here is my .htaccess file:

    Code:
    #
    # @copyright Copyright 2003-2010 Zen Cart Development Team
    # @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    # @version $Id: .htaccess 16111 2010-04-29 22:39:02Z drbyte $
    #
    # This is used with Apache WebServers
    #
    # The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain 
    
    approved exceptions
    # It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can 
    
    normally be executed if ExecCGI is disabled.
    # Will also prevent people from seeing what is in the dir. and any sub-directories
    #
    # For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the 
    
    AllowOverride configuration in your apache/conf/httpd.conf file.
    # Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to 
    
    add 'Options' to the AllowOverride list, if 'All' is not specified. 
    # Example:
    #<Directory "/usr/local/apache/htdocs">
    #  AllowOverride Limit Options Indexes
    #</Directory>
    ###############################
    DirectoryIndex index.php
    
    # deny *everything*
    <FilesMatch ".*\..*">
      Order Allow,Deny
      Deny from all
    </FilesMatch>
    
    # but now allow just *certain* necessary files:
    <FilesMatch "(^$|^favicon.ico$|.*\.(php|js|css|jpg|gif|png)$)">
      Order Allow,Deny
      Allow from all
    </FilesMatch>
    
    
    IndexIgnore */*
    
    
    # The following makes adjustments to the SSL protocol for Internet Explorer browsers
    <IfModule mod_setenvif.c>
      <IfDefine SSL>
        SetEnvIf User-Agent ".*MSIE.*" \
                 nokeepalive ssl-unclean-shutdown \
                 downgrade-1.0 force-response-1.0
      </IfDefine>
    </IfModule>
    
    # Fix certain PHP values
    
    #<IfModule mod_php4.c>
    #  php_value session.use_trans_sid 0
    #  php_value register_globals 1
    #</IfModule>
    
    # to turn off register_globals
    # php_value register_globals 0
    
    #turn off X-PHP-Originating-Script header when sending emails from admin
    #uncomment to activate:
    # php_flag mail.add_x_header Off
    
    RewriteEngine On
    
    # ONLY rewrite URIs beginning with /shop/
    RewriteCond %{REQUEST_URI} ^/zen/ [NC]
    # Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
    RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/zen/adminTVC [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/zen/editors [NC]
    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/cpanel [NC]
    RewriteCond %{REQUEST_URI} !/frontend [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule .* /zen/index.php?%{QUERY_STRING} [L]
    I can't figure out how to overcome the 404 error I'm getting on all pages. Any suggestions?

  6. #2356
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by akabin View Post
    I'm in the process of updating our shopping cart and eventually adding the URI Mapping. I just updated to 1.3.9h and installed the 1.3.9d version of Ceon URI mapping which was suggested for "h". The part I think I'm stuck on is the .htaccess file. I'm trying it out first on my "test" installation, so it's located in a folder called "zen" and my admin file is "adminTVC". Here is my .htaccess file:
    Two things.

    First, you shouldn't install Ceon URI Mapping on a "test" site that's in a subfolder.

    You must instead set up a test site or a test subdomain.

    E..g yourtestsite.yourdomain.com

    Otherwise when you change the test site to be the real site you will have to enter/generate ALL your URI mappings again. Every single one!

    Second, you have to create a .htaccess file in the shop's main directory or add the rule to any existing .htaccess file in the shop's main directory. You do NOT add the rule to the .htaccess file in the admin folder.

    All the best..

    Conor
    ceon

  7. #2357
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi,
    I have a strange problem.
    I had Ceon URI installed and working perfectly.
    After that I had to change some files in order to adequate the functionality to the Italian version and I overwrote the italian version of the admin and includes folders and everyting was working fine.
    After that I noticed that obviously the automatic creation of the url was not working anymore but the simplyfied urls were still there.
    I then reinstalled the Ceon URI software version 3.80 but nothing changed. The page were you insert the product has not the checkbox to ask the software to create the simplyfied url neither the field proposing the url is shown.
    I can not understand why CEON URI it is not working now.
    The db was not touched and both the configure and module section of the admin page are there and seems to work.
    I think there is a file that it is not in the right place or that is ovverridden by the italian version, but I do not have idea of which file I shoud look for.
    Can you help me?
    Thanks

    enzo

  8. #2358
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi Enzo,

    Quote Originally Posted by enzo-ita View Post
    I overwrote the italian version of the admin and includes folders
    The is no Italian version of the admin folders. You can create an Italian version of the *language* files but not any other type of file.

    Quote Originally Posted by enzo-ita View Post
    The page were you insert the product has not the checkbox to ask the software to create the simplyfied url neither the field proposing the url is shown.
    Then, simply the software hasn't been installed properly. You haven't applied the core file changes.

    Once you do that the functionality will return.

    All the best..

    Conor
    ceon

  9. #2359
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Welllllllllll
    I can not belive it, but I have been so stupid to not do the installation completely.
    What is worse is that I was convinced to have done all the installation process carefully.
    May be I am getting too old for these things.
    However...you were right, now it works like before.
    Thanks
    enzo

  10. #2360
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi enzo,

    Quote Originally Posted by enzo-ita View Post
    I can not belive it, but I have been so stupid to not do the installation completely.
    What is worse is that I was convinced to have done all the installation process carefully.
    May be I am getting too old for these things.
    However...you were right, now it works like before.
    It's easily done! Sometimes I write Zen Cart support emails in my head and then forget that I didn't actually write the email in real life and the person the contacts me reminding me to get back to them! :)

    Glad everything's sorted now.

    All the best...

    Conor
    ceon

 

 

Similar Threads

  1. 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
  2. Ceon uri mapping vs Simple SEO
    By crixus in forum General Questions
    Replies: 0
    Last Post: 28 Feb 2014, 04:41 AM
  3. v151 Ceon URI Mapping (SEO) Issues?
    By yisou in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Jul 2013, 12:06 PM
  4. v151 Ceon URI Mapping (SEO) installation problem.
    By jmac2020 in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2012, 01:06 PM
  5. Ceon URI Mapping (SEO) How to install?
    By jackfitz in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 12:09 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