Kemudahan ini hanya di kawasan sekolah sahaja.
klik sini local

Edit the Apache configuration file httpd.conf and look for the "LISTEN" directive. Usually Apache listens on all IPs and all Ports, but if a LISTEN directive is supplied, it listens only on that IP (and/or Port).
Examples:
LISTEN 80 ----> Apache listens (still) on all IPs, but only on Port 80
LISTEN 127.0.0.1 ----> Apache listens only on 127.0.0.1 (localhost), but still on all Ports.
LISTEN 127.0.0.1:80 ----> Apache listens only on 127.0.0.1 and only on Port 80
You may specify more than one LISTEN directive, Apache will listen to all specified IPs/Ports. Probably your httpd.conf contains a LISTEN directive, which points to 127.0.0.1 (with or without port specification). Either delete that LISTEN directive (in that case you MUST be sure, that this is the only LISTEN directive in your configuration) or add one LISTEN directive which points to 192.168.1.3. Then restart Apache.