vbulletinden lisans aldım ve vbulletin.com resmi sitesinden 3.6.8 indirdim ve forumuma attım eski foruma bir klasör açtım o orda çalışıyor başka bir klasörede bu indirdiğim 3.6.8 in upload klasöründekilerin tamamını attım yani normalde yaptığım gibi fakat sorun şu ki uzantısı php değil phtml bu bir sorun yaratırmı vede phtml olması normalmi vbulletin uzantısınımı değiştirdi?
Her neyse root/install/install.phtml dediğimde beyaz bir sayfada aşağıdaki yazı geliyor çookk uzuyor...
PHP- Kodu:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.6.8 - Licence Number XXXXXXXXXXXXX
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2007 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'install.phtml');
define('VERSION', '3.6.8'); // change this in class_core as well!
define('TIMENOW', time());
// ########################## REQUIRE BACK-END ############################
if ($_GET['step'] > 2 OR $_POST['step'] > 2)
{
require_once('./installcore.phtml');
// connected to the database now lets load schema
require_once(DIR . '/install/mysql-schema.phtml');
}
else
{
if ($_ENV['REQUEST_URI'] OR $_SERVER['REQUEST_URI'])
{
$scriptpath = $_SERVER['REQUEST_URI'] ? $_SERVER['REQUEST_URI'] : $_ENV['REQUEST_URI'];
}
else
{
if ($_ENV['PATH_INFO'] OR $_SERVER['PATH_INFO'])
{
$scriptpath = $_SERVER['PATH_INFO'] ? $_SERVER['PATH_INFO']: $_ENV['PATH_INFO'];
}
else if ($_ENV['REDIRECT_URL'] OR $_SERVER['REDIRECT_URL'])
{
$scriptpath = $_SERVER['REDIRECT_URL'] ? $_SERVER['REDIRECT_URL']: $_ENV['REDIRECT_URL'];
}
else
{
$scriptpath = $_SERVER['PHP_SELF'] ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF'];
}
if ($_ENV['QUERY_STRING'] OR $_SERVER['QUERY_STRING'])
{
$scriptpath .= '?' . ($_SERVER['QUERY_STRING'] ? $_SERVER['QUERY_STRING'] : $_ENV['QUERY_STRING']);
}
}
define('SCRIPTPATH', $scriptpath);
define('SKIPDB', true);
require_once('./installcore.phtml');
}
// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################
install/install.phtml yaptığımda bu çıkıyor...
config.phtml yi düzenledim ama gene aynı beyaz sayfada bu yazı çıkıyor. Çok uzun ama bu kadarını aldım yine...
birde uzantısı php değil phtml bakın

nerede hata yapıyorum. Sorun nedir, neden uzantılar php değil ve Ne yapmam lazım?