Mark Jaquith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “Comments are closed” although they are activated!?Are you sure that they are open for that particular entry? Edit the entry, and then look at the comment status… is it “open” ?
It could be a problem with your theme, but let’s make sure that your comments really are open first. Note that the setting in Options => discussion only matters for new posts, it doesn’t change the post status of old posts.
Forum: Plugins
In reply to: WP-ContactFormMy guess would be that there’s a problem in your server’s e-mail sending program, or with a spam filter on your receiving end. You may want to check with your web host about this.
Forum: Fixing WordPress
In reply to: Lunarpages, WP2.02, Account SuspensionIn particular, the Google Sitemap plugin can cause a lot of problems, sometimes eating up 16+ MB of RAM… and it would be run when posts are submited.
You also might want to consider moving to another host… one that will take the time to work through problems instead of cutting off your access without warning. I’d be happy to recommend one if you’d like.
Forum: Installing WordPress
In reply to: Upgrading 2.01 to 2.02Here you go.
http://codex.wordpress.org/Upgrading_WordPress#Upgrade_2.0.1_to_2.0.2
The search here has been rather borked as of late, so I suggest doing a search like this on Google:
site:codex.wordpress.org upgrading wordpressWhat browser, browser version, and operating system?
Also, try re-uploading
wp-includesandwp-admindirectories. A lot of people have problems because files got corrupted or skipped.Forum: Fixing WordPress
In reply to: Two blogs – One database – How to extract data?hm, you’re probably include()ing both installs, which will cause problems. They need to run in their own space. Depending on your server setup, you could include() a URI. That is, set up a file for each blog that includes wp-config.php and then calls the function that displays the posts. And then in your main site, include() that URI. If it is on the same server, it should be pretty fast.
Forum: Plugins
In reply to: Tag Warrior Does not work with Static Page PluginInstead of Static Front Page, try Home Page Control [1] … I find that it works better and doesn’t mess other things up as much.
Forum: Fixing WordPress
In reply to: adding adds to benevolenceYou’d probably do absolute positioning and push it out to the sides with
leftorrightin your CSS.Forum: Fixing WordPress
In reply to: Adding content links to posts/pages, need help.In your stylesheet, something like
.post a { color: pink; }(but not pink of course… find the hex color like#xxxxxxthat is used for the blue that you like.)Your stylesheet is
wp-content/themes/black/style.cssForum: Fixing WordPress
In reply to: Understanding how WP treats keywords?A ticket has been submitted.
http://trac.wordpress.org/ticket/900Forum: Fixing WordPress
In reply to: post draft saved, but won’t publish — mysql error I don’t understandFor some reason, it’s not being slashed appropriately. Do you have a plugin that might be interfering?
Forum: Fixing WordPress
In reply to: Two blogs – One database – How to extract data?The
rv_install should haverv_set as the table prefix inwp-config.phpThen, in your function, declare
$wpdbglobal and use$wpdb->posts, $wpdb->post2cat, $wpdb->comments, $wpdb->categoriesetc, to reference the correct table.$tablepostsetc are deprecated… you’ve likely based your function on code that is about 2 years old, or so.Forum: Fixing WordPress
In reply to: Error when making postsWhat plugins? One of them is probably using too much memory. If you can, up the limit to 16MB in php.ini … otherwise, you’ll likely have to uninstall the plugin that is causing the problem.
Forum: Installing WordPress
In reply to: upgrade failed: Cannot instantiate non-existent class:Try reuploading all the WP files, especially
/wp-includes/and/wp-content/directories. This sounds like the wp_user class is never getting defined, which means there might be a problem with the file that contains it.Forum: Fixing WordPress
In reply to: SE-Friendly Permalinks whacked my Archives linksIf you don’t have
mod_rewrite, you’ll need/index.php/in your permalink structure, unfortunately.