OA 设想
着重加强发送与接受功能
后台管理增加要求
特殊功能要求
未分类
着重加强发送与接受功能
后台管理增加要求
特殊功能要求
未分类
header(″Content-type: text/vnd.wap.wml″);
echo (″″);
echo date( ″l dS of F Y h:i:s A″ );
echo (″″);
Header(″Content-type: image/vnd.wap.wbmp″);
Sim = ImageCreate(50, 50);
Swhite = ImageColorAllocate(Sim,255,255,255);
Sblack = ImageColorAllocate(Sim,0,0,0);
ImageRectangle(Sim, 5, 5, 20, 20, Sblack);
ImageWBMP(Sim);
ImageDestroy(Sim);
未分类
也许我还是没有弄懂,但现在我需要抗议!
对于.htaccess的生效
官方意见:
Merging of .htaccess with the main configuration files
As discussed in the documentation on Configuration Sections, .htaccess files can override thesections for the corresponding directory, but will be overriden by other types of configuration sections from the main configuration files. This fact can be used to enforce certain configurations, even in the presence of a liberal AllowOverride setting. For example, to prevent script execution while allowing anything else to be set in .htaccess you can use:
Allowoverride All
我全部都改了 Allowoverride All 依然无效 ! 觉得有点浪费时间!还不如直接include得了,比较干脆!
未分类
前面谈到 Samba 服务器的 MySQL 用户认证,实际上我老早就写过 Apache 针对 MySQL 的认证。不过以前只是测试而已,没有实际使用。前文提到知识管理,实际上在公司内部我们运行着一个基于 pLog 的博客系统。原先的系统没有发布到互联网,后来为了能让公司异地的各分支机构也能使用该博客系统,所以,决定发布到互联网。为了最小程度的降低对博客系统的 Hack ,所以我决定采用外挂的 mod_auth_mysql 模块来实现用户认证,从而降低公司内部系统暴露给非授权用户的风险。
阅读全文…
未分类