通常都是
<?php source_code; ?>
在 <? 後面要有 php 來宣告這是一段 PHP 語言,
但是人是懶惰的,
修改一下 /etc/php.ini 的
short_open_tag = On
就可以使用
<? source_code; ?>
不用再多打 php 了。
<?php source_code; ?>
short_open_tag = On
<? source_code; ?>
將以下文字,
存成 proxy.reg 的文字檔,
然後連續點兩下執行,
就可以直接啟用 proxy 了。
(PS: IP:port 請置換成您的資料)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="IP:port"
"ProxyOverride"="<local>"[HKEY_USER\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000001
"ProxyServer"="IP:port"
"ProxyOverride"="<local>"
如果要停用,
就換成以下內容:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"="<local>"[HKEY_USER\DEFAULT\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ProxyEnable"=dword:00000000
"ProxyOverride"="<local>"
proxy 伺服器 ( squid ) 除了用 IP 當連線範圍之外,
如果在範圍 IP 之外,
仍想要用該 proxy 的話,
可以加掛認證模組進來,
只要輸入正確的 帳號/密碼 ,
就算在範圍IP之外,
依然可以通過 proxy 。
我的工作環境:CentOS Server 3.9、squid-2.5.STABLE3-9.3E。
squid 認證方式採用 ncsa_auth 。
net use "\\IP" password /user:userid