skeltoac
Forum Replies Created
-
Forum: Plugins
In reply to: Spam PluginOh yeah? When I get out of work (where I don’t have FTP access) I’ll give it a shot. What version are you using, podz?
Forum: Plugins
In reply to: Spam PluginOne a minute! Geez! Send them to moderation or turn them off altogether. I’ll look into the code for you…
Forum: Fixing WordPress
In reply to: Textile1 IssuesA lot of people (myself included) prefer to write well-formed posts. I figure if you know enough to put
<ul>
s in your posts, you don’t really need Textile 1.Forum: Plugins
In reply to: Spam PluginTrackback spam is just unwanted comments that got submitted via the Trackback system instead of the usual form post. WordPress doesn’t filter Trackback comments the same way as regular comments.
You might want to hack the trackback-handling code to send all trackbacks to moderation, as a temporary fix. To do this, find the
INSERT
statement and change the approval value from 1 to 0. Not sure what file, though…Forum: Fixing WordPress
In reply to: Problem With Word Press BlogChange your passwords more frequently.
I can’t say that your problem was caused by your hosting account or database being hacked, but it’s always a good idea to keep passwords fresh anyway.
Forum: Fixing WordPress
In reply to: Changing the way archive links are builthttpd.conf
is the Apache config file. Find the line that referencesmod_rewrite
and un-comment that line. Save, restart Apache, kablooey! I mean, voila!Forum: Fixing WordPress
In reply to: Migrating from BloggerOK, STOP following the guide. Follow the link I provided above. I updated the ORIGINAL article with a new Blogger template so that you don’t have to publish via FTP.
Forum: Installing WordPress
In reply to: ConfusedWhen you get a virtual or dedicated server with GoDaddy, localhost works for MySQL. With a regular “hosting” account, you use mysqlXX.secureserver.net where XX is some number.
Forum: Themes and Templates
In reply to: 800×600 SupportDon’t forget about style! Whitespace (or space of any color where you don’t have text) offsets the clutter of a web page. Wide margins do more than just make your page accessible in smaller windows.
Forum: Plugins
In reply to: Wp-Polls 1.5 updatedForum: Plugins
In reply to: Wp-Polls 1.5 updatedThe headers error is caused by some output occurring too soon. Having ANYTHING before “
<?php
” or after “?>
” in a plugin or theme file can cause this.Check for spaces or blank lines at the beginning and end of any recently added/modified php files.
Forum: Everything else WordPress
In reply to: WP Support Forums, leaving tags openNow everything below that on the page is within the
<code>
block.Forum: Fixing WordPress
In reply to: (solved) Serious Problem…Entire site down because of it.It’s usually enough just to say “Thanks, it’s resolved now.”
Forum: Fixing WordPress
In reply to: New page?Bang, let’s clear up exactly what your intentions are. Do you want this special page to be your home page, always displaying the same text? Be very specific.
Forum: Fixing WordPress
In reply to: (solved) Serious Problem…Entire site down because of it.If you need to fix your /index.php, this is what it should contain:
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>