Posts

Es werden Posts vom Juli, 2015 angezeigt.

Let's block referral spam!

You can block referrer spam in two ways. First, you can block the spam website in your Htaccess file with some simple code we provided below.  Simply copy and past the follow code in your .Htacces file on your website host. http://ads-blocker.com/block-referral-spam/

I never really understood: what is POSIX?

What is POSIX? I read the Wikipedia article and I read it ever time I encounter the term. Fact is that I never really understood what it is. http://stackoverflow.com/questions/1780599/i-never-really-understood-what-is-posix

System- und Admin-Tools, die viel Arbeitszeit sparen | TecChannel.de

http://www.tecchannel.de/pc_mobile/tools/2033160/system_tools_die_woechentlich_120_minuten_arbeitszeit_sparen/?tap=bb000dd07cac968caba7ff66b53e6b7b&r=5647626173515128&lid=426738&pm_ln=45

PHP Tutorial

PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP. http://www.w3schools.com/php/default.asp

HTML - margin

The  margin  property can have from one to four values. margin: 25px 50px 75px 100px;  top margin is 25px right margin is 50px bottom margin is 75px left margin is 100px margin: 25px 50px 75px; top margin is 25px right and left margins are 50px bottom margin is 75px margin: 25px 50px; top and bottom margins are 25px right and left margins are 50px margin: 25px; all four margins are 25px http://www.w3schools.com/css/css_margin.asp

WSUS Offline Update

Mittels "WSUS Offline Update" können Sie Microsoft Windows- und Office-Computer sicher, schnell und ohne Internetverbindung aktualisieren.  www.wsusoffline.net

NTLite

Bild
NTLite Free ist ein Kostenlos-Tool, um eigene Installations-DVDs für Windows 7 und Windows 8 zu erstellen. www.ntlite.com

Sichere FTP-Verbindung (FTP über SSL) mit FileZilla einrichten

Seit dem 18.02.2010 ist es bei goneo möglich, mit FTPS (FTP über SSL) Ihren Webspeicherplatz unter größtmöglicher Verschlüsselungssicherheit zu erreichen. Dazu müssen Sie in Ihrem FileZilla statt dem Port 21 nun den Port 990 nutzen und als Servertyp „ FTP „ mit der Verschlüsselung „Explizites FTP über TLS erfordern“ auswählen. Als Serveradresse, Benutzername sowie Passwort können Sie die bisherigen, von Ihnen verwendeten, Daten weiterhin nutzen. http://wiki.goneo.de/ftp-ssl-filezilla

Changing The Site URLm in Wordpress

https://codex.wordpress.org/Changing_The_Site_URL Edit wp-config.php define('WP_HOME',' http://example.com' ); define('WP_SITEURL',' http://example.com' );   or Edit functions.php Add these two lines to the file, immediately after the initial " update_option('siteurl',' http://example.com' ); update_option('home',' http://example.com' );