skybluewaters
Forum Replies Created
-
Forum: Plugins
In reply to: Akismet & Yahoo Small BusinessThanks. I had to delete it and re-upload it to my files, but it works now.
Forum: Fixing WordPress
In reply to: rss disappearedI didn’t find the cursed space which plagued me, but I did try switching to a different theme and the rss works now, and I’m fine with that. Not the ideal situation, but one I can certainly live with.
Thanks for your help filosofo and otto42!
Forum: Fixing WordPress
In reply to: rss disappearedWould this be resolved if I changed my theme?
Forum: Fixing WordPress
In reply to: rss disappearedGosh, I’m not sure. This is my wp-blog-header.php:
<?php
if (! isset($wp_did_header)):
if ( !file_exists( dirname(__FILE__) . ‘/wp-config.php’) ) {
if ( strstr( $_SERVER[‘PHP_SELF’], ‘wp-admin’) ) $path = ”;
else $path = ‘wp-admin/’;
die(“There doesn’t seem to be awp-config.phpfile. I need this before we can get started. Need more help? We got it. You can create awp-config.phpfile through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file.”);
}$wp_did_header = true;
require_once( dirname(__FILE__) . ‘/wp-config.php’);
wp();
gzip_compression();require_once(ABSPATH . WPINC . ‘/template-loader.php’);
endif;
?>
Forum: Fixing WordPress
In reply to: rss disappearedI tried the deactivating the plugins one by one, with no luck. I think its very likely a problem with one of the template files. The rss feeds are located in the header.php, which reads thusly:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en”>
<head>
<meta http-equiv=”content-type” content=”text/html; charset=<?php bloginfo(‘charset’); ?>” />
<meta name=”description” content=”<?php bloginfo(‘name’); ?> – <?php bloginfo(‘description’); ?>” />
<meta name=”keywords” content=”” />
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘stylesheet_url’); ?>” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<title><?php bloginfo(‘name’); wp_title(); ?></title>
<?php wp_head(); ?>
</head><body>
<div id=”wrap”><div id=”header”>
<h1>“><?php bloginfo(‘name’); ?></h1>
<?php bloginfo(‘description’); ?>
</div><img id=”frontphoto” src=”<?php bloginfo(‘template_directory’); ?>/img/front.jpg” width=”760″ height=”175″ alt=”” />
<div id=”leftside”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Main Sidebar’) ) : else : ?>
<h2 class=”hide”>Main menu:</h2>
<ul class=”page”>
<?php if (is_page()) { $highlight = “page_item”; } else {$highlight = “page_item current_page_item”; } ?>
<li class=”<?php echo $highlight; ?>”>“>Home
<?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?><?php endif; ?>
</div>
Forum: Fixing WordPress
In reply to: rss disappearedI’m not inclined to disagree, but my rss reader is still giving me an XML Parse Error for all of the following
http://skybluewaters.org/blog1/?feed=rss2
http://skybluewaters.org/blog1/feed/rss2/
http://skybluewaters.org/blog1/feed/rss/
http://skybluewaters.org/blog1/feed/atom
http://skybluewaters.org/blog1/?feed=atomAll of the other feeds I subscribe to are fine, so I’m pretty sure its not with the reader.
Forum: Fixing WordPress
In reply to: rss disappearedThanks for that, unfortunately the issue appears to still be unresolved. Is it possible that this is a PHP issue rather than permalink?
Forum: Fixing WordPress
In reply to: rss disappearedI do have an .htaccess file, which reads thusly:
# BEGIN WordPress
# END WordPress
and I am now using custom permalinks in the date-name style. I’m assuming this is pretty? I’m not sure how I can identify the extra space at the top of the feed to correct that issue, but I’m still getting an XML Parse Error.
Forum: Fixing WordPress
In reply to: rss disappearedIt was Date and Name based.