Etiket arşivi: Amp

Websitesi alış satış, en hızlı en güvenli yolu Siterobot.com

Websiteleri ve domainler için güvenli alım satım platformu Siterobot.com webmasterların, yazılımcı, tasarımcı, ajansların proje, alış satış, tüm ihtiyaçlarını karşılayacak güvenli bir platformdur. Amaçları web sitesi, domain, Facebook fan sayfası, tanıtım yazısı, backlink, Facebook üye çekimi, vb seo & webmasterlera yönelik alım satış yapanlar arasında güvenli bir platform kurup hızlı sonuç odaklı ticari faaliyetlerini yürütmelerini sağlamaktır.

Siterobot.com’da ücretsiz ilan kampanyaları ile ilanınızı hemen yayınlayıp. web site alımı , web site satma, domain alışı satışı vb. hizmet faaliyetlerinize başlıyabilirsiniz. Üstelim komisyon ücretleri çok düşük sadece %3,99 gibi bir oranlar sunulan bu websitesi alış satış hizmeti, tüm teknoloji, webmasterler, proje geliştiricilerinin ilgisini çekmektedir.

Siterobot güvenlikli sistemleri ile 3D kredi kartı, paypai EFT/Havale ile siterobot bakiyenize para transfer edebilir. Ve hızlı bir çekilde kendi hesaplarınıza çekebilirsiniz.
Geleceğin en hızlı en güvenli, websitesi,domain,seo projeleri, vb, alış satış platformu

OpenX flash player version detect bug

Find the following function in www/admin/lib-swf.inc.php (relative to your OpenX base install directory):

<?php 
function phpAds_SWFVersion($buffer) 
{ 
    if (substr($buffer, 0, 3) == swf_tag_identify || 
        substr($buffer, 0, 3) == swf_tag_compressed) 
        return ord(substr($buffer, 3, 1)); 
    else 
        return false; 
} 
?>

And change that to:

<?php 
function phpAds_SWFVersion($buffer) 
{ 
    if (substr($buffer, 0, 3) == swf_tag_identify || 
        substr($buffer, 0, 3) == swf_tag_compressed) 
    { 
        $rv = ord(substr($buffer, 3, 1)); 
        if ($rv > 10 && $rv < 13) $rv = 10; 
        elseif ($rv >= 13) $rv = 11; 
        return $rv; 
    } else 
        return false; 
} 
?>

convert_smart_quotes

Microsoft World’e ait özel karakterleri temizlemek için,

function convert_smart_quotes($text){
$text = mb_convert_encoding($text, 'HTML-ENTITIES', 'UTF-8');

// UTF-8 karakteleri cevir
$text = str_replace(
array("\xe2\x80\x98", "\xe2\x80\x99", "\xe2\x80\x9c", "\xe2\x80\x9d", "\xe2\x80\x93", "\xe2\x80\x94", "\xe2\x80\xa6"),
array("'", "'", '"', '"', '-', '--', '...'),
$text);

// Windows-1252 karakterleri cevir
$text = str_replace(
array(chr(145), chr(146), chr(147), chr(148), chr(150), chr(151), chr(133)),
array("'", "'", '"', '"', '-', '--', '...'),
$text);

// HTML Kod karakterlerini cevir
$text = str_replace(
array("&lsquo;", "&rsquo;", "&ldquo;", "&rdquo;", "&ndash;", "&mdash;", "&hellip;"),
array("'", "'", '"', '"', '-', '--', '...'),
$text);

// Windows-1252 karakterleri cevir
$text = str_replace(
array("&#145;", "&#146;", "&#147;", "&#148;", "&#150;", "&#151;", "&#133;"),
array("'", "'", '"', '"', '-', '--', '...'),
$text);

// Turkce karakterleri cevir
$text = str_replace(
array("&#286;", "&#287;", "&Ouml;", "&ouml;", "&Ccedil;", "&ccedil;", "&#350;", "&#351;", "&#304;", "&#305;", "&Uuml;", "&uuml;"),
array("Ğ", "ğ", 'Ö', 'ö', 'Ç', 'ç', 'Ş', 'ş', 'İ', 'ı', 'Ü', 'ü'),
$text);

return $text;
}

convert_smart_quotes

	function convert_smart_quotes($text){
		/*HABER METİNİN İÇİNDE OFFİCE WORLD TİPİ VİRGÜL TEK TIRNAK FİLAN DÜZENTİYOR*/
		$text = str_replace(chr(130), ',', $text);
		$text = str_replace(chr(132), '"', $text);
		$text = str_replace(chr(133), '...',$text);
		$text = str_replace(chr(145), "'", $text);
		$text = str_replace(chr(146), "'", $text);
		$text = str_replace(chr(147), '"', $text);
		$text = str_replace(chr(148), '"', $text);
		$text = mb_convert_encoding($text, 'HTML-ENTITIES', 'UTF-8');
		$text = str_replace('&#286;', 'Ğ', $text);
		$text = str_replace('&#287;', 'ğ', $text);
		$text = str_replace('&Ouml;', 'Ö', $text);
		$text = str_replace('&ouml;', 'ö', $text);
		$text = str_replace('&Ccedil;', 'Ç', $text);
		$text = str_replace('&ccedil;', 'ç', $text);
		$text = str_replace('&#350;', 'Ş', $text);
		$text = str_replace('&#351;', 'ş', $text);
		$text = str_replace('&#304;', 'İ', $text);
		$text = str_replace('&#305;', 'ı', $text);
		$text = str_replace('&Uuml;', 'Ü', $text);
		$text = str_replace('&uuml;', 'ü', $text);
		$text = str_replace('&quot;', '"', $text);
		return $text;
	}

http_build_query

<?php
$data = array('foo', 'bar', 'baz', 'boom',
              'cow' => 'milk',
              'php' =>'hypertext processor');

echo http_build_query($data) . "\n";
echo http_build_query($data, 'myvar_');
?>
<?php
$data = array('foo'=>'bar',
              'baz'=>'boom',
              'cow'=>'milk',
              'php'=>'hypertext processor');

echo http_build_query($data);
    // foo=bar&baz=boom&cow=milk&php=hypertext+processor
echo http_build_query($data, '', '&amp;');
    // foo=bar&amp;baz=boom&amp;cow=milk&amp;php=hypertext+processor

?>
0=foo&1=bar&2=baz&3=boom&cow=milk&php=hypertext+processor
myvar_0=foo&myvar_1=bar&myvar_2=baz&myvar_3=boom&cow=milk&php=hypertext+processor