• 18-01-2013, 13:46:21
    #1
    Üyeliği durduruldu
    Arkadaşlar ne yaptıysam düzeltemedim bu kısmı yardımcı olur musunuz?
    Warning: include(Templates/a2b/sendback_.tpl) [function.include]: failed to open stream: No such file or directory in /home/xxx/public_html/a2b.php on line 115
    
    Warning: include(Templates/a2b/sendback_.tpl) [function.include]: failed to open stream: No such file or directory in /home/xxxx/public_html/a2b.php on line 115
    
    Warning: include() [function.include]: Failed opening 'Templates/a2b/sendback_.tpl' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxx/public_html/a2b.php on line 115
    115.satırda burası
    include ("Templates/a2b/sendback_" . $database->getUserField($to['owner'], 'tribe', 0) . ".tpl");
  • 18-01-2013, 13:47:54
    #2
    sendback_.tpl dosyası yok.
  • 18-01-2013, 14:14:41
    #3
    İlk durum değerlendirmesinde, $database->getUserField($to['owner'], 'tribe', 0) bu fonksiyon boş ya da FALSE dönüyor anlamına geliyor.

    --

    sendback_***.tpl
    bu yapıda dosyanın olmaması ikinci durum için geçerli.
  • 18-01-2013, 16:58:29
    #4
    Üyeliği durduruldu
    miscel adlı üyeden alıntı: mesajı görüntüle
    İlk durum değerlendirmesinde, $database->getUserField($to['owner'], 'tribe', 0) bu fonksiyon boş ya da FALSE dönüyor anlamına geliyor.

    --

    sendback_***.tpl
    bu yapıda dosyanın olmaması ikinci durum için geçerli.
    1.durum için düzeltme nasıl yapabilirim.

    2.durum için ise normalde sendback_1.tpl sendback_2.tpl gibi dosyalar var böyle gidiyor normalde bunlara direk gitmesi gerekmez mi? bunu mutlaka olması gerekiyor mu?
  • 18-01-2013, 17:02:46
    #5
    $database->getUserField($to['owner'], 'tribe', 0) bu fonksiyondan doğru sonucu elde edemiyorsunuz kesin olarak bu görünüyor.

    bu fonksiyonla ne amaçlanmış, bu fonksiyondan önce $to['owner'] değişkeninin çıktısı nedir. Fonksiyon kodları nelerdir.

    function getUserField( metnini dosyalarınızın içinde aratırsanız fonksiyonu da göreceksiniz.
  • 18-01-2013, 17:09:03
    #6
    Üyeliği durduruldu
    <?php
    header ("Content-Type: text/html; charset=iso-8859-9");
    ?>
    <?php
    
    include("GameEngine/Village.php");
    include("GameEngine/Units.php");
    
    $start = $generator->pageLoadTimeStart();
    if(isset($_GET['newdid'])) {
    	$_SESSION['wid'] = $_GET['newdid'];
    	header("Location: ".$_SERVER['PHP_SELF']);
    }
    else {
    $building->procBuild($_GET);
    }
    
    if(isset($_GET['id'])) {
    	$id = $_GET['id'];
    }
    if(isset($_GET['w'])) {
    	$w = $_GET['w'];
    }
    if(isset($_GET['r'])) {
    	$r = $_GET['r'];
    }
    if(isset($_GET['o'])) {
        $o = $_GET['o'];
        $oid = $_GET['z'];
        $too = $database->getOasisField($oid,"conqured");
        if($too['conqured'] == 0){$disabledr ="disabled=disabled";}else{
        $disabledr ="";
        }
        $disabled ="disabled=disabled";
        $checked  ="checked=checked";
    }
    	$process = $units->procUnits($_POST);	
    
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html>
    <head>
    	<title><?php
    
            echo SERVER_NAME
    
    ?></title>
        <link rel="shortcut icon" type="image/x-icon" href="/favicon.gif">
    	<meta http-equiv="cache-control" content="max-age=0" />
    	<meta http-equiv="pragma" content="no-cache" />
    	<meta http-equiv="expires" content="0" />
    	<meta http-equiv="imagetoolbar" content="no" />
    	<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    	<script src="mt-full.js?0faaa" type="text/javascript"></script>
    	<script src="unx.js?0faaa" type="text/javascript"></script>
    	<script src="new.js?0faaa" type="text/javascript"></script>
    	<link href="<?php
    
            echo GP_LOCATE;
    
    ?>lang/en/lang.css?f4b7c" rel="stylesheet" type="text/css" />
    	<link href="<?php
    
            echo GP_LOCATE;
    
    ?>lang/en/compact.css?f4b7c" rel="stylesheet" type="text/css" />
    	<?php
    
            if($session->gpack == null || GP_ENABLE == false) {
            	echo "
    	<link href='" . GP_LOCATE . "travian.css?e21d2' rel='stylesheet' type='text/css' />
    	<link href='" . GP_LOCATE . "lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
            } else {
            	echo "
    	<link href='" . $session->gpack . "travian.css?e21d2' rel='stylesheet' type='text/css' />
    	<link href='" . $session->gpack . "lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
            }
    
    ?>
    	<script type="text/javascript">
    
    		window.addEvent('domready', start);
    	</script>
    </head>
     
     
    <body class="v35 ie ie8">
    <div class="wrapper">
    <img style="filter:chroma();" src="img/x.gif" id="msfilter" alt="" />
    <div id="dynamic_header">
    	</div>
    <?php
    
            include ("Templates/header.tpl");
    
    ?>
    <div id="mid">
    <?php
    
            include ("Templates/menu.tpl");
    
    ?>
    <div id="content"  class="a2b">
    <?php
    
            if(!empty($id)) {
            	include ("Templates/a2b/newdorf.tpl");
            } else
            	if(isset($w)) {
            		$enforce = $database->getEnforceArray($w, 0);
            		if($enforce['vref'] == $village->wid) {
            			$to = $database->getVillage($enforce['from']);
            			$ckey = $w;
            			include ("Templates/a2b/sendback_" . $database->getUserField($to['owner'], 'tribe', 0) . ".tpl");
    
    
            		} else {
            			include ("Templates/a2b/units_" . $session->tribe . ".tpl");
            			include ("Templates/a2b/search.tpl");
            		}
            	} else
            		if(isset($r)) {
            			$enforce = $database->getEnforceArray($r, 0);
            			if($enforce['from'] == $village->wid) {
            				$to = $database->getVillage($enforce['from']);
            				$ckey = $r;
            				include ("Templates/a2b/sendback_" . $database->getUserField($to['owner'], 'tribe', 0) . ".tpl");
            			} else {
            				include ("Templates/a2b/units_" . $session->tribe . ".tpl");
            				include ("Templates/a2b/search.tpl");
            			}
            		} else {
            			if(isset($process['0'])) {
            				$coor = $database->getCoor($process['0']);
            				include ("Templates/a2b/attack.tpl");
            			} else {
            				include ("Templates/a2b/units_" . $session->tribe . ".tpl");
            				include ("Templates/a2b/search.tpl");
            			}
            		}
    
    ?>
    
    <div id="side_info">
    <?php
    
            		include ("Templates/quest.tpl");
            include ("Templates/news.tpl");
            include ("Templates/links.tpl");
    
    ?>
    </div>
    <div class="clear"></div>
    </div>
    <div class="footer-stopper"></div>
    <div class="clear"></div>
    <?php
    
            include ("Templates/footer.tpl");
            include ("Templates/res.tpl");
    
    ?>
    <div id="stime">
    <div id="ltime">
    <div id="ltimeWrap">
    <?php
    
            echo CALCULATED;
    
    ?> <b><?php
    
            echo round(($generator->pageLoadTimeEnd() - $start) * 1000);
    
    ?></b> ms
     
    <br /><?php
    
            echo SERVER_TIME;
    
    ?> <span id="tp1" class="b"><?php
    
            echo date('H:i:s');
    
    ?></span>
    </div>
    	</div>
    </div>
    </div>
    	</div>
    <div id="ce"></div>
    <img style="RIGHT: 0px; POSITION: absolute; TOP: 0px" alt="TÜRKÝYE CANIM FEDA" border="0" src="img/sagbayrak.gif" /><center><p></a></p></center><a href="http://bilgi-depom.tr.gg/sitenin-sag-ust-kosesine-bayrak-kodu.htm"></a>
    <div id="bayrak" style="z-index: 0; position: absolute; overflow: hidden; top: 0px; left: 0px"><img border="0" alt="Sol Üst Bayrak" width="100" height="100" src="img/solbayrak.gif"  /></div>
    <script type="text/javascript" src="http://radarurl.com/js/radarurl_widget.js"></script><script type="text/javascript">radarurl_call_radar_widgetv2({edition:"Dynamic",location:"bottomcenter"})</script><noscript><a href="http://radarurl.com/">RadarURL</a></noscript>
    </html>
    </body>
     <style type=?"text/?css">
    body { 
    cursor: url(img/kilic.cur), default; 
    }
    </style><style type="text/css">
    body { 
    cursor: url(img/kilic.cur), default; 
    }
    </style>
    </html>
    Kodların tamamı bu aslında çok şey denedim ama hiç birini beni sonuca ualştırmadı..Bana yardımcı olabilir misiz?
  • 18-01-2013, 17:32:34
    #7
    database ayarlarını yaptın mı, databasede sorun var gibi görünüyor... (travianZ sanırım bu)
  • 18-01-2013, 20:36:46
    #8
    Üyeliği durduruldu
    onlarda problem yok yaptım bi kaç yerde var daha bir sürü varda düzelttim bunun gibi bi tane var yeni değiştirebileceğim dosyalar olsa değiştircem bunlarla bazılarını değişştireiyorum ama işe yaramıyor asker bastıkça basıyor saldıraya gidiyorlar sürte 4 milyar oluyor asker desen öyle