Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » Archive

Memerikan Header web Server

http://www.seoconsultants.com/tools/headers#Results http://www.webconfs.com/http-header-check.php http://gsitecrawler.com/tools/Server-Status.aspx … Read entire article »

Filed under: 7. Operating System

Installasi web Server Nginx Debian Header Modif

Download Tutornya InstallingNginxPhp InstallingLampDebian10 … Read entire article »

Filed under: 7. Operating System

Shockbeker Rancho

Filed under: 7. Operating System

Setting Gammu Terbaru

Setup Gammu SMS gateway pada Linux debian #wget https://sourceforge.net/projects/gam…8.0/gammu-1.28.0.tar.gz #tar xvfz gammu-1.28.0.tar.gz #apt-get install autoconf #apt-get install gcc #apt-get install make #apt-get install cmake #apt-get install libxml2 #apt-get install libxml2-dev #apt-get install libmysqlclient15-dev #ls … Read entire article »

Filed under: 7. Operating System

Lighttpd –> Debian etch, Drupal, Clean URL

http://dimas.ubhara.id/~dms/doc/drupal_lighttpd.zip … Read entire article »

Filed under: 7. Operating System

Setting up PHP with Lighttpd

Introduction Lighttpd supports PHP through both CGI and FastCGI. As the name suggests, FastCGI is preferable. Performance In all our tests it has shown better performance than Apache 1.3.x + mod_php4. See http://www.lighttpd.net/benchmark/ for the results. Does it support opcode cachers? like APC, TurckMM, XCache and friends YES! Even if their docs say they do not work in CGI. Under lighttpd, PHP is usually run as FastCGI which supports those opcode cachers like mod_php4 in Apache. http://pecl.php.net/apc http://eaccelerator.net/ (Successor of Turck mmCache) XCache, XCache FAQ (new, well tested, running with FastCGI) (more to add) You might be interested in reading the Support for FASTCGI mode? thread from eAccelerator Open Discussion Forum. Installation Windows PHP in CGI Mode First you need to install Lighttpd for Windows. Then you need to edit C:\lighttpd\etc\lighttpd.conf, uncomment the “mod_cgi” line and add this line: cgi.assign = ( ".php" => … Read entire article »

Filed under: 7. Operating System

lighttp + MYSQL + PHP Setting

Share Security, speed, compliance, and flexibility — all of these describe lighttpd (pron. lighty) which is rapidly redefining efficiency of a webserver; as it is designed and optimized for high performance environments. With a small memory footprint compared to other web-servers, effective management of the cpu-load, and advanced feature set (FastCGI, SCGI, Auth, Output-Compression, URL-Rewriting and many more) lighttpd is the perfect solution for every server that is suffering load problems. And best of all it’s Open Source licensed under the revised BSD license. Installing Lighttpd in Ubuntu … Read entire article »

Filed under: 7. Operating System

C Programming Linux

http://bookboon.com/int/student/it/c-programming-in-linux — http://192.168.1.1/~dms/ebook/c-programming-in-linux.pdf … Read entire article »

Filed under: 7. Operating System

C Programming Linux

http://www.gidforums.com/t-3369.html … Read entire article »

Filed under: 4. Programming / IDE, Linux

GCC

gcc filename.c GNU C compiler. Quite straight-forward if you know C. Extensive free manuals are available on the net. How do I compile a simple C program? Start your favourite text editor and type in your source code. For example, I may use pico: pico hello.c and type in the Kerningham and Richie (the creators of “c”) intro example of a C program: #include … Read entire article »

Filed under: 7. Operating System