Page 1 of 1

Comment submit/preview not working

Posted: Tue Nov 03, 2015 5:30 pm
by Astiolo
I've been trying to set up my blog at http://formulac.eulercode.com/blog/. But hitting submit or preview on the comment form just takes me back to the blog with a URL something like this:

http://formulac.eulercode.com/blog/blog ... t#comments

I've embedded the blog with a wrapper file in the blog directory, which contains the following:

Code: Select all

<?php
$_REQUEST['page'] = 'blog';
ob_start();
require 'index.php';
$serendipity_contents = ob_get_contents();
ob_end_clean();
require '../Test/News.php'; // The Container-File
?>
That file is listed as the Index file and the News.php file calls "<?php echo $serendipity_contents; ?>". Everything aside from the comments, seem to be working. I have messed with the template but the problem is still there when I switch to other templates. I've tried my hardest to find the problem but I can't find it online and I'm not experienced enough to track it down myself.

Is there something I'm missing to enable comments?

Re: Comment submit/preview not working

Posted: Wed Nov 04, 2015 4:55 am
by Astiolo
I ended up disabling comments so that I can share the blog. (Just letting you know in case anyone heads to the site to see the problem)