uberdose
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Mandigo – Having different header images on different pagesI split the header insertion plugin into a plugin of its own:
Please give me feedback!
Forum: Themes and Templates
In reply to: Mandigo – Having different header images on different pagesKaboomer, you copied the .php into your wordpress installation under wp-content/plugins?
Forum: Themes and Templates
In reply to: Mandigo – Having different header images on different pagesSorry for the inconvenience, I consolidated several sites into one yesterday. Is everything working now?
Forum: Themes and Templates
In reply to: If a know a cat id how can I get it’s nameLook in wp-includes/category-template.php …
get_the_category_by_ID($cat_ID)->category_nicename
Forum: Developing with WordPress
In reply to: Posts losing custom fieldsI’m using and authoring Another WordPress Meta Plugin. In the plugin I’m using add_post_meta() to store the data and get_post_meta() to retrieve it.
How can a plugin cause the loss of custom field data? I’m curious what UTWs problem was …
Forum: Fixing WordPress
In reply to: Still can’t get Permalinks to work?You could also easily test your .htaccess:
– At the top of your wordpress .htaccess add:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule test http://www.microsoft.com [L,R=301]
</IfModule>If you now access /test you should be redirected to microsoft.com. If not, .htaccess doesn’t work at all.
Forum: Fixing WordPress
In reply to: Still can’t get Permalinks to work?You also need FollowSymLinks for your Directory:
<DocumentRoot “/Users/Sites/uberdose.com”
<Directory “/Users/Sites/”>
Options -Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>Forum: Installing WordPress
In reply to: All pages redirected to index.phpJust some issues I’m thinking of:
– Have you backupped and restored your .htaccess?
– Have you configured mod_rewrite and enabled .htaccess?
This includes configuring your directory with the right directives.Forum: Fixing WordPress
In reply to: How to tell if the ping service is wotkingIf technorati.com picks up your new posts in time chances are it’s working allright.
If you want to make sure 100% you have to setup your own ping URL with a mock that just dumps that it was invoked …
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!Just tried it without any problems.
I suppose this means “There are %s authors/users attached to this weblog”:
Ce blogue compte 3 participants, toutes catégories confonduesIf yes, the if-branch is reached, there must be some other problem.
It could help to take
<?php wp_list_authors(‘optioncount=1&feed=RSS’); ?>
and paste it into the index.php of your theme so you can see whether it works or not.Forum: Fixing WordPress
In reply to: WP-Admin not accessible after transferIs your blog accessible? If not, then chances are php is running into an error without telling you (happens to me all the time).
Check DisplayErrors in php.ini or your log files.