Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   I have a blank page installation (http://www.bvlist.com/showthread.php?t=9068)

bastia1905 16th April 2013 09:41

I have a blank page installation
 
Hello I download and transfer tests on my server and chmod the files I need but when I go to / setup / index.php I have a blank page are what it takes to change a file or something else thank you for your answers.

I lament my english I'm french and I used google translate to write to you.

joeroberts 16th April 2013 13:24

please what php Version is your server running?

bastia1905 16th April 2013 14:13

Quote:

Originally Posted by joeroberts (Post 40386)
please what php Version is your server running?

MySQL

  • Serveur: Localhost via UNIX socket
  • Version du serveur: 5.5.29-0ubuntu0.12.10.1
  • Version du protocole: 10
  • Jeu de caractères pour MySQL: UTF-8 Unicode (utf8)
Serveur web

  • Apache/2.2.22 (Ubuntu)
  • Version du client MySQL: 5.5.29
  • Extension PHP: mysqli

phpMyAdmin

  • Version: 3.4.11.1deb1

Bump: Should we modify files or that it is directly in the instalation because I've just chmod files :

Quote:

avatars/user = 777
cache = 777
imdb-images = 777
include/configdata.php = 777
UserFiles = 777
phpBB3/config.php = 777
phpBB3/cache = 777
phpBB3/files = 777
phpBB3/images/avatars/upload = 777

joeroberts 16th April 2013 15:01

in include/config.php find
PHP Code:

ob_start("ob_gzhandler"); 

and replace it with
PHP Code:

if (function_exists('ob_gzhandler') && !ini_get('zlib.output_compression'))
ob_start('ob_gzhandler');
 else
ob_start(); 

find
PHP Code:

 if (!ini_get("register_globals")) {
@
import_request_variables('GPC');


and replace with
PHP Code:

 if (!ini_get("register_globals")) {
 if (
phpversion() < '5.4') {
@
import_request_variables('GPC');
}else{
 @
extract($_REQUESTEXTR_PREFIX_SAME,'GPS');
}


and do the same in canfig_lite.php


All times are GMT +2. The time now is 20:10.

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