ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing Admin UsernameForum: Fixing WordPress
In reply to: Parsing errorForum: Fixing WordPress
In reply to: Parsing errorForum: Themes and Templates
In reply to: Argh. I need help with an IE .css issueTo me it seems that whole search area/credits area is needlessly complex in terms of CSS. You might have better luck creating a containing DIV for that entire intended box area and positioning that than the current method. I suspect that the positioning problem has something to do with the odd search box formatting itself, but I can’t say for certain.
Forum: Themes and Templates
In reply to: can i integrate wordpress into an existing html site?Forum: Fixing WordPress
In reply to: “edit.php” seem to not work properly!Xaero, if the
edit.phpfile existed where it’s supposed to exist, there wouldn’t be a 404 error returned, no matter how bad that file was messed up. For whatever reason yourwp-admin/edit.phpsimply cannot be read by the Apache server, period. Check permissions, make sure your blog URL is set correctly, etc.Forum: Fixing WordPress
In reply to: Comment patch parsing errorOy, next time please post here and give us a link.
Forum: Fixing WordPress
In reply to: Can’t get links to be valid with or without permalinksI don’t think post slugs are regenerated once they’ve been generated once. Changing a title doesn’t recreate the slug.
Forum: Plugins
In reply to: Fuzzy recent posts, updates and commentsOops. Looks like Denis included the use of a 1.5.1 function :). rocky, you’d need to be running one of the 1.5.1 nightlies.
Forum: Fixing WordPress
In reply to: posts with href linksMost welcome, glad you got it sorted out.
Forum: Fixing WordPress
In reply to: database questionI’d say the easiest thing to do would be to move your existing database over, install the 1.5 files, run the upgrade script on the database and then get rid of the users you don’t want from the admin pages.
Forum: Fixing WordPress
In reply to: IE keeps wanting to download the php fileshttp://wordpress.org/support/search.php?q=IE+download+PHP
See if something there helps.
Forum: Fixing WordPress
In reply to: posts with href linksGo to “Options => Discussion” and deselect the option that says
Attempt to notify any Weblogs linked to from the article (slows down posting.).Forum: Fixing WordPress
In reply to: A bit of php helpI do something similar but opposite for my blog (display content if it exists, otherwise excerpt). Try this within The Loop:
<?php if( '' !== $post->post_excerpt ) {
the_excerpt();
} else {
the_content();
} ?>Forum: Fixing WordPress
In reply to: Paged display of postsSee this plugin.