meckhert
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post-slug rename breaks permalinksGood idea HandySolo. I created a new ticket (#2850).
Forum: Fixing WordPress
In reply to: Post-slug rename breaks permalinksI finally figured this out. It turns out that something is not right with the way WordPress updates the rewrite_rules value in the wp_options table when a post-slug is changed. In order to fix this, I manually went into the wp_options table and deleted the option_value for rewrite_rules. Then I used the permalinks panel in wordpress to regenerate the permalink structure, and like magic, all of my permalinks started working again.
I hope this saves someone some time in the future.
Forum: Themes and Templates
In reply to: wp_list_pages problemI’ll give it a shot and let you guys know. I’ll also try disabling all the plugins I have (really I only have 1 extra, XD Forum) and see if that does anything.
Appreciate the help.
Forum: Themes and Templates
In reply to: wp_list_pages problemI am using the following versions:
WordPress: 2.01
PHP: 5.1.2A quick check of Apache’s error logs has a couple of errors, which seem unrelated:
[Wed Mar 01 12:50:11 2006] [error] [client 127.0.0.1] PHP Warning: Invalid argument supplied for foreach() in \\Wordpress\\wp-includes\\functions.php on line 2117
[Wed Mar 01 12:50:11 2006] [error] [client 127.0.0.1] PHP Warning: Invalid argument supplied for foreach() in \\Wordpress\\wp-includes\\functions.php on line 2117I have tried a few different themes, and I have the same problem with all of them: no output for wp_list_pages(‘title_li=’)
Marc
Forum: Themes and Templates
In reply to: wp_list_pages problemThat’s just it… when I do:
<?php wp_list_pages('title_li='); ?>
nothing is output at all.If I do ‘title_li= ‘, the list does output, but it also adds the heading. The way I read the Codex, it seems like
wp_list_pages('title_li=')
should output something like this:<li>Page1</li>
<li>Page2</li>
…Instead, I get no output at all.
Forum: Themes and Templates
In reply to: wp_list_pages problemReposted with backticks on the code…
I am having a problem with the wp_list_pages template function. What I am trying to do is output the pages I have created under Admin -> Write -> Pages, as list items as part of a larger list. I want the items to appear without the
<ul>
tag. Briefly here is a mock-up of the code I’m using:<ul>
<li>some link
<?php wp_list_pages('title_li='); ?>
</ul>I expect the wp_list_pages to output a
# item for each static page that I have created. Instead, it is not generating any output at all. If I change the tag to wp_list_pages(‘title_li= ‘), I get output, but each of the top page categories is enclosed in<ul>
tags.In summary, shouldn’t I see some content for wp_list_pages(‘title_li=’), or is it really supposed to output nothing?
Forum: Fixing WordPress
In reply to: Comment notification problemIt looks like this is a problem with my ISP, and I have someone helping me to resolve it. I am getting emails for user registrations and lost passwords, but not for comments. I have checked all of the proper boxes under the ‘discussion’ tab, but still nothing.
I take it there must not be many ISPs who have the same setup as mine, but if anyone is having this problem please add on to this thread. We can let the WP developers know about this issue and see if they can create a work around.Forum: Fixing WordPress
In reply to: Comment notification problemI emailed my ISP… I’m waiting to hear back now.
Something strange happened though… When I registered a new user, I did get an email sent to my admin account… but the From address listed some helpdesk person at my ISP… I’m pretty sure that isn’t how it is suppossed to work.
I still don’t receive any notification emails about comments though. I’ll update this thread again when I hear back from my ISP.Forum: Fixing WordPress
In reply to: Comment notification problemIt seems that I am not getting any emails from my website. I registered a test user with another email address and I didn’t get an email at either the admin account or the email address that I registered the test user with.
Is there anything else that could be wrong on my side, or is it time to call my ISP?