Page 134 of 291 FirstFirst ... 3484124132133134135136144184234 ... LastLast
Results 1,331 to 1,340 of 2907
  1. #1331
    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 nidkolio View Post
    First of all i want to thank you for this beautiful module!
    I'm glad you like it!

    Quote Originally Posted by nidkolio View Post
    I have trouble with auto generation of the url's.
    My site is using Cyrillic characters, and they are converted to Latin for this url. Every time Cyrillic letter "е" is changed with Latin "ie".
    I just want to be changed with Latin "e".
    Can someone tell me where i need to change this rule?
    The transliteration is based in part on a library from Drupal.

    I found the following thread which is related to what you want to do:

    http://drupal.org/node/294273


    The file you will be looking to change is:

    admin\includes\classes\transliteration\x04.php

    I'm afraid that's all I know (and it took me a week to learn what I know about transliteration and build that into the module as it is!).. I don't know "which" 'ie' to change.. hopefully the above information is enough for you to work things out.

    All the best..

    Conor
    ceon

  2. #1332

    Default Re: Ceon URI Mapping (SEO)

    Conor thank you for your answer!
    This information is enough, i will start digging now.
    One again thanks .

  3. #1333
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by jill8026 View Post
    Conor,

    Just an FYI Raine did find the problem and it i was a conflict with the includes/init_includes/init_ceon_uri_mapping.php file. She edited one of the lines in that file and now the search feature works.

    Just thought you should know...I know you are not responsible for making your mod work with other mod's but thought you would like to know in case this comes up again.

    Jill
    Care to share the details of the fix???? Would help others who are considering using this same search app..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #1334

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    I'm glad you like it!



    The transliteration is based in part on a library from Drupal.

    I found the following thread which is related to what you want to do:

    http://drupal.org/node/294273


    The file you will be looking to change is:

    admin\includes\classes\transliteration\x04.php

    I'm afraid that's all I know (and it took me a week to learn what I know about transliteration and build that into the module as it is!).. I don't know "which" 'ie' to change.. hopefully the above information is enough for you to work things out.

    All the best..

    Conor
    ceon
    Hi again..
    Just wanted to say that this file is the key
    It works
    Thank you once again!

  5. #1335
    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 DivaVocals View Post
    Care to share the details of the fix???? Would help others who are considering using this same search app..
    I've asked her privately to send me an e-mail.. hopefully she does. I still don't see how URI Mapping could ever interfere with any other software so I'm curious as to what happened with the other module!

    All the best..

    Conor
    ceon

  6. #1336
    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 nidkolio View Post
    Hi again..
    Just wanted to say that this file is the key
    It works
    Thank you once again!
    No problem.. glad you like the software and that the work done on the transliteration support was worthwhile!

    All the best..

    Conor
    ceon

  7. #1337
    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 Terra1069 View Post
    Thank you so much! It is beautiful! Bravo Bravo!!
    Glad you like the software!

    Quote Originally Posted by Terra1069 View Post
    My .htaccess file was not working when I edited it in Notepad ++, but when I added the exact same text using basic Notepad it worked fine.

    This is the second time I've encountered this problem while adding mods. Just a note, hopefully it is helpful for some!
    That sounds like an encoding/charset issue.. you might want to check what character set your copy of Notepad ++ uses.

    If you're interested, the best editor I've ever seen (And which I use daily) is Komodo IDE and the handiest lightweight editor is notepad 2.

    Hope that helps!

    All the best...

    Conor
    ceon

  8. #1338
    Join Date
    Jun 2008
    Posts
    32
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hey Guys,
    Im not sure what Im doing wrong here, but I cant get this to work.
    I've installed the files, and cant find anything that Im missing, but when I create a new category, and a test product, (or update an existing one), I always get a 404 not found broken link.

    I've put the rules in the root htaccess file as follows:

    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/modifiedadminname.* [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]
    RewriteCond %{REQUEST_URI} !/*.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    Anybody have any ideas of where to start looking for the problem here?

    Thx!

  9. #1339
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    URL for your site.. helps determine if your re-write rules are correct..
    Quote Originally Posted by Spartan View Post
    Hey Guys,
    Im not sure what Im doing wrong here, but I cant get this to work.
    I've installed the files, and cant find anything that Im missing, but when I create a new category, and a test product, (or update an existing one), I always get a 404 not found broken link.

    I've put the rules in the root htaccess file as follows:



    Anybody have any ideas of where to start looking for the problem here?

    Thx!
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #1340
    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 Spartan View Post
    I've put the rules in the root htaccess file as follows:!

    RewriteCond %{REQUEST_URI} !/*.* [NC]
    Why did you put in a condition which says "don't rewrite anything"?

    Obviously that will mean that any URI with a mapping won't get mapped and will return a 404.

    Very strange thing of you to have done!

    Remove that silly line and things should be fine.

    Hope that helps!

    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