Nazgul
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrade to 2.0.3 cannot loginIt could be a corrupt transfer when you uploaded the 2.0.3 files.
Try re-uploading wp-includes/pluggable-functions.php, which should contain the wp_get_cookie_login function and see if that fixes the problem.
Forum: Fixing WordPress
In reply to: New page but not listed as a pageTake a look at wp_list_pages, assuming that your theme uses that function. It has an exlude option which you can use to achieve what you want.
Forum: Fixing WordPress
In reply to: Linked TitlesCan’t you just click the Edit or Delete options from the admin interface?
Forum: Installing WordPress
In reply to: failed to install wordpress.Whats the link to your blog?
Maybe we can deduce whats going wrong by viewing the actual error page.
Forum: Plugins
In reply to: Any one wants to help TOC plugin into the loop ?You mean headers with nothing between the Hx and /Hx? You can do that with a small edit to the plugin code.
Change this line (around line 96):
$regex = ‘#<h([1-6])(.*?)>(.*?)</h\1>|<!–nextpage–>#’;
to this:
$regex = ‘#<h([1-6])(.*?)>(.+?)</h\1>|<!–nextpage–>#’;Notice that the second * became a +.
Forum: Plugins
In reply to: Breadcrumb plugin : Could use some suggestionis, opinions, and testers.I like it.
I do have one feature request though. Could it be possible to add an extra parameter to easily mark the current location in the crumb path? (Which would be the last one.)
Something like this:
breadcrumb(“”, “[li]”, “[/li]”, “[li class=\”selected\”]”);And something entirely different. What do you use to display those code snippets on your page?
Forum: Fixing WordPress
In reply to: Footer and middle background dissapearI’m looking at it with Firefox 1.5.0.4, but I don’t see anything weird?
Forum: Fixing WordPress
In reply to: Overnight my footer.php disappeared and login tooCould you post a link to the actual blog? A picture says more than a thousand words.
Forum: Fixing WordPress
In reply to: Is our blog dead? Help!Ask your hosting company if they changed anything on the MySQL (or Apache) side recently.
Forum: Fixing WordPress
In reply to: Links in Sidebar showing on all pagesTo show the links on other pages as well, you’ll have to edit the sidebar.php in your theme. It’s not that hard. Take a look at it and post here if you have trouble figuring it out.
Forum: Fixing WordPress
In reply to: Changing wordpress directory to rootWrong index.php. ??
You should be editing the index.php from WordPress, not the index.php for your theme.
Forum: Fixing WordPress
In reply to: Blog page looks weird – sidebar issue?As I said, fix your validation errors. If I do a view source, I see this line:
[div][font face=”Arial-BoldMT”][strong]Please note that this article is not complete, there are no footnotes – if you have any questions, please [a href=”mailto:[email protected]”]contact me[/a] [/strong][/font][/p]You’re opening a div and closing a p. I think fixing that to both be p fixes your problem.
Forum: Fixing WordPress
In reply to: Changing wordpress directory to rootWhat version of WordPress are you using? Because my index.php does contain that line:
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>Forum: Fixing WordPress
In reply to: Blog page looks weird – sidebar issue?There is something in your content that makes it too wide, which pushes the sidebar down. I think it’s the google ads.
The problem doesn’t occur in your entry pages, because it doesn’t have a sidebar.
I’d also fix your XHTML validation errors and see if that fixes your background color issue.
Forum: Fixing WordPress
In reply to: floating img and unordered list and cssJayjerome, you can’t add a new topic from the Support overview page. On the bottom of that page is a list of forums. If you go there you have the option to open a new topic in the appropriate forum.