RSS

Category Archives: Bilgisayar

Tüm alt klasörlerin ve dosyaların chmodlarını değiştirme

Tüm dosyaların ve klasörlerin chmod ayarlarını değiştirmek için aşağıdaki kodları kendinize göre düzenleyip ssh’dan çalıştırabilirsiniz.
Aşağıdaki kodlardan ilk satır tüm klasörleri ve alt klasörleri chmod ayarlarını 755 yapar.
İkinci satır ise dizinde bulunan ve tüm alt dizinlerdeki dosyaları chmod değerlerini 644 yapar.

chmod 755 $(find /home/user/public_html -type d)
chmod 644 $(find /home/user/public_html -type f)

Arama Terimleri:

 

Posted by on 10 Aralık 2013 in Bilgisayar, Linux, Programlama, Web

Leave a comment

cPanel hesabının mail göndermesini tamamen engelleme

Cpanelde spam gönderen hesapların mail göndermesini tamamen engellemek

email göndermeyi engellemek için bu kodları:

chmod 0 /home/username/etc 
chattr +ia /home/username/etc

engeli kaldırmak için bu kodları:

chattr -ia /home/username/etc 
chmod 750 /home/username/etc

kullanmalısınız.

Arama Terimleri:

 

Posted by on 08 Aralık 2013 in Web

Leave a comment

TPlinkTL-WR740N ve TL-WR741ND Anten farkı

İkisinin arasındaki fark antenleridir.

  • TL-WR740N Routerın bir adet sabit anteni vardır.
  • TL-WR741ND Routerın bir adet sökülebilir anteni vardır.

The difference between them is:

  • TL-WR740N Router with one fixed antenna.
  • TL-WR741ND Router with one detachable antenna.

Arama Terimleri:

 

Posted by on 05 Mart 2013 in Bilgisayar

Leave a comment

Jquery code with wordpress jetpack

1
2
3
4
5
6
7
8
<script type="text/javascript">
jQuery(document).ready(function($){
 
	$(".news-text").click(function(){
	  $(this).children(":first").toggle('slow');
	});
});
</script>

Aliasing the jQuery Namespace

When using another JavaScript library, we may wish to call $.noConflict() to avoid namespace difficulties. When this function is called, the $ shortcut is no longer available, forcing us to write jQuery each time we would normally write $. However, the handler passed to the .ready() method can take an argument, which is passed the global jQuery object. This means we can rename the object within the context of our .ready() handler without affecting other code:

1
2
3
jQuery(document).ready(function($) {
  // Code using $ as usual goes here.
});

Arama Terimleri:

 

Posted by on 26 Şubat 2013 in Bilgisayar, Programlama, Wordpress

Leave a comment

Toggle visibilty of first child of this by jQuery

1
$(this).children(":first").toggle('slow');
 

Posted by on 25 Şubat 2013 in Bilgisayar, Wordpress

Leave a comment