iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: whats my admin password? (or, how do I get rid of those links?!)If you have phpmyadmin access to your database, you can reset the password on your admin account by following this tutorial: http://www.tamba2.org.uk/wordpress/phpmyadmin/
Forum: Plugins
In reply to: JavaScript HelpThe link in this thread will take you to a page where there are all the instructions, as well as links to some css, images and a modifed quicktags file that add the drop shadow divs.
http://wordpress.org/support/topic.php?id=30079#post-169994Forum: Fixing WordPress
In reply to: 500 internal server errorDo you have ‘WordPress should compress articles (gzip) if browsers ask for them ‘ ticked in options – reading? Maybe untick it? I doubt they are related but it might be worth a try.
Forum: Fixing WordPress
In reply to: How to show link categoryOr wp_get_linksbyname(‘cat name’), so you don’t have to remember which category is number 11.
Forum: Themes and Templates
In reply to: How to get a floating image on the beginning of each entryForum: Fixing WordPress
In reply to: Removing meta information on static pagesMake a copy of index.php and name it page.php, then delete/ comment out the meta tags.
Forum: Fixing WordPress
In reply to: How to hide posts from 2 or 3 categories from index pageWhat should work is using || for ‘or’. so
<?php if ( !(in_category('8')) || !(in_category('7')) || !(in_category('9'))) { ?>but I haven’t had much luck with that so just repeat the<?php if ( !(in_category('8'))) { ?>statement for each category and add the appropriate number of closing }s.Forum: Fixing WordPress
In reply to: Sign up and BlogThere is WordPress Mu – http://mu.wordpress.org and I just found this as well: http://wordpress.org/support/topic.php?id=29142
Support-wise, mu has its own forums and would suggest contacting the author for help with the second one.Forum: Everything else WordPress
In reply to: Adding new “categories”You need a post in that category for it to appear.
Forum: Everything else WordPress
In reply to: Getting the word out…Just a note – I can’t actually load the page you linked to.
Forum: Plugins
In reply to: Creating a static output for index.phpTg, thanks for the info, I had thought php and cgi were two independent things. Now I know that WordPress does do things with cgi [or can anyway 🙂 ]
btw – the link I posted earlier is to an apparently improved (i.e more efficient) Staticize based cache script.Forum: Plugins
In reply to: Creating a static output for index.phpbdouglas – Pick one of the 7 items below the ‘main theme’ (whichever is approriate) and then at the bottom is ‘new topic in this forum’.
Don’t forget to search first though 🙂Forum: Plugins
In reply to: Creating a static output for index.phpThis might help: http://mnm.uib.es/gallir/posts/2005/03/12/178/
and I might be wrong, but as far as I know WordPress doesn’t do anything with CGI – I guess you mean sql requests?Forum: Plugins
In reply to: Looking for a plugin – dynamic plugin listThe pluginsused plugin:
http://www.andrewsw.com/pages/pluginsUsedPluginForum: Plugins
In reply to: question about exhibitMine puts the images inline with editing the css (i.e. i’m using display: block). Maybe something in your main css is overriding? The author of exhibit checks the boards so he might be able to help you.