Ryan Boren
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Upgrade to 2.0 beta2Everyone forgets to upgrade, including me even though I’m usually the one changing the database. Hopefully this will cut down on support requests caused by failing to upgrade.
Forum: Alpha/Beta/RC
In reply to: Cannot use stdclassForum: Alpha/Beta/RC
In reply to: Error in Beta2 when new installationForum: Alpha/Beta/RC
In reply to: Does the DB get upgrade when the file upgrade.php gets run?diff tags/1.5.2/wp-admin/upgrade-schema.php trunk/wp-admin/upgrade-schema.php
9c9,10
< category_parent int(4) NOT NULL default '0',
---
> category_parent bigint(20) NOT NULL default '0',
> category_count bigint(20) NOT NULL default '0',
27,28c28,29
< comment_parent int(11) NOT NULL default '0',
< user_id int(11) NOT NULL default '0',
---
> comment_parent bigint(20) NOT NULL default '0',
> user_id bigint(20) NOT NULL default '0',
55c56
< link_category int(11) NOT NULL default '0',
---
> link_category bigint(20) NOT NULL default '0',
94c95
< meta_value text,
---
> meta_value longtext,
101c102
< post_author int(4) NOT NULL default '0',
---
> post_author bigint(20) NOT NULL default '0',
108c109
< post_status enum('publish','draft','private','static','object') NOT NULL default 'publish',
---
> post_status enum('publish','draft','private','static','object','attachment') NOT NULL default 'publish',
118c119
< post_parent int(11) NOT NULL default '0',
---
> post_parent bigint(20) NOT NULL default '0',
120a122,124
> post_type varchar(100) NOT NULL,
> post_mime_type varchar(100) NOT NULL,
> comment_count bigint(20) NOT NULL default '0',
128,130d131
< user_firstname varchar(50) NOT NULL default '',
< user_lastname varchar(50) NOT NULL default '',
< user_nickname varchar(50) NOT NULL default '',
132d132
< user_icq int(10) unsigned NOT NULL default '0',
135,137d134
< user_ip varchar(15) NOT NULL default '',
< user_domain varchar(200) NOT NULL default '',
< user_browser varchar(200) NOT NULL default '',
139,143d135
< user_level int(2) unsigned NOT NULL default '0',
< user_aim varchar(50) NOT NULL default '',
< user_msn varchar(100) NOT NULL default '',
< user_yim varchar(50) NOT NULL default '',
< user_idmode varchar(20) NOT NULL default '',
146c138
< user_description longtext NOT NULL default '',
---
> display_name varchar(250) NOT NULL default '',
148c140,149
< UNIQUE KEY user_login (user_login)
---
> KEY user_login_key (user_login)
> );
> CREATE TABLE $wpdb->usermeta (
> umeta_id bigint(20) NOT NULL auto_increment,
> user_id bigint(20) NOT NULL default '0',
> meta_key varchar(255) default NULL,
> meta_value longtext,
> PRIMARY KEY (umeta_id),
> KEY user_id (user_id),
> KEY meta_key (meta_key)Forum: Requests and Feedback
In reply to: wordpress contains spyware?Not an ICMP ping, but a pingback. See the Introduction to Blogging.
Forum: Alpha/Beta/RC
In reply to: Level 4 and OptionsForum: Alpha/Beta/RC
In reply to: Cache in WP 2.0 betaThe DISABLE_CACHE line will likely disappear from wp-settings.php before 2.0 final. Copy it to your wp-config.php so that it is not overwritten when upgrading.
Forum: Alpha/Beta/RC
In reply to: No Comment After CommentingAre you using wp-comments-post.php that comes with the beta? Any comment related plugins installed? Comment counts are now stored in the DB rather than be generated on the fly each time. If the comment creation API is being circumvented, the comment counts will not increment.
Forum: Alpha/Beta/RC
In reply to: Success story – for now….Download an updated theme switcher here.
Forum: Alpha/Beta/RC
In reply to: Cache in WP 2.0 betaCould you post the errors so we can fix them?
Forum: Installing WordPress
In reply to: Import into wordpress.com?You can use the feedback tab in the admin panel of your wp.com blog. Also, you can try the WPMU forums. Since wp.com runs WPMU those forums are probably more appropriate.
I’ll talk to Matt about making wp.com resources clearer. It’s still being born, so bear with…
Forum: Installing WordPress
In reply to: Import into wordpress.com?wordpress.com will eventually have the one click blogger importer being developed for WP 1.6.
Forum: Fixing WordPress
In reply to: WPDB var_dumplast_result holds the result of the last query. The last query before the var_dump was likely a query for the pages.
Forum: Fixing WordPress
In reply to: WP keeps adding all my posts to “Uncategorized”Yes, download 1.5.1.3 again and it will have fixes for everything except the category problem. xmlrpc.php and functions-post.php are the only files you need to update. Yes, not bumping the version is confusing. Now that the security bug is resolved and the collateral damage contained, I can take some time to get the category problems uncovered by ecto ironed out. Once that is fixed, maybe we can push a 1.5.1.4.
If you want to help us test, join the Testers mailing list. I’ll be sending a hopeful fix for the category bug there soon.
Forum: Fixing WordPress
In reply to: WP keeps adding all my posts to “Uncategorized”The problems with too much escaping, including image uploads, are fixed. The fixes were rolled into the 1.5.1.3 tarball for now (yeah, I know). Re-download.
ecto doesn’t run on Linux, as far as I can tell, so I can’t test with it. I test with four different clients and try to get other people to fill in the gaps. ecto seems to be unrepresented on our hackers and testers lists. I encourage ecto users to join the testers list and help us ensure good ecto support.
Thanks for the MT background. I didn’t know that, and none of the clients I test with seem to know that either. I’ll fix things up.