Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: [issue] accented character and urls
Wow! I just upgraded to 4.0.1, and seems that the problem has been fixed! Both in categories name and in article titles!
Thank you very much, you made me happy! :)
Z-
Offline
#17 2005-11-24 21:17:14
- davidm
- Member

- From: Paris, France
- Registered: 2004-04-27
- Posts: 719
Re: [issue] accented character and urls
Following up, if anybody still has problems, check Ampersands, PHP Sessions and Valid HTML
W3C’s team offers 3 options to solve this problem :
<blockquote>
Editing php.ini
The php.ini file contains the central configuration data for an install of PHP on a computer. You can specify a character reference to use there. <code>arg_separator.output = “&”</code>
Apache directives
The Apache web server can set PHP scripts in all the usual places. This allows different directives to be set on a per site or per directory basis (in, for example, a <location> block or .htaccess file). <code>php_value arg_separator.output &</code>
Per script basis
PHP configuration directives can be set on a per script basis with the ini_set function. Put the code to set the directives at the top of your script. <code><?php ini_set(‘arg_separator.output’,’&’); ?></code>
</blockquote>
Hope it helps :D
Last edited by davidm (2005-11-24 21:19:08)
.: Retired :.
Offline
#18 2005-11-24 21:43:18
- zem
- Developer Emeritus

- From: Melbourne, Australia
- Registered: 2004-04-08
- Posts: 2,579
Re: [issue] accented character and urls
I’m confused – what does the Ampersand thing have to do with this thread?
Alex
Offline