• 18-07-2010, 01:01:18
    #1
    Üyeliği durduruldu
    Arkadaşlar wordpress sitemde headerde reklam vardı onun kodlarını kaldırrıken başında div li bir kod vardı ama unuttum onu da sildim yanlışlıkla ve site bozuldu
    yani sadece header kodlarında sorun var sadece oradan bi kod silince bozuldu site tümden
    www.tezzat.com
    nasıl düzeltebilirim arkadaşlar lütfen yardımcı olun şimdiden teşekkür ediyorum

    Header.php kodları da

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="tr-TR"> 
    <head profile="http://gmpg.org/xfn/11"> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    <meta name="robots" content="index,follow" /> 
    <meta name="Author" content="Leyfear.com" /> 
    <meta name="revisit-after" content="1 day" /> 
    <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
    <?php if(is_single()) { ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php $img = get_post_custom_values("resim"); $img=urldecode($img[0]); ?>
    <?php $video = get_post_custom_values("link"); $video=urldecode($video[0]); ?>
    
    <link rel="image_src" href="<?php echo $img;?>" /><?php endwhile; else: endif; ?>     <?php } ?>    
    <meta name="title" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?> />
    <meta name="description" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?>" />
    <meta name="medium" content="video" />
    <link rel="video_src" href="http://www.tezzat.com/player-viral.swf?file=<?=$video?>"/>
    <meta name="video_height" content="200" />
    <meta name="video_width" content="300" />
    <meta name="video_type" content="application/x-shockwave-flash" />
    
        <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
        <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
        <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
        <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
    <link rel="stylesheet" href="<?php echo get_bloginfo('template_directory')?>/share.css" type="text/css"/>
    <script src="<?php echo get_bloginfo('template_directory')?>/jquery.js" type="text/javascript"></script> 
    <script src="<?php echo get_bloginfo('template_directory')?>/share.js" type="text/javascript"></script> 
    <script src="<?php echo get_bloginfo('template_directory')?>/indir.js" type="text/javascript"></script> 
    <script type="text/javascript">
    jQuery(document).ready(function($){$('ul#orbs').imgbubbles({factor:1.00}) 
    $('ul#squares').imgbubbles({factor:1.5}) }
    )</script>
        <?php wp_head() // For plugins ?></head>
    
    <body>
    
    <div id="wrapper">
        <div id="header">
            <div id="menu">
                <ul id="pagemenu">
                    <li><a href="<?php bloginfo('url') ?>">Ana Sayfa</a></li>
                    <?php wp_list_pages('depth=2&sort_column=menu_order&title_li='); ?>
                </ul>
                
                <div id="more">
                    <?php get_search_form(); ?>
                    <ul id="moremenu">
                        <li>
                        <form method="POST" action="facebook/index.php">
        <input name="url" onfocus="this.value=''"  type="text" size=50 class="videokutusu" value="Video Adresini Buraya Girin..." />
        <input type="submit" name="gonder" value="İndir" /> 
    
    </form>
    
                        </li>
                        <li>
                            <a href="#" onclick="return false">Beslen</a>
                            <ul id="feedmenu">
                                <li class="feedli"><a class="notajax" href="<?php bloginfo('rss2_url'); ?>">Son Videolar</a></li>
                    </ul>
                        </li>
                        <li>
                        <?php wp_loginout(); ?>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        
        <div id="container">
            
            <div id="content">
                <div id="title">
                    <h1>
                        <a href="<?php bloginfo('url') ?>" title="<?php echo wp_specialchars( get_bloginfo('name'), 1 ) ?>" rel="home">
                            <?php bloginfo('name') ?>
                        </a>
                    </h1>
                    
                                                                                    <div class="istatistik">                    <?php
    $numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish' and post_type='post'");
    if (0 <$numposts) $numposts = number_format($numposts);
    $numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'");if (0 < $numcomms) $numcomms = number_format($numcomms);
    $query = mysql_query("SELECT SUM(meta_value) as toplam FROM wp_postmeta where meta_key='views'");  
    $row = mysql_fetch_array($query); 
    ?>
                        <strong>İstatistikler:</strong>&nbsp; Toplam Video: <?=$numposts?>&nbsp;&nbsp;&nbsp;Toplam Yorum: <?=$numcomms?>&nbsp;&nbsp;&nbsp; Toplam İzlenme: <?=$row['toplam']?><br>
    <script type="text/javascript"><!--
    google_ad_client = "pub-6930638195159494";
    /* tezzat ust baglantı */
    google_ad_slot = "6122028836";
    google_ad_width = 728;
    google_ad_height = 15;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
                        </div>
  • 18-07-2010, 01:02:30
    #2
    kodları kopyalar mısınız buraya?
  • 18-07-2010, 01:03:16
    #3
    Üyeliği durduruldu
    VicE adlı üyeden alıntı: mesajı görüntüle
    kodları kopyalar mısınız buraya?
    kopyaladım hocam konuya
  • 18-07-2010, 01:05:33
    #4
    ⭐ EN UCUZ CHATGPT 5.5⚡
    Header.php deki php kodlarını manuel elle yazarsanız siteniz daha hızlı açılır..

    <title>başlığınız</title> gibi.. php kodlarını elle girin..
  • 18-07-2010, 01:06:21
    #5
    Alıntı
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="tr-TR">
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="robots" content="index,follow" />
    <meta name="Author" content="Leyfear.com" />
    <meta name="revisit-after" content="1 day" />
    <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
    <?php if(is_single()) { ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php $img = get_post_custom_values("resim"); $img=urldecode($img[0]); ?>
    <?php $video = get_post_custom_values("link"); $video=urldecode($video[0]); ?>

    <link rel="image_src" href="<?php echo $img;?>" /><?php endwhile; else: endif; ?> <?php } ?>
    <meta name="title" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?> />
    <meta name="description" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?>" />
    <meta name="medium" content="video" />
    <link rel="video_src" href="http://www.tezzat.com/player-viral.swf?file=<?=$video?>"/>
    <meta name="video_height" content="200" />
    <meta name="video_width" content="300" />
    <meta name="video_type" content="application/x-shockwave-flash" />

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
    <link rel="stylesheet" href="<?php echo get_bloginfo('template_directory')?>/share.css" type="text/css"/>
    <script src="<?php echo get_bloginfo('template_directory')?>/jquery.js" type="text/javascript"></script>
    <script src="<?php echo get_bloginfo('template_directory')?>/share.js" type="text/javascript"></script>
    <script src="<?php echo get_bloginfo('template_directory')?>/indir.js" type="text/javascript"></script>
    <script type="text/javascript">
    jQuery(document).ready(function($){$('ul#orbs').im gbubbles({factor:1.00})
    $('ul#squares').imgbubbles({factor:1.5}) }
    )</script>
    <?php wp_head() // For plugins ?></head>

    <body>

    <div id="wrapper">
    <div id="header">
    <div id="menu">
    <ul id="pagemenu">
    <li><a href="<?php bloginfo('url') ?>">Ana Sayfa</a></li>
    <?php wp_list_pages('depth=2&sort_column=menu_order&titl e_li='); ?>
    </ul>

    <div id="more">
    <?php get_search_form(); ?>
    <ul id="moremenu">
    <li>
    <form method="POST" action="facebook/index.php">
    <input name="url" onfocus="this.value=''" type="text" size=50 class="videokutusu" value="Video Adresini Buraya Girin..." />
    <input type="submit" name="gonder" value="İndir" />

    </form>

    </li>
    <li>
    <a href="#" onclick="return false">Beslen</a>
    <ul id="feedmenu">
    <li class="feedli"><a class="notajax" href="<?php bloginfo('rss2_url'); ?>">Son Videolar</a></li>
    </ul>
    </li>
    <li>
    <?php wp_loginout(); ?>
    </li>
    </ul>
    </div>
    </div>
    </div>

    <div id="container">

    <div id="content">
    <div id="title">
    <h1>
    <a href="<?php bloginfo('url') ?>" title="<?php echo wp_specialchars( get_bloginfo('name'), 1 ) ?>" rel="home">
    <?php bloginfo('name') ?>
    </a>
    </h1>

    <div class="istatistik"> <?php
    $numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish' and post_type='post'");
    if (0 <$numposts) $numposts = number_format($numposts);
    $numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'");if (0 < $numcomms) $numcomms = number_format($numcomms);
    $query = mysql_query("SELECT SUM(meta_value) as toplam FROM wp_postmeta where meta_key='views'");
    $row = mysql_fetch_array($query);
    ?>
    <strong>İstatistikler:</strong>&nbsp; Toplam Video: <?=$numposts?>&nbsp;&nbsp;&nbsp;Toplam Yorum: <?=$numcomms?>&nbsp;&nbsp;&nbsp; Toplam İzlenme: <?=$row['toplam']?><br>
    <script type="text/javascript"><!--
    google_ad_client = "pub-6930638195159494";
    /* tezzat ust baglantı */
    google_ad_slot = "6122028836";
    google_ad_width = 728;
    google_ad_height = 15;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </div>
    </div></div>

    Alıntı
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="tr-TR">
    <head profile="http://gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="robots" content="index,follow" />
    <meta name="Author" content="Leyfear.com" />
    <meta name="revisit-after" content="1 day" />
    <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
    <?php if(is_single()) { ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php $img = get_post_custom_values("resim"); $img=urldecode($img[0]); ?>
    <?php $video = get_post_custom_values("link"); $video=urldecode($video[0]); ?>

    <link rel="image_src" href="<?php echo $img;?>" /><?php endwhile; else: endif; ?> <?php } ?>
    <meta name="title" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?> />
    <meta name="description" content="<?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?>" />
    <meta name="medium" content="video" />
    <link rel="video_src" href="http://www.tezzat.com/player-viral.swf?file=<?=$video?>"/>
    <meta name="video_height" content="200" />
    <meta name="video_width" content="300" />
    <meta name="video_type" content="application/x-shockwave-flash" />

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'sandbox' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
    <link rel="stylesheet" href="<?php echo get_bloginfo('template_directory')?>/share.css" type="text/css"/>
    <script src="<?php echo get_bloginfo('template_directory')?>/jquery.js" type="text/javascript"></script>
    <script src="<?php echo get_bloginfo('template_directory')?>/share.js" type="text/javascript"></script>
    <script src="<?php echo get_bloginfo('template_directory')?>/indir.js" type="text/javascript"></script>
    <script type="text/javascript">
    jQuery(document).ready(function($){$('ul#orbs').im gbubbles({factor:1.00})
    $('ul#squares').imgbubbles({factor:1.5}) }
    )</script>
    <?php wp_head() // For plugins ?></head>

    <body>

    <div id="wrapper">
    <div id="header">
    <div id="menu">
    <ul id="pagemenu">
    <li><a href="<?php bloginfo('url') ?>">Ana Sayfa</a></li>
    <?php wp_list_pages('depth=2&sort_column=menu_order&titl e_li='); ?>
    </ul>

    <div id="more">
    <?php get_search_form(); ?>
    <ul id="moremenu">
    <li>
    <form method="POST" action="facebook/index.php">
    <input name="url" onfocus="this.value=''" type="text" size=50 class="videokutusu" value="Video Adresini Buraya Girin..." />
    <input type="submit" name="gonder" value="İndir" />

    </form>

    </li>
    <li>
    <a href="#" onclick="return false">Beslen</a>
    <ul id="feedmenu">
    <li class="feedli"><a class="notajax" href="<?php bloginfo('rss2_url'); ?>">Son Videolar</a></li>
    </ul>
    </li>
    <li>
    <?php wp_loginout(); ?>
    </li>
    </ul>
    </div>
    </div>
    </div>

    <div id="container">

    <div id="content">
    <div id="title">
    <h1>
    <a href="<?php bloginfo('url') ?>" title="<?php echo wp_specialchars( get_bloginfo('name'), 1 ) ?>" rel="home">
    <?php bloginfo('name') ?>
    </a>
    </h1>

    <div class="istatistik"> <?php
    $numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish' and post_type='post'");
    if (0 <$numposts) $numposts = number_format($numposts);
    $numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'");if (0 < $numcomms) $numcomms = number_format($numcomms);
    $query = mysql_query("SELECT SUM(meta_value) as toplam FROM wp_postmeta where meta_key='views'");
    $row = mysql_fetch_array($query);
    ?>
    <strong>İstatistikler:</strong>&nbsp; Toplam Video: <?=$numposts?>&nbsp;&nbsp;&nbsp;Toplam Yorum: <?=$numcomms?>&nbsp;&nbsp;&nbsp; Toplam İzlenme: <?=$row['toplam']?><br>

    </div></div><script type="text/javascript"><!--
    google_ad_client = "pub-6930638195159494";
    /* tezzat ust baglantı */
    google_ad_slot = "6122028836";
    google_ad_width = 728;
    google_ad_height = 15;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </div>
    </div></div>
    ikisini de dener misiniz?
  • 18-07-2010, 01:06:39
    #6
    Üyeliği durduruldu
    Hagiwhat adlı üyeden alıntı: mesajı görüntüle
    Header.php deki php kodlarını manuel elle yazarsanız siteniz daha hızlı açılır..

    <title>başlığınız</title> gibi.. php kodlarını elle girin..
    hocam sorun hız değil ki ?
    site bozuldu :S
  • 18-07-2010, 01:07:26
    #7
    ⭐ EN UCUZ CHATGPT 5.5⚡
    Ben ek olarak dedim..
  • 18-07-2010, 01:08:07
    #8
    Üyeliği durduruldu
    VicE adlı üyeden alıntı: mesajı görüntüle
    ikisini de dener misiniz?
    hocam oldu birincisi.Allah razı olsun sizden..
  • 18-07-2010, 01:10:21
    #9
    rica ederim.