Elxis CMS Forum

Support => Technical support => Topic started by: benone on February 16, 2010, 18:51:33

Title: Seo Title Problem
Post by: benone on February 16, 2010, 18:51:33
Hi people.

Just trying to add a new section and category in Elxis and cannot do it. Under Section/Categories Manager I can write title and name but when I hit "suggested SEO title" a message pops up saying "Try a larger title!"

When I fill in the SEO title and hit the validation button, it returns SEO title valid. However when I click to save or apply, It returns the error "invalid SEO title." and reloads the page. Could it be that I have inadvertently broken something or someone else has had a similar experience? Any help is greatly appreciated.
Title: Re: Seo Title Problem
Post by: webgift on February 16, 2010, 18:57:03
Try a title like . : seo-title-problem.

Separate the words with : "-" and don't use Capital characters.
Title: Re: Seo Title Problem
Post by: benone on February 16, 2010, 22:04:06
"-" solved the problem. I should have known that aargh! Maybe I'm used to Elxis doing everything for me :D
Thanks!
Title: Re: Seo Title Problem
Post by: rentasite on February 17, 2010, 01:09:46
when I hit "suggested SEO title" a message pops up saying "Try a larger title!"

Does this problem still exist? it shouldn't happen.
Title: Re: Seo Title Problem
Post by: webgift on February 17, 2010, 09:45:51
"-" solved the problem. I should have known that aargh! Maybe I'm used to Elxis doing everything for me :D
Thanks!


 ;)

when I hit "suggested SEO title" a message pops up saying "Try a larger title!"

Does this problem still exist? it shouldn't happen.

Maybe the length of characters that inserted Benone into the SEO text Field was not so much as it's necessary by Elxis CMS Platform.
Title: Re: Seo Title Problem
Post by: rentasite on February 17, 2010, 11:25:29

For the "suggested SEO title" function, there's no need to insert anything.
Title: Re: Seo Title Problem
Post by: webgift on February 17, 2010, 12:05:21
Hm , right!

I just forgot this opportunity that Elxis platform we offer to us. I don't use it
Title: Re: Seo Title Problem
Post by: andre747 on October 27, 2010, 11:00:23
Hi people.

Just trying to add a new section and category in Elxis and cannot do it. Under Section/Categories Manager I can write title and name but when I hit "suggested SEO title" a message pops up saying "Try a larger title!"

When I fill in the SEO title and hit the validation button, it returns SEO title valid. However when I click to save or apply, It returns the error "invalid SEO title." and reloads the page. Could it be that I have inadvertently broken something or someone else has had a similar experience? Any help is greatly appreciated.

Hi, I have the same problem. I get the "Try a larger title!" popup even when i use the format: seo-pro-title with sections, categories and articles. Any suggestions?
Title: Re: Seo Title Problem
Post by: datahell on October 28, 2010, 14:49:06
Andre which is your Elxis version?
Note that you can check if your Elxis file system is OK with the tool Updiag.
Title: Re: Seo Title Problem
Post by: cfb1972 on October 29, 2010, 17:26:57
I'm having the same problem but didn't pay attention to it as not very often bothers me. It was not present at the very beginning when I've installed Elxis...
Title: Re: Seo Title Problem
Post by: andre747 on October 29, 2010, 17:54:32
My version are 2009.2 Electra rev2628 and check filesystem reports site up to date ....
Title: Re: Seo Title Problem
Post by: datahell on October 29, 2010, 18:01:34
andre I need to test it on your site in order to provide you a solution. If you wish send me a personal message with username/password to your Elxis administration to test it.
Title: Re: Seo Title Problem
Post by: andre747 on November 01, 2010, 09:42:43

pm sent
Title: Re: Seo Title Problem
Post by: Farhad Sakhaei on December 15, 2010, 13:15:48
Hi,
Here is the solution
https://forum.elxis.org/index.php?topic=5498.msg36837#msg36837

There is a problem with suggesting seo titles
When we want to suggest a seo title for a ascii seo title , it shows a message of: "Try a larger title!"

To solve this problem:

files:
/components/com_eblog/eblogseovs.class.php
/administrator/includes/seovs.class.php

find:
Code: [Select]
        $ascii = strtolower(eUTF::utf8_to_ascii($this->title, ''));
replace it with :

Code: [Select]
        if (eUTF::utf8_isASCII($this->title)){
                $ascii = strtolower($this->title);
        } else {
                $ascii = strtolower(eUTF::utf8_to_ascii($this->title, ''));
        }
Title: Re: Seo Title Problem
Post by: datahell on December 16, 2010, 17:53:03
Although I have never seen this error I applied your fix in Elxis 2009.3.
Title: Re: Seo Title Problem
Post by: Farhad Sakhaei on December 16, 2010, 17:55:05
Hi John ,
This problem occurs when we type an English title
But works properly for another languages  :)
Title: Re: Seo Title Problem
Post by: datahell on December 16, 2010, 18:02:46
OK, thanks then.