eMWu - Posts

Return to advanced search

yay I finally managed to find a solution! :)
the correct code should be:
Code: Select all
$url = str_replace (array("'", chr(146)), '', $url);
by eMWu
Tue Mar 20, 2007 10:01 pm
 
Forum: GYM Sitemaps phpBB2
Topic: SEO URL V2 tweak
Replies: 15
Views: 1622

I tried that before.
I gave it another try now, using:
Code: Select all
$url = str_replace (array("’", "'"), '', $url);

but it still doesn't work :(

But thanks for trying to help.
by eMWu
Tue Mar 20, 2007 12:34 am
 
Forum: GYM Sitemaps phpBB2
Topic: SEO URL V2 tweak
Replies: 15
Views: 1622

thanks again for taking your time to reply! The & issue is now solved by removing the part you suggested and adding line $url = str_replace ('&', 'and', $url); But for some reason the ’ character is a tricky one! I replaced my previous additions with your line: $url = str_r...
by eMWu
Mon Mar 19, 2007 10:54 pm
 
Forum: GYM Sitemaps phpBB2
Topic: SEO URL V2 tweak
Replies: 15
Views: 1622

thanks for the reply! I had successfully fixed the issue with character ' But trying to do the same for character ’ didn't work. I tried various ways of trying to disable replacing that character with a dash. I added these lines: $url = str_replace ("’", '', $url); $url...
by eMWu
Sun Mar 18, 2007 9:35 pm
 
Forum: GYM Sitemaps phpBB2
Topic: SEO URL V2 tweak
Replies: 15
Views: 1622

SEO URL V2 tweak

Hi there, I'm trying to use your sitemap mod along with SEO URLs V2 by mgutt. So far I figured out I had to switch to Advanced rewriting type and replace $this->seo_delim = array('cat' => '-vc', 'forum' => '-vf', 'topic' => '-vt', 'user' => '-u' with $this->seo_delim = array('cat' => '-c', '...
by eMWu
Thu Mar 15, 2007 1:35 pm
 
Forum: GYM Sitemaps phpBB2
Topic: SEO URL V2 tweak
Replies: 15
Views: 1622

Return to advanced search