liuxyon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Chinese Permalinks not working ("It's embarrassing messageWP3.4.2 still has no fix this support chinese url and upload chinese name files.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languagemaybe I find upload chinese file name, it isn’t download reason.
Because when I upload chinese name file via wordpress admin control after, then the file name be force change other encode file name. maybe is utf-8?
such as:
The real chinese file name is: 完美GPS信息_Ulysee Gizmos_1.5.2.rar
upload via WP after file name change to:
瀹岀編GPS淇℃伅_Ulysee-Gizmos_1.5.2.rarForum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageI have reply in ticket.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languagenow WP3.1RC3 can upload chinese file,but it still not show.
/wp-uploads/2011/01/姜昆.jpg
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageand when your the post tile name is chinese. then the chinese url can’t work.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languagejust you upload files of chinese file name and it will can’t work.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageand when I upload the file of chinese file name, it is not find the been upload file.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageand when I upload an chinese file name file,it is not find the file and show.
Forum: Requests and Feedback
In reply to: wordpress and ipv6I have found a way. NETBIOS off in the NIC.
Forum: Alpha/Beta/RC
In reply to: Internal Link don't support Chinese languageI imagine it just hasn’t been translated to Chinese yet, no?
I think it is should use UTF-8 for url address.
just now, we have to edit the wp-includes/classes.php for chinese or other laguage link address.
now we using the code in wp-includes/classes.php.
if ( isset($_SERVER['PATH_INFO']) ) $pathinfo = $_SERVER['PATH_INFO']; else $pathinfo = ''; $pathinfo_array = explode('?', $pathinfo); $pathinfo = str_replace("%", "%25", $pathinfo_array[0]); $req_uri = $_SERVER['REQUEST_URI']; Change to: if ( isset($_SERVER['PATH_INFO']) ) $pathinfo = mb_convert_encoding($_SERVER['PATH_INFO'], "UTF-8", "GBK"); else $pathinfo = ''; $pathinfo_array = explode('?', $pathinfo); $pathinfo = str_replace("%", "%25", $pathinfo_array[0]); $req_uri = mb_convert_encoding($_SERVER['REQUEST_URI'], "UTF-8", "GBK");
Forum: Fixing WordPress
In reply to: WP HTTP Error: Could not resolve host: planet.www.remarpro.com;When using the IPV6 network, this problem occurs.
Forum: Fixing WordPress
In reply to: DashBoard RSS FeedsWhen using the IPV6 network, this problem occurs.
Forum: Requests and Feedback
In reply to: wordpress and ipv6wordpress v3.01 still can’t work in ipv6 network now.
Forum: Fixing WordPress
In reply to: WP HTTP Error: Could not resolve host: planet.www.remarpro.com;me too. I am using wp2.8.5 php5.2.11 NTS fastcgi IIS6 and mysql5
WP HTTP Error: Could not resolve host: www.remarpro.com; No data record of requested type
WP HTTP Error: Could not resolve host: blogsearch.google.com; No data record of requested typeForum: Fixing WordPress
In reply to: Some people can’t comment – get blank wp-comments-post.php pagedavesnothere
Member
Posted 7 months ago #
Probably not the best solution, but if this is a showstopper — most likely is ?? — and you need a workable hack, here’s what worked for me:1. open wp-comments-post.php (this is in the wordpress root.)
2. at the bottom, line 88 for me (wp 2.7), comment out wp_redirect($location);
3. replace it with header(“Location:$location”);So, you should have this at the end:
#wp_redirect($location);
header(“Location:$location”);CAUTION, this most likely will not survive an update and will have to be redone.Anyone know where the wp_redirect function lives?
OK. the way has may fix in WP2.8.5
Have you find better others ways?