htaccess Tricks #2 – Essentials
Commenting your htaccess Files It is an excellent idea to consistenly and logically comment your htaccess files. Any line in an htaccess file that begins with the pound sign ( # ) tells the server to ignore it. Multiple lines require multiple pounds and use letters/numbers/dash/underscore only: # this is a comment # each line [...]
Tags: Essentials, htaccess, Tricks
16.Oct.08
Server
Comments (0)
htaccess Tricks #1 – General Information
This article, htaccess Tricks, covers just about every htaccess “trick” and is easily the site’s most popular offering. In addition to this htaccess article, you may also want to explore the rapidly expanding htaccess tag archive. General Information .htaccess Definition Apache server software provides distributed (i.e., directory-level) configuration via Hypertext Access files. These .htaccess files [...]
Tags: General, htaccess, Information, Tricks
16.Oct.08
Server
Comments (0)
Restore File Backup .sql Ke Database MySQL
1. Disini saya berasumsi MySQL sudah terinstall dikomputer Anda dan berjalan sebagai mana mestinya dan juga setidaknya Anda sudah bisa menggunakan MySQL (jika belom ya searching aja di inet banyak sekali kok). 2. Buat database di mysql (dengan nama databases terserah Anda) 3. Restore melalui Command Prompt file mysql.sql ke database yang Anda buat. Tahukan [...]
12.Oct.08
mySQL
Comments (0)
TCP/IP (Transmission Control Protocol/Internet Protocol)
1. Apa itu TCP/IP ? TCP/IP adalah salah satu jenis protokol* yg memungkinkan kumpulan komputer untuk berkomunikasi dan bertukar data didalam suatu network (jaringan). Merupakan himpunan aturan yg memungkinkan komputer untuk berhubungan antara satu dengan yg lain, biasanya berupa bentuk / waktu / barisan / pemeriksaan error saat transmisi data. 2. Apa yg membuat TCP/IP [...]
11.Oct.08
Network
Comments (2)
Signs for Regular Expresions
^ Start of line $ End of line n? Zero or only one single occurrence of character ‘n’ n* Zero or more occurrences of character ‘n’ n+ At least one or more occurrences of character ‘n’ n{2} Exactly two occurrences of ‘n’ n{2,} At least 2 or more occurrences of ‘n’ n{2,4} From 2 to [...]
Tags: Regular Expresions
11.Oct.08
PHP, Programming
Comment (1)