Posts: 13
Threads: 1
Joined: Jul 2018
(02-Jul-2018, 08:55 AM)Steven Wrote: Okay so firstly, as you've renamed the /upload/ folder to /comments/, you'll need to change this:
PHP Code:
<?php
$cmtx_folder = '/upload/';
To this:
PHP Code:
<?php
$cmtx_folder = '/comments/';
Also you're meant to install Commentics in the root of your website but it looks like you've installed it in your /hg-blog/ folder. It might be okay though so just ignore that for now.
For some reason $_SERVER['DOCUMENT_ROOT'] appears to be empty on your server. Try changing the require() line to this:
PHP Code:
<?php
require('/Volumes/backup/WEBSITES/016 Heiner Grenzland website ALLE+Panseron/www.heinergrenzland.de/hg-blog' . $cmtx_folder . 'frontend/index.php');
Dear Steven, thanks.
require($_SERVER['DOCUMENT_ROOT'] . $cmtx_folder . 'frontend/index.php');