edgarlin
Forum Replies Created
-
After several test, I found that is due to I change the wp-db.php (for Chinese character when upgrade from 2.0.5 to 2.3.1), the file is downloaded at https://trac.www.ads-software.com/browser/tags/1.5.1.3/wp-includes/wp-db.php.
So I change back to original wp-db.php and use another way to fix the wrong Chinese code (at WP-config.php change the define(‘DB_CHARSET’, ‘utf8’) to define(‘DB_COLLATE’, ”); and the problem is fixed.
Forum: Fixing WordPress
In reply to: Old server to New Server & 2.0.5 to 2.3.1When I export the database, I click the “Add DROP TABLE / DROP VIEW” under structure, and the I empty the database then import the database I backup. Due to I use the original table name, so I did not change it, you need to check if you use different table name.
Forum: Fixing WordPress
In reply to: Old server to New Server & 2.0.5 to 2.3.1Hi Shadowd:
You can delete the data (original one when install) and import it, i did not have guide, just use phpMyAdmin to import the new database.
Forum: Fixing WordPress
In reply to: Old server to New Server & 2.0.5 to 2.3.1I used the phpMyadmin to export the database and then import it, after import, when you login the admin, it will upgrade the databased and it should work.
Of course, you need to add the plugin you installed at the older version.
Forum: Alpha/Beta/RC
In reply to: Cannot load akismet-admin.Not sure why, but the scenario is disappear, it is solved for me..
I found that if there is comment existed, the error is gone, so it looks like comment is related.
Forum: Alpha/Beta/RC
In reply to: Cannot load akismet-admin.I got the same error when I upgrade from 2.0.5 to 2.3.1 and get the same error, I also get the Cannot load akismet-key-config when I click the Akismet configuration, any know how to solve it?
Forum: Plugins
In reply to: Wanted: Translators for Auto Links PluginThanks for your the great plugin, I can help you with the Traditional Chinese, just let me know how I can help.
Forum: Plugins
In reply to: New Auto Links pluginGreat plugin, very useful one, I like it a lot.
Forum: Plugins
In reply to: New Plugin: AJAX Shoutbox (WordSpew)Great plugin, easy to use, nice job and thanks.
Forum: Plugins
In reply to: [NEW PLUGIN] Democracy AJAX PollGreat! AJAX Democracy Poll works fine. One question, is it possible to know the poll current result from wp-admin site?
Forum: Fixing WordPress
In reply to: Not Found on the RSS feedI got the solution.
There is no .htacess on the root directory. so I just add it and it is solved.
Thanks this post. https://www.ads-software.com/support/topic/24687Forum: Fixing WordPress
In reply to: Not Found on the RSS feedVery strange.
I do we make this change below,
————–
if ( preg_match(‘/cgi/’, php_sapi_name()) )
@header(‘Status: 404 Not Found’);
else
@header(‘HTTP/1.x 404 Not Found’);
————–and turn them into this:
————–
/* if ( preg_match(‘/cgi/’, php_sapi_name()) )
@header(‘Status: 404 Not Found’);
else
@header(‘HTTP/1.x 404 Not Found’); */’or change:
‘ (false === strpos($_SERVER[‘PATH_INFO’], ‘index.php’))’
to
‘ (false === strpos($_SERVER[‘PATH_INFO’], ‘.php’))’However, only https://mywebsite.com/wp-rss2.php is OK, however, https://mywebsite.com/feed/ is not.
Besides, I have another blog using the same version of wordpress 1.5.2, which is working fine without problem.
Any other suggestion?