ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sending Referers?Forum: Fixing WordPress
In reply to: No posts found. (Ver 1.5 clean install)The
%category%permalink tag has trouble in environments with greedy parsing of regular expressions. You can see a possible solution on Ryan’s site.Forum: Requests and Feedback
In reply to: wp_list_cats() children display problemYes, with the caveat that you misspelled
wp_list_cats()in your example.Forum: Plugins
In reply to: Using loops and query_postsThere’s no way to specify to exclude a post by post ID in The Loop. That said, is there any reason you can just skip over it in your Loop processing? In other words:
if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $that_post_I_hate )
continue;
// Do stuff like format each post etc
endwhile;Forum: Fixing WordPress
In reply to: change login redirectI’m not so sure I agree that this is an esoteric option.
Granted you might think it’s not, but for the seeming majority of WordPress users — single-author blogs — an option to control where the login redirect goes isn’t overly necessary.
Try modifying this one on line 178.
$redirect_to = get_settings('siteurl') . '/wp-admin/profile.php';That’s likely the one getting hit in those cases.
Forum: Requests and Feedback
In reply to: RSS feed for each categoryLooks perfectly understandable to me, Flegme, nice work.
Forum: Plugins
In reply to: Is there an auto-linker plugin?With a little work you could probably make the acronym replacer do precisely that.
Forum: Installing WordPress
In reply to: Good ol’ step 5No worries, come back when they get your database setup.
Forum: Fixing WordPress
In reply to: Delete inactive usersWhat problem is this causing?
Forum: Installing WordPress
In reply to: Good ol’ step 5There’s our issue. You need a MySQL database set up by whoever administers that university server. They need to set it up, then give you a name of the database, the server that it’s on, the username for the database and the password. You then fill that information into the wp-config.php file. Then you can start installing WordPress.
Forum: Installing WordPress
In reply to: Good ol’ step 5Start at the top. Where did you get your database parameters?
Forum: Installing WordPress
In reply to: Good ol’ step 5What still doesn’t work? That link is not your login link, it’s a representative example.
Forum: Installing WordPress
In reply to: Good ol’ step 5Following installation it was displayed on the page as follows:
Now you can log in with the login
“admin” and password “<?php echo $random_password; ?>“.
Note that password carefully! It is a random
password that was generated just for you. If you lose it, you
will have to delete the tables from the database yourself, and re-install WordPress.and emailed to the administrator email account if given correctly.
Forum: Installing WordPress
In reply to: Good ol’ step 5No. The username and password that you put into the wp-config.php file are the appropriate ones for your database. The username and password to login to your WordPress installation are generally “admin” and a randomly generated one that is provided to you upon installation.
Forum: Fixing WordPress
In reply to: Help me get RSS working please.I get this from your feed, keaven:
<b>Warning</b>: ob_start(): output handler 'ob_gzhandler' cannot be used twice in <b>/home/kcom/public_html/main/wp-includes/functions.php</b> on line <b>558</b><br />