Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   TSSE 5.6 Heavy Modded (http://www.bvlist.com/showthread.php?t=7756)

firefly007 30th December 2014 11:12

What Web server are you using?? Apache, Nginx, Lighttpd

You need to install Mysql support for php

Try this..

Code:

apt-get install php5-mysql
and then restart WebServer

Apache2
Code:

/etc/init.d/apache2 restart
Nginx
Code:

/etc/init.d/nginx restart

oneillza 30th December 2014 11:19

very strong

haha thanx man

Bump: ok so all installed good and i have access..

I had a look in the back end and all the plugins are active but none of them show on the main menu.

THere is no shoutbox nothing

Am i doing something wrong here?

firefly007 30th December 2014 11:55

Ok try this..

1)
Check what PHP version you are using..

Code:

php-v
If you are running anything above 5.3 when using TS you are going to run into problems

2) edit index.php in home/user/ts/www for example

and add this below
PHP Code:

error_reporting(E_ALL); ini_set('display_errors'1); 

save

and then go back to the site and refresh the page and paste the errors that are shown where the blocks/plugins should be

oneillza 30th December 2014 12:04

i have version 5.4

Cant seem to find the

firefly007 30th December 2014 12:11

Look at the top of the page for something like this
PHP Code:

<?
/***********************************************/
/*=========[TS Special Edition v.5.6]==========*/
/*=============[Special Thanks To]=============*/
/*        DrNet - wWw.SpecialCoders.CoM        */
/*          Vinson - wWw.Decode4u.CoM          */
/*    MrDecoder - wWw.Fearless-Releases.CoM    */
/*           Fynnon - wWw.BvList.CoM           */
/***********************************************/

To


PHP Code:

<?
error_reporting
(E_ALL); ini_set('display_errors'1);
/***********************************************/
/*=========[TS Special Edition v.5.6]==========*/
/*=============[Special Thanks To]=============*/
/*        DrNet - wWw.SpecialCoders.CoM        */
/*          Vinson - wWw.Decode4u.CoM          */
/*    MrDecoder - wWw.Fearless-Releases.CoM    */
/*           Fynnon - wWw.BvList.CoM           */
/***********************************************/


oneillza 30th December 2014 12:21

if i do that then my entire page goes down XD:suicide:

firefly007 30th December 2014 12:28

Ok try this..

PHP Code:

error_reporting(E_ALL & ~E_NOTICE); 

So it looks like this

PHP Code:

<?
error_reporting
(E_ALL & ~E_NOTICE);
/***********************************************/
/*=========[TS Special Edition v.5.6]==========*/
/*=============[Special Thanks To]=============*/
/*        DrNet - wWw.SpecialCoders.CoM        */
/*          Vinson - wWw.Decode4u.CoM          */
/*    MrDecoder - wWw.Fearless-Releases.CoM    */
/*           Fynnon - wWw.BvList.CoM           */
/***********************************************/


oneillza 30th December 2014 13:47

ok so that code does not break the site anymore but it also does not display anything.

firefly007 30th December 2014 14:10

Are you just getting a white page?


Try this..
PHP Code:

error_reporting(-1); 

That should turn all reporting on

Did you check what PHP version your are running?

In shell

php -v

DND 30th December 2014 14:17

etc/php5/php.ini
display_errors = On


All times are GMT +2. The time now is 09:29.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.