Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - greenman

Pages: [1]
1
Turkish / Türkçe / Re: GOOGLE indexlemesi Acil Yardım!
« on: January 22, 2009, 08:34:11 AM »
Bahsettiğiniz header.html de aşağıdaki kod bulunmaktadır.Burda yanlışlık varmı acaba varsa hangi kod yardım ederseniz sevinirim.

Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html dir="{direction}">

<head>

<title>Resim - Güzel Resimler</title>

<meta http-equiv="content-type" content="text/html; charset=iso-8859-9" />
<meta name="keywords" content="resim,güzel resimler,resimler,manzara resimleri">
<meta name="description" content="Her türlü kategoride listelenen binlerce  güzel resimden oluşturulmuş kaliteli resim arşivi">
<meta http-equiv="imagetoolbar" content="no">
<meta name="author" content="designed by www.fotografarsivi.com">
<meta name="ROBOTS" content="index,follow">
<meta name="revisit-after" content="1 Day">
<meta name="rating" content="general">

<link rel="stylesheet" href="{template_url}/style.css" />

<script language="javascript" type="text/javascript">

<!--


  var captcha_reload_count = 0;

var captcha_image_url = "{url_captcha_image}";

  function new_captcha_image() {

    if (captcha_image_url.indexOf('?') == -1) {

  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;

} else {

  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;

}



    document.getElementById('captcha_input').value="";

    document.getElementById('captcha_input').focus();

    captcha_reload_count++;

  }



function opendetailwindow() {

    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');

  }

 

  function right(e) {

    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {

      alert("© Copyright by {site_name}");

      return false;

    }

    else if (event.button == 2 || event.button == 3) {

      alert("© Copyright by {site_name}");

      return false;

    }

    return true;

  }



  if (document.layers){

    document.captureEvents(Event.MOUSEDOWN);

    document.onmousedown = right;

  }

  else if (document.all && !document.getElementById){

    document.onmousedown = right;

  }



<b>Arama Anahtar Kelimeleri:</b> Resim,güzel resimler,resimler,en güzel resimler document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");



// -->

</script>

{if has_rss}

<link rel="alternate" type="application/rss+xml" title="{rss_title}" href="{rss_url}" />

{endif has_rss}

</head>

<body onLoad="{mupload_onload} somestuff();" bgcolor="#FFFFFF" text="#666666" link="#666666" vlink="#666666" alink="#666666">
<script language='JavaScript' type='text/javascript'>
if (top.location != self.location) top.location = self.location;
</script>

2
Turkish / Türkçe / GOOGLE indexlemesi Acil Yardım!
« on: January 21, 2009, 01:55:23 PM »
Merhaba arkadaşlar buradaki bilgilerle sitemi kurdum yayına soktum.Tüm google ayarlarınıda yaptım.

fakat http://www.google.com/search?hl=tr&rls=HPND%2CHPND%3A2007-12%2CHPND%3Aen&q=site%3Afotografarsivi.com&lr= bu şekil indexlerime baktığımda hep bozuk çıktığını görüyorum.

Sizde bakarsanız Site açıklamaların hep şöyle yazıyor : var captcha_reload_count = 0; var captcha_image_url = "./captcha.php"; function new_captcha_image() { if (captcha_image_url.indexOf('?') == -1) { document. ...

Bunu nasıl çözerim acaba acil yardım ederseniz sevinirim.

3
1. 'Go to includes/functions.php'

Find:

      if ($image_info = @getimagesize($src, $info)) {
        $width_height = " ".$image_info[3];
        $width = $image_info[0];
        $height = $image_info[1];

Add after:

   unset($resized);
   if ($width > 620)
   {
                      $new_limit = "624";
                      $limit_var = "width";
         $resized = 1;
     }
     else
   {
                   $new_limit = $image_info[0];
                  $limit_var = "width";
          $resized = 0;
   }


Find:

"&amp;mode=".$mode : ""))."\">".$media_icon."</a>";
    }
    $width_height = "";
    $width = "";
    $height = "";

Add after:

    $limit_var = "";
    $new_limit = "";


Find:

      $site_template->register_vars(array(
      "media_src" => $media_src,
      "media_icon" => $media_icon,
      "image_name" => $image_name,
      "width_height" => $width_height,
      "width" => $width,
      "height" => $height,

Add after:

      "new_limit" => $new_limit,
      "resized" => $resized,
      "limit_var" => $limit_var,



2. Go to 'templates\default\details.html'

Find:

{image}

Add 'before':

{if resized} The image has been resized automatically.
Download it for seeing it in its original size ({width} x {height} pixels).
{endif resized}


Find:

{image}

Change it with:

<a href="{media_src}" target="_blank">{image}</a>



3. Go to 'templates\default\media\jpg.html':

Find:

<img src="{media_src}" border="1" alt="{image_name}"{width_height} /><br />

Change it with:

<img src="{media_src}" border="0" alt="{image_name}" {limit_var}="{new_limit}" />


And that's all!! Razz

Valla türkçeye çevirmeye gerek yok sanırım.Hepsi apaiçık ortada.

ben kendi sitemde yaptım çalışıyor. www.fotografarsivi.com

Pages: [1]