Posts: 5
Threads: 1
Joined: Sep 2013
I am a hobby website builder and only build html/css sites. Please can someone take a look at my integration and advise where I need to make changes to correct. Many thanks.
www.templatetest.co.uk/testimonials.html
Any help will be appreciated.
Jean
Posts: 2,894
Threads: 59
Joined: Jun 2010
Hi Jean,
The link to your stylesheet is incorrect.
<link rel="stylesheet" type="text/css" href="commentics/comments/css/stylesheet.css"/>
Should be:
<link rel="stylesheet" type="text/css" href="comments/css/stylesheet.css"/>
Have
you completed
the interview?
Posts: 5
Threads: 1
Joined: Sep 2013
Thanks for your reply Steven, The bottom code is on my testimonials.html page, so is there another page I need to alter it on.
Jean
(12-Sep-2013, 11:00 AM)Steven Wrote: Hi Jean,
The link to your stylesheet is incorrect.
<link rel="stylesheet" type="text/css" href="commentics/comments/css/stylesheet.css"/>
Should be:
<link rel="stylesheet" type="text/css" href="comments/css/stylesheet.css"/>
Posts: 2,894
Threads: 59
Joined: Jun 2010
I think you also entered an incorrect value for the /comments/ folder URL during the Installer.
So in the Commentics admin panel go to Settings -> System and make sure that the 'Comments URL' setting is like this:
"http://www.templatetest.co.uk/comments/" (without quotes)
Have
you completed
the interview?
Posts: 5
Threads: 1
Joined: Sep 2013
I think I may have to start again Steven. I can't even get into the admin panel. I had a bit of trouble understanding whether I should upload the complete commentics folder or move the comments folder out of the commentics folder before uploading. I wish I had taken notice of my host and learned php 10 years ago.
(13-Sep-2013, 12:03 PM)Steven Wrote: I think you also entered an incorrect value for the /comments/ folder URL during the Installer.
So in the Commentics admin panel go to Settings -> System and make sure that the 'Comments URL' setting is like this:
"http://www.templatetest.co.uk/comments/" (without quotes)
Posts: 5
Threads: 1
Joined: Sep 2013
This is why I am confused. This is the integration code for my page. Should I delete commentics on this line: $cmtx_path = 'commentics/comments/';
<?php
$cmtx_identifier = '1';
$cmtx_reference = 'Page One';
$cmtx_path = 'commentics/comments/';
define('IN_COMMENTICS', 'true'); //no need to edit this line
require $cmtx_path . 'includes/commentics.php'; //no need to edit this line
?>
Jean
Posts: 2,894
Threads: 59
Joined: Jun 2010
You should upload the /comments/ folder and not the /commentics/ folder.
Then the integration line would typically be:
$cmtx_path = 'comments/';
Have a read of the detailed installation instructions:
http://www.commentics.org/wiki/doku.php?...ep_4upload
Also:
http://www.commentics.org/wiki/doku.php?...ng_started
http://www.commentics.org/wiki/doku.php?...ntegration
Yes probably best to start over.
Take a look at the example.php file in the download package.
Have
you completed
the interview?
Posts: 5
Threads: 1
Joined: Sep 2013
Thank you very much for your help Steven.