[wp-trac] Re: [WordPress Trac] #3112: Upload bugs
WordPress Trac
wp-trac at lists.automattic.com
Tue Sep 26 16:12:24 GMT 2006
#3112: Upload bugs
----------------------------+-----------------------------------------------
Reporter: kakingho | Owner: anonymous
Type: defect | Status: closed
Priority: normal | Milestone:
Component: Administration | Version:
Severity: normal | Resolution: fixed
Keywords: bg|needs-patch |
----------------------------+-----------------------------------------------
Changes (by thinklava):
* resolution: => fixed
* status: new => closed
Comment:
The files should have been uploaded successfully, howerver, to make it
perfect, here are two solutions.
Solution A: Before u install the database, you can change the following
three sentences in upgrade-schema.php in directory wp-admin:
Sentences before changed:
CREATE TABLE $wpdb->posts (
...
to_ping text NOT NULL,
pinged text NOT NULL,
...
post_content_filtered text NOT NULL,
Sentences changed to:
CREATE TABLE $wpdb->posts (
...
to_ping text NULL,
pinged text NULL,
...
post_content_filtered text NULL,
Solution B: If u have installed the Database, u can change the field
"NULL" of the tuples "to_ping", "pinged" and "post_content_filtered" in
table "wp_posts" from "NOT NULL" to "NULL". Of course, u can use the tools
PHPMYADMIN or MYSQLCC to get it.
Hope it can help u!
--
Ticket URL: <http://trac.wordpress.org/ticket/3112>
WordPress Trac <http://wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list