|
|
|
|
|
|
Re: Page expired (V2.7.2) [message #39990 is a reply to message #39979] |
Tue, 01 January 2008 01:07 |
|
Astoria
Messages: 227 Registered: April 2004
Karma: 0
|
Senior Member |
|
|
Actually it turns out I spoke too soon. It seems that any ascii special character is making IE choke, including accented characters. Most of the common ones are caught, but my poster just found another one.
é
When I uploaded the file to my server and looked at the characters, the above looked like this:
é
Here is the hack with the one I added as it appears in my text file (on my linux gedit at home):
/* Microsoft Word Hack to eliminate special characters */
$in = array('”','“','’','‘','…','—','–'); $out = array('"','"',"'","'",'...','--'
);
Here is how the same lines look in my display from my server's file manager:
/* Microsoft Word Hack to eliminate special characters */
$in = array('�','⤽','⤙','⤘','⤦','⤔','⤓'); $out = array('"','"',"'","'",'...','--');
localhost is running server version 4.1.20 and MySQL version 4.0.21, according to phpmyadmin.
|
|
|
|