Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
nidkolio
First of all i want to thank you for this beautiful module!
I'm glad you like it!
Quote:
Originally Posted by
nidkolio
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
Re: Ceon URI Mapping (SEO)
Conor thank you for your answer!
This information is enough, i will start digging now.
One again thanks .
Re: Ceon URI Mapping (SEO)
Quote:
Originally Posted by
jill8026
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..
Re: Ceon URI Mapping (SEO)
Quote:
Originally Posted by
conor
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:clap:
It works
Thank you once again!
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
DivaVocals
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
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
nidkolio
Hi again..
Just wanted to say that this file is the key:clap:
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
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
Terra1069
Thank you so much! It is beautiful! Bravo Bravo!!
Glad you like the software!
Quote:
Originally Posted by
Terra1069
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
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. :no:
I've put the rules in the root htaccess file as follows:
Quote:
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!
Re: Ceon URI Mapping (SEO)
URL for your site.. helps determine if your re-write rules are correct..
Quote:
Originally Posted by
Spartan
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. :no:
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!
Re: Ceon URI Mapping (SEO)
Hi,
Quote:
Originally Posted by
Spartan
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