rustindy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: A few points that bug meThe
archive.phptemplate file could probably be modified somehow to override the built-in “# of days” value. Just gotta figure out exactly which variable to change 🙂UPDATE: attempting this now – seems like a good idea 😉
Forum: Fixing WordPress
In reply to: Sending Referrers: PROOFBut “probably” is not “definitely”, so if someone does have the time and skill to help Amiantos, they should.
Forum: Installing WordPress
In reply to: Set up with IIS not workingGlad to help 🙂
Forum: Fixing WordPress
In reply to: Sending Referrers: PROOFOther users have noted this behaviour in the past, so it’s not an isolated incident, and does appear to be a bug. It’s never happened to me, personally (unless I actually do block the referrer field with my firewall), but I believe that it happens to him.
Since it works fine for most people, it’s probably a server configuration issue, but exactly what that might be is very hard to tell, which is why he’s offering a copy of his installation for download – so someone can install the exact files on their own server and try and duplicate the problem.
Forum: Fixing WordPress
In reply to: No http://It did used to? Hmm…
ryoken, yup, now that you mention it, the
valuewould have a little code in there to display a cookie value if any exists. might prove a bit of a problem – unless you added a little more PHP code before the input box checking for the cookie first and assigning it to a variable if it exists, and assigninghttp://if it doesn’t, then using that variable in thevalueinstead of whatever’s there currently.Bit of a chore though, especially if it used to stick
http://in front of web addresses anyways…Forum: Fixing WordPress
In reply to: No http://I think that’s by design. If you want to give people a hint about it, open the file with the comment fields in it (usually
comment.phpandcomment-popup.php– at least in 1.5) and addvalue="http://"to the URI input box.Forum: Plugins
In reply to: Spaminator 1.0rc5 – cool new stuffDamn – I’d love to use this, but
checkdnsrrisn’t available on a Winblows server 🙁 Any chance of a compatible version? 😀Forum: Installing WordPress
In reply to: Set up with IIS not workingPHP4 does not like MySQL 4.1 because MySQL 4.1 uses a newer authentication than PHP4 has.
To workaround, either downgrade to MySQL 4.0 (if you can), upgrade to PHP5 (if you’re using the 1.5 betas – WP 1.2 doesn’t like to install with PHP5), or perform the following (using PHPMyAdmin or directly to the database itself):
In your MySQL ini file (usually this is called “my.ini” I think), in the
[MySQLD]section, addold-passwordson a line by itself.Now restart MySQL and connect to the database (command line, PHPMyAdmin, MySQL Query Browser – whatever tool floats yer boat), and:
use database blog;
SET PASSWORD FOR -> "root" = OLD_PASSWORD("changeme");Assuming that works (it did for me – had this problem getting Mambo to work, but I run WP1.5 on PHP5 with MySQL 4.1), your blog should start working 🙂
And please don’t use “root” to login. Create a new account. If you create a new user after restarting MySQL with the “old-passwords” line in “my.ini”, you won’t have to do the second step above (I don’t think – if it doesn’t work, then do the query).
Good luck 🙂
Forum: Plugins
In reply to: Ultra-simple image upload pluginHonestly, I’d love to see that built into WP – a nice, little popup upload window that’ll insert the code directly from the add/edit post/page screen 🙂
Forum: Fixing WordPress
In reply to: Last Tested Stable NightlyThe 9th is holding strong for me so far – tested everything that someone is likely to use and no problems yet 🙂
Forum: Fixing WordPress
In reply to: Asides with 1.5Try http://russ.innereyes.com/2005/01/the-rustasides-wp-15-plugin/ 😀
It’s a really simple one, but it works well enough for me, and only requires you to add a single tag into your template.
Forum: Fixing WordPress
In reply to: Show Top Level Categories OnlyLocate the
wp_list_catscommand in your “index.php” file (or whichever file shows the thing – in v1.5 it’ll be in the “sidebar.php” file instead) and add the commandchildren=0to it.For example, it might look like this:
<?php wp_list_cats('children=0'); ?>That’ll show only the main categories.
Forum: Plugins
In reply to: Spaminator 1.0rc5 – cool new stuffThat’s it, just go and raise the bar for everyone! Sheesh! “Configuration page” – what’s next, automatic updates?!
😀
Excellent show, excellent 🙂
But since I’m really a picky little bugger (probably I’m a jerk),
preprocess_commentshould actually be used inadd_filterinstead ofadd_action.Yes, I know they’re functionally identical (since “add_action” is just an alias for “add_filter”), but the WP source code shows it as being a filter. Sorry if it’s a really anal thing to notice 🙁
Forum: Fixing WordPress
In reply to: Changelog RSS feedOo, good idea (IMHO).
Forum: Fixing WordPress
In reply to: What must be kept?http://codex.wordpress.org/Theme_Development
Everything you ever wanted to know about themes but were afraid to ask 🙂