1 droo Jul 06, 2009 22:14
3 yabba Jul 07, 2009 19:02
John wrote:
goes to this..http://lot1433.com/blog///skins/miami_blue/
Check your $baseurl in /conf/_basic_config.php, it should end with a single /
¥
4 droo Jul 08, 2009 22:23
John wrote:
Seems to me you have an odd file/folder arrangement..
This...http://lot1433.com/blog/index.php?blog=2
goes to this..http://lot1433.com/blog///skins/miami_blue/The rss links in your header are empty...
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="" /> <link rel="alternate" type="application/atom+xml" title="Atom" href="" />
Check that your uploaded b2 files are complete and reflect the complete file structure of the blogs folder
Thanks John.
I see that they are empty but can't find how to fix them. Where can I edit the links?
And should I just put the blog address in the quotes?
5 droo Jul 08, 2009 22:25
6 john Jul 08, 2009 23:27
@droo
I would double check that your $baseurl is in fact correct.
7 droo Jul 10, 2009 15:50
I corrected it in....public_html/blog/conf/_basic_config.php
it was
$baseurl = 'http://lot1433.com/blog///';
so I changed to
$baseurl = 'http://lot1433.com/blog/';
is there another fix?
8 yabba Jul 10, 2009 17:15
Can you copy paste the content of /skins/_html_header.inc.php ? ( post it between [php][/php] tags if you do )
¥
9 droo Jul 10, 2009 19:22
¥åßßå wrote:
Can you copy paste the content of /skins/_html_header.inc.php ? ( post it between [php][/php] tags if you do )
¥
Sorry I am so confused. I am learning though. THANK YOU FOR THE HELP.
Here is what I have:
<?php
/**
* This is the HTML header include template.
*
* For a quick explanation of b2evo 2.0 skins, please start here:
* {@link http://manual.b2evolution.net/Skins_2.0}
*
* This is meant to be included in a page template.
* Note: This is also included in the popup: do not include site navigation!
*
* @package evoskins
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
global $xmlsrv_url;
require_js( 'functions.js' );
require_js( 'rollovers.js' );
skin_content_header(); // Sets charset!
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php locale_lang() ?>" lang="<?php locale_lang() ?>">
<head>
<?php skin_content_meta(); /* Charset for static pages */ ?>
<?php skin_base_tag(); /* Base URL for this skin. You need this to fix relative links! */ ?>
<?php $Plugins->trigger_event( 'SkinBeginHtmlHead' ); ?>
<title><?php
// ------------------------- TITLE FOR THE CURRENT REQUEST -------------------------
request_title( array(
'auto_pilot' => 'seo_title',
) );
// ------------------------------ END OF REQUEST TITLE -----------------------------
?></title>
<meta name="description" content="<?php $Blog->disp( 'shortdesc', 'htmlattr' ); ?>" />
<meta name="keywords" content="<?php $Blog->disp( 'keywords', 'htmlattr' ); ?>" />
<?php robots_tag(); ?>
<meta name="generator" content="b2evolution <?php app_version(); ?>" /> <!-- Please leave this for stats -->
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="<?php echo $xmlsrv_url; ?>rsd.php?blog=<?php echo $Blog->ID; ?>" />
<meta name="viewport" content="width = 750" />
<link rel="stylesheet" href="style.css" type="text/css" />
<?php include_headlines() /* Add javascript and css files included by plugins and skin */ ?>
<?php
$Blog->disp( 'blog_css', 'raw');
$Blog->disp( 'user_css', 'raw');
?>
</head>
<body>
<?php
// ---------------------------- TOOLBAR INCLUDED HERE ----------------------------
require $skins_path.'_toolbar.inc.php';
// ------------------------------- END OF TOOLBAR --------------------------------
echo "\n";
if( is_logged_in() )
{
echo '<div id="skin_wrapper" class="skin_wrapper_loggedin">';
}
else
{
echo '<div id="skin_wrapper" class="skin_wrapper_anonymous">';
}
echo "\n";
?>
<!-- Start of skin_wrapper -->
10 yabba Jul 11, 2009 10:18
I'm beginning to suspect a corrupted file somewhere in your /inc/ folder.
You might like to try upgrading to the latest version ( [url=https://sourceforge.net/project/downloading.php?group_id=85535&filename=b2evolution-2.4.7-stable-2009-05-27.zip&a=44484025]evo2.4.7.zip[/url]) and seeing if that cures your problems.
¥
11 droo Jul 14, 2009 05:29
I have upgraded all of the files. It didn't work. I even did it again with the online installer in case I missed something, but it still didn't fix it. Weird. What could it be?
12 droo Jul 14, 2009 17:03
okay.....so....after some last ditch efforts of searching files and playing around in the admin section, I realized rss was linking to my skin index. In admin, I noticed a few skins available for install, including_rss. Hmmmm. So I installed them and poof!...seems to be fixed! :)
13 yabba Jul 14, 2009 19:55
Glad you solved it because that hadn't even entered my head :P
¥
Seems to me you have an odd file/folder arrangement..
This...http://lot1433.com/blog/index.php?blog=2
goes to this..http://lot1433.com/blog///skins/miami_blue/
The rss links in your header are empty...
Check that your uploaded b2 files are complete and reflect the complete file structure of the blogs folder