http://www.xmlas.com/web-thumbnail-autogenerationcache.html自动生成网页缩略图thinkphp与jQuery
分类:
Web程序 时间:
2014-05-06 00:54:56
阅读次数:
285
把一个在windows写的web程序,移植到新装的ubuntu上来。由于新装的ubuntu装的上APACHE2,
在配置文件上跟老的apache有区别, 没太注意。原来的web程序是用ThinkPHP写的,
移植过来后在url上出老点差错。于是开始纠结的找问题。由于thinkphp的url需要重写,...
分类:
其他好文 时间:
2014-05-05 13:17:19
阅读次数:
311
public function index(){
header('Content-Type:text/html;charset=utf-8 ');
$M = M("Constant");
$count = $M->where($where)->count();
import("ORG.Util.Page"); // 导入分页类
...
分类:
Web程序 时间:
2014-04-30 22:27:39
阅读次数:
343
http://127.0.0.1/itemshop/index.php/Admin/Public/login/id/2Admin
应用Public 模块login 方法id 传值
分类:
Web程序 时间:
2014-04-30 16:26:07
阅读次数:
384
习惯了用apache后,当第一次用nginx时,把原来的项目(thinkphp框架)部署在新服务器上的时候,惊呆了!
所有的URL模式下都不能正常运行,甚至连css,js文件都不能正常加载。
原因是ngibx不支持pathinfo
主要是需要配置nginx
location / {
root D:/wnmp/www;
index ind...
分类:
Web程序 时间:
2014-04-29 13:11:20
阅读次数:
680