elightbo
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Windows server infinite redirect after upgrading to 3.1Upgrading to a nightly build of WordPress solved my headaches. Thank you awesome WordPress devs.
Forum: Installing WordPress
In reply to: Windows server infinite redirect after upgrading to 3.1The patch worked except now my RSS feeds are broken. So I suppose I have to decide if I want RSS or broken archive links.
Forum: Installing WordPress
In reply to: Windows server infinite redirect after upgrading to 3.1I noticed that when activating the plugin fix that it broke the links in my archives. They read “/page/2” instead of “/2011/page/2”, for example. After updating the canonical.php file as @rvirtue mentions, all was fine.
Forum: Themes and Templates
In reply to: Themes and javascript@stvwlf…I do keep the javascript code out of the header, I just meant that I am calling the external js file from there. Sorry for the confusion. For most things I think that having a cached copy is fine, but I’d still really like to load js libraries like prototype or jQuery only for pages that need them.
I really like the idea of is_page() or is_single(), etc. to limit the loading. The thing I’m almost embarrassed about is that I didn’t really know anything about custom fields utnil @t3los_ mentioned them and I did a bit of research. I think that is exactly what I’m looking for, as long as I properly document it for future developers ??
Thanks again for the help. The support on these forums is making me want to really learn the innards of wordpress so I can be a part of the community.
Forum: Fixing WordPress
In reply to: phpinfo(); -> display_errors = Off with define(‘WP_DEBUG’, true);Thanks for the follow-up. This worked beautifully for me, also.
Forum: Fixing WordPress
In reply to: IIS errorsBeautiful! Thanks! Just added ini_set(“display_errors”, 1); after define(’WP_DEBUG’, true); in wp-config.php and all is well. Thanks for the links.