Page 259 of 291 FirstFirst ... 159209249257258259260261269 ... LastLast
Results 2,581 to 2,590 of 2907
  1. #2581
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi,
    I did a search but I am not sure if I what I found answers my question/problem.
    I have Ceon working perfectly also with ezpages on a single language site.
    Now I am creating a new site which will be bilingual.
    Ezpages cna not be created as standard in two languages so I found the mod that do that.
    I installed it and it overwrote the ceon ezpages module so the thick this box desappeared.
    Returned to the original ceon core file and no problembut no miltilanguage function.
    I tryed to mix up the two ezpage files, adding the mods present in the ceon one to the one for multilanguage, but it did not work.
    Is it possible to have ezpages with multilanguage function and ceon uri alltogether?
    Thanks
    enzo

  2. #2582
    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
    Is it possible to have ezpages with multilanguage function and ceon uri alltogether?
    Yes, but it requires custom coding to merge the URI Mapping modifications with the Mutli-lang modifications for the EZ-pages.

    I'm afraid there's no support for this as standard with the module.

    All the best..

    Conor
    ceon

  3. #2583
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    application error Re: Ceon URI Mapping (SEO)

    Hi Conor & you all

    I'm having problems with this mod in the db (ceon_uri_mappings table) I can see that it generates mapings for cat/prod I edited. But on the website links are still zenCart standard plus standard links are not working I get 404 erorr

    I'm on 1.3.9h and I'v used 1.3.9d for merging (WinMerge) with my store files (ImageHandler v2.0 , ZenLightBox v1.6.2 , EasyPopulate_v1.2.5.6 & include_and_exclude_tax_in_prices_nettgross_1-23a adds instaled before)

    .htaccess file is as folows
    ---------------------------------------------------------------------
    Options +FollowSymLinks

    RewriteEngine On

    # ONLY rewrite URIs beginning with /test/
    RewriteCond %{REQUEST_URI} ^/test/ [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} !^/test/MyAdminFolder [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/test/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 .* /test/index.php?%{QUERY_STRING} [L]

    ---------------------------------------------------------------------

    appreciate any help
    Jacob

  4. #2584
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    oh my site is
    alarmy-e.nazwa.pl/test/

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

    Default Re: Ceon URI Mapping (SEO)

    Hi Jacob,

    Quote Originally Posted by alarmy-e.pl View Post
    # ONLY rewrite URIs beginning with /test/
    RewriteCond %{REQUEST_URI} ^/test/ [NC]
    You CAN'T use a test folder for a URI Mapped site.. as soon as you move from /test to / all of your URIs will be broken.

    You should set up a test site using a subdomain only, never a folder on the main site.

    Quote Originally Posted by alarmy-e.pl View Post
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule .* /test/index.php?%{QUERY_STRING} [L]
    This is wrong, if the .htaccess file is /.htaccess then the slash at the start breaks it (/test/index.php should be test/index.php). If the .htaccess file is /test/.htaccess then you should have index.php (not /test/ or test/).

    As for why your links are using old Zen Cart links, that's a common problem.. you forgot to modify includes/functions/html_output.php

    All the best..

    Conor
    ceon

  6. #2586
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    thanks Conor for your reply

    But it did not help. I moved test store to a sub domain as you said now it's under http://test.alarmy-e.pl chacked includes/functions/html_output.php and WinMerge claims it's identical to file downloaded with Ceon URi also changed .htaccess to

    -----------------------------------------------------------------------
    Options +FollowSymLinks

    RewriteEngine On


    # 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} !^/moscicki [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/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 .* index.php?%{QUERY_STRING} [L]

    -----------------------------------------------------------------------

    I wonder shoulden't there be a an optnion to turn URi of in the config admin section?

    Thanks again
    Jacob

  7. #2587
    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 alarmy-e.pl View Post
    But it did not help. I moved test store to a sub domain as you said now it's under http://test.alarmy-e.pl


    That's good, best way to work! :)

    Quote Originally Posted by alarmy-e.pl View Post
    chacked includes/functions/html_output.php and WinMerge claims it's identical to file downloaded with Ceon URi also changed .htaccess to
    Quote Originally Posted by alarmy-e.pl View Post
    I wonder shoulden't there be a an optnion to turn URi of in the config admin section?
    Yes, if that's not there it won't work.

    Send me FTP and admin details and I'll take a look.

    All the best..

    Conor
    ceon

  8. #2588

    Default Re: Ceon URI Mapping (SEO)

    Just thought I'd come back and let you know I've found a fix to the problem I was having where the cPath extension was incorrectly appended to the end of the URIs.

    As Conor said, it is nothing to do with the URI mapping module, it's a problem in the zen_get_product_path function.

    The code to fix is here:
    http://www.zen-cart.com/forum/showth...aster+category

    Hope this helps!

  9. #2589
    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 damiantaylor View Post
    Just thought I'd come back and let you know I've found a fix to the problem I was having where the cPath extension was incorrectly appended to the end of the URIs.

    As Conor said, it is nothing to do with the URI mapping module, it's a problem in the zen_get_product_path function.

    The code to fix is here:
    http://www.zen-cart.com/forum/showth...aster+category

    Hope this helps!
    Yes, thanks that was interesting.. a silly Zen Cart bug, surprised it's only fixed in 1.4.0 and not in 1.3.9.. at least we know what to say if anyone else has the same problem!

    All the best..

    Conor
    ceon

  10. #2590
    Join Date
    Aug 2009
    Location
    UK
    Posts
    71
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi there

    I am just testing a build for 1.3.9h before migrating some sites.
    The url is http://www.klasicke-kristalove-lustry.cz/
    Unfortunately when you login from the home page then it returns a 404 error!!. This does not happen when I turn off the CEON url rewrite!!

    Any idea what the problem is?

    This is the htaccess

    RewriteEngine On

    RewriteCond %{HTTP_HOST} ^klasicke-kristalove-lustry.cz [NC]

    RewriteRule ^(.*)$ http://www.klasicke-kristalove-lustry.cz/$1 [L,R=301]


    # 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} !^/piperoom [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/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 .* index.php?%{QUERY_STRING} [L]

    many thanks
    Paul

 

 

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