View Single Post
  #7  
Old 4th May 2020, 22:07
serseri06 serseri06 is offline
Member
 
Join Date: Oct 2016
Posts: 3
Default
Quote:
Originally Posted by Rendevous View Post
what version of php and msysql are you running?
Php 5.6 and marianDB 5.5

Bump:
Quote:
Originally Posted by Napon View Post
What Plarform are you using on the sever ?
VERSION 5.6

install as
<?
should be

<?php
You will need to set all <? with <?php as you can see it will error out
this is my ts_plugin_config
In include/plugins/ts_plugin_config.php
You see tag at top
<?php
Code:
<?php
define('TS_C_VERSION', '1.2 by xam');
// Security Check.
if (!defined('IN_PLUGIN_SYSTEM'))
{
	 die("<font face='verdana' size='2' color='darkred'><b>Error!</b> Direct initialization of this file is not allowed.</font>");
}

// Plugin Configuration: START
$_left_plugin_width = '175'; // Leave this default for better results..
$_right_plugin_width = '175'; // Leave this default for better results..
$_left_plugin_padding_right = '15px'; // Leave this default for better results..
$_right_plugin_padding_left = '15px'; // Leave this default for better results..
$_div_padding_bottom = '15px'; // Leave this default for better results..
$_title_bracket = '»'; // Leave this default for better results..
define('MAX_NEWS', 1); // How many news that you want to show on index page. ie: 3
// Plugin Configuration: END
?>
thanks for the answer. I fixed the problem I reloaded the server from scratch
Reply With Quote