Ben cpanel webserver bir yedek kopyasını indirdiğiniz. Benim yerel laptop.The veritabanı üzerinde WAMP yüklemek ve php kullanıcı adı ve şifre belirlenmiştir. Sonra yerel MySQL veritabanına veritabanına yüklenir. Ben phpinfo.php çalışıyor doğrulandı. Ben kurulum dreamweaver benim laptop ekstre web sitesi ile sitenizi yönetmek. Şimdi benim web sitesi için benim laptop arka uç admin sayfaları çalışıyoruz. Ancak önyüzü tamamen yükleme değil ve ben nedenini anlamaya olamaz.
Sayfa Bu yazı görüntüleri açamazsınız beri neye benzediğini görmek için buraya gidin lütfen. dev.quicksalenetwork.com / images / frontend.png
Şimdi giderseniz live development site sensin gibi görünmelidir ne görmek istiyorsunuz.
Ayrıca burada index.php sayfasının kaynak kodu.
<?php
//redirect for install
if(!file_exists('Connections/myconn.php'))
header('Location:install.php');
//install file check
/*if(file_exists('install.php') || file_exists('install2.php') || file_exists('install3.php'))
print '<font color="red"><strong>Please delete install files { install.php , install1.php, install2.php }</strong></font><br>';
*/
//*******************************************************************************
//PHP Real Estate Classifieds
//All Rights reserved by Quick Sale Network inc.
//Do not modify, duplicate, resell with out direct permission from Quick Sale Network inc.
//Script is bound by terms listed in terms.html file
//*******************************************************************************
//fetch template header
include('header.php');
//define varable
define('go','');
//set index varable for switch statment
if (isset($_REQUEST['go']))
$go = $_REQUEST['go']; // requested page
else
$go = ''; // default
switch($go) {
case 'gmap':
include('gmap.php');
break;
case 'photos':
include('photos.php');
break;
case 'resource_center':
include('resource_center.php');
break;
case 'linkdir':
include('linkdir.php');
break;
case 'mailme':
include('formmail.php');
break;
case 'sell':
include('sell.php');
break;
case 'buy':
include('buy.php');
break;
case 'properties':
include('properties.php');
break;
case 'login' :
header("location: members/login.php");
break;
case 'register' :
include('register.php');
break;
case 'pricing' :
include('pricing.php');
break;
case 'calc' :
include('calc.php');
break;
case 'contact' :
include('contact.php');
break;
case 'faq' :
include('faq.php');
break;
case 'features' :
include('features.php');
break;
case 'member_login' :
include('member_login.php');
break;
case 'mailme' :
echo"<br><h4>";
include('formmail.php');
echo"</h4>";
break;
case 'detail' :
include('detail.php');
break;
case 'search' :
include('search.php');
break;
/*case 'home_gmap' :
include('home.php');*/
default:
include('home_gmap.php');
break;
}//end of switch statment
//fetch template footer
include('footer_city.php');
?>
Ben ne yapıyorum yanlış Herhangi bir fikir?