Footer kodlu reklamlar?
15
●2.717
- 10-08-2008, 19:49:21Eposta Aktivasyonu Gerekmektearkadaşlar aynı sorun bende de var :S.. kodları türkçeleştirmek istiyorum ancak footer hata veriyor ve sitenin görüntüsü çok bozuluyor... şifreli kodları var... yardımcı olacak kimse yok mu?
- 10-08-2008, 21:08:13Son mesajlarda denemekonusu diye bir mesaj var diyelim gideceğiz o kaynak kodunu yapıştıracağız ondan sonra her yeni konu açtığımızda o çıkacak bir işe yaramayacak bana göre.
Yapamayan arkadaşlar aşağıda verdiğim yoldan yapsınlar ben buldum ve yaptım
<?php // ByteRun.com encode file decoder // Open and read the content of the encoded file into a variable $file = file_get_contents('cozulecek.php'); // Strip php tags $file = str_replace('<?php', "", $file); $file = str_replace('<?', "", $file); // Make sure to get rid of short tags.... $file = str_replace('?>', "", $file); $file = str_replace('$_F=__FILE__;', "", $file); // This stays the same in byterun.com encode files // Create $_F variable $_F=__FILE__; // Always in the byterun.com encode files // Get $_X preg_match('/\$_X=\'.*?\';/', $file, $match); // Strip $_X='*'; from the string $file = str_replace($match[0], "", $file); //Create the $_X variable with the contents $_X = str_replace('$_X=\'', "", $match[0]); $_X = str_replace('\';', "", $_X); // Change the Eval function $file = str_replace('eval', 'echo ', $file); // Function to eval the new string function deval() { global $file, $_F, $_X; ob_start(); eval($file); $contents = ob_get_contents(); ob_end_clean(); return($contents); } // Run the code thru once $file = deval(); // We know that $_X=base64_decode($_X); is always there so lets go ahead and run that $_X = base64_decode($_X); // Strip it from the string $file = str_replace('$_X=base64_decode($_X);', "", $file); // Get the contents for $_X=strtr(*); preg_match('/\$_X=strtr.*?\'\);/', $file, $match2); // Strip it $file = str_replace($match2[0], "", $file); // Run it eval($match2[0]); $_R=ereg_replace('__FILE__',"'".$_F."'",$_X); $_R = ltrim($_R, '?><?php'); $_R = rtrim($_R, '?>'); echo $_R; ?>Üstteki verdiğim kodları bir cozucu.php diye kayıt edin ve ftpnize atın ve daha sonra cozulecek.php diye bir php dosyası oluşturun ve içine şifrelenmiş kodlarınızı girin kayıt edin ve ftp'nize atın kiside aynı dizinde olsun ama daha sonra www.siteadresi.com/cozucu.php dediğimizde çözülmüş halini verecektir. Umarım işinize yarar. - 11-08-2008, 23:09:23Eposta Aktivasyonu Gerekmektehocam dediğini adım adım uyguladım cozulecek ve cozucu php dosyalarını oluşturdum daha sonra cozucu.php yi çalıştırdım boş beyaz sayfa çıktı... sanırım ufak problem var...
- 12-08-2008, 03:40:24Üyeliği durdurulduselim7124 adlı üyeden alıntı: mesajı görüntüleuyguladım arkadaşın dediğini çıkan sonuç harfi harfine buselim7124 adlı üyeden alıntı: mesajı görüntüle
wp_footer(); ?> </div> </div> <div id="content-close"></div> </div> </div> </div> <div id="footer"> <div id="footer-shade"> <div id="footer-wrap"> <div id="footer-content"> <div class="top-fc"> <div class="f-block"> <h3><span class="green">Recent</span> Entries</h3> <ul> <?php get_archives('postbypost', 12); ?> </ul> </div> <div class="f-block"> <h3><span class="green">Recent</span> Comments</h3> <?php if(function_exists("get_recent_comments")) : ?> <ul> <?php get_recent_comments(); ?> </ul> <?php else : ?> <ul> <?php mw_recent_comments(10, false, 50, 35, 40, 'all', '<li><a href="%permalink%" title="%title%"><strong>%author_name%</strong> » %title%</a></li>','d.m.y, H:i'); ?> </ul> <?php endif; ?> </div> <div class="f-block"> <h3><span class="green">Hottest</span> Entries</h3> <?php if(function_exists("get_hottopics")) : ?> <ul> <?php get_hottopics(); ?> </ul> <?php else : ?> <ul> <li>You must install the most commented plugin here</li> </ul> <?php endif; ?> </div> </div> <div class="bottom-fc"> <div class="alignleft">©2006-<?php the_time('Y'); ?> <a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a><br />Designed by <a href="http://www.elegantwpthemes.com">Elegant WP Themes</a></div> <div class="alignright"><br />Valid <a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">XHTML</a> and Valid <a href="http://jigsaw.w3.org/css-validator/validator?uri=<?php echo get_settings('home'); ?>&usermedium=all">CSS</a></div> </div> </div> </div> </div> </div> </body> </html