View previous topic :: View next topic |
Author |
Message |
runaway
Joined: 07 Jul 2004 Posts: 19 Location: FL, USA
|
Posted: Thu Jan 13, 2005 1:31 am Post subject: i put b2 in tables and now my comments don't work! |
|
|
hi, i just put b2 in a table using php include, but now whenever i click to leave a comment, i get a "page doesn't exist" message. i didn't change anything in the code, i just put a php include on my index page. can somebody please help me? my web page is http://www.runaway-star.net. thanks a lot in advance! _________________ "You know what they say about monkeys: sometimes, monkeys die..." |
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 906 Location: Oslo, Norway
|
|
Back to top |
|
 |
runaway
Joined: 07 Jul 2004 Posts: 19 Location: FL, USA
|
Posted: Thu Jan 13, 2005 5:57 pm Post subject: |
|
|
Um, I read that like 3 times but still can't figure it out. I've tried to edit what I thought I was supposed to (based on that document) but apparently it wasn't that. So I'm still lost there... oh by the way, when I go to my b2 edit and click on "view site" the comments are working but not on the page.
And I know my website doesn't display right in other browsers, I don't know how to make it compatible for the rest but i'm working on it; thank you  _________________ "You know what they say about monkeys: sometimes, monkeys die..." |
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 906 Location: Oslo, Norway
|
|
Back to top |
|
 |
runaway
Joined: 07 Jul 2004 Posts: 19 Location: FL, USA
|
Posted: Sat Jan 15, 2005 8:17 pm Post subject: |
|
|
This is the code for my b2 index.php, I don't see anywhere a link to b2commentspopup.php. In my index (default) page, where my b2 is, the link to my comments points to www.runaway-star.net/b2commentspopup.php, not runaway-star.net/b2/b2commentspopup.php, but I don't know where to change it.
Code: | <?php /* Don't remove this line, it calls the b2 function files ! */ $blog=1; include ("blog.header.php"); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' :: ') ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="reply-to" content="<?php bloginfo('admin_email'); ?>" />
<meta http-equiv="imagetoolbar" content="no" />
<meta content="TRUE" name="MSSmartTagsPreventParsing" />
<style type="text/css" media="screen">
@import url( layout2b.css );
</style>
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
<link rel="alternate" type="application/rdf+xml" title="RDF" href="<?php bloginfo('rdf_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php comments_popup_script() ?>
</head>
<body>
<div id="content">
<!-- // b2 loop start -->
<?php while($row = mysql_fetch_object($result)) { start_b2(); ?>
<b><?php the_date("m.d.Y"); ?></b>
<br><br>
<?php permalink_anchor(); ?>
<div class="storyTitle"><?php the_title(); ?>
</div>
<p>
<div class="storyContent">
<?php the_content(); ?>
<br>
<div class="rightFlush">
<?php link_pages("<br />Pages: ","<br />","number") ?>
<br>
<p align="right"><span class="storyAuthor"><b><?php the_author() ?></b> ran away @ <?php the_time() ?></span>
<br>
<a href="<?php permalink_link() ?>"></a><?php comments_popup_link("no stars", "1 star", "% stars") ?></p>
<?php trackback_rdf() ?>
<!-- this includes the comments and a form to add a new comment -->
<?php include ("b2comments.php"); ?>
</div>
</div>
<!-- // this is just the end of the motor - don't touch that line either :) -->
<?php } ?>
</div>
</body>
</html>
|
Thanks for all your help, where would we be without you? _________________ "You know what they say about monkeys: sometimes, monkeys die..." |
|
Back to top |
|
 |
|