- 浏览: 120515 次
- 性别:
- 来自: 北京
最新评论
文章列表
首先安装wamp http://www.wampserver.com/en/
提供Windows下的Apache, MySQL, PHP平台
如果需要修改Apache的默认端口,请将 D:\wamp\bin\apache\Apache2.2.11\conf\httpd.conf第46行改为"Listen 8080"
下载并安装配置
MediaWiki http://www.mediawiki.org/wiki/MediaWiki
安装向导:http://www.mediawiki.org/wiki/Manual:Installation_guide
安装FCKeditor ...
- 2009-11-16 14:44
- 浏览 1732
- 评论(0)
下载并解压moin-1.8.5.tar.gz后,按照E:\rush_ftp\moin-1.8.5\docs\INSTALL.html里面的提示安装即可
也可以参考这里http://guoyong.org/2006/03/28/163
引用在Windows XP下安装MoinMoin Wiki
引用需要的文件:
apache_2.0.55-win32-x86-no_ssl.msi
mod_python-3.2.5b.win32-py2.4.exe
Python 2.4.2 Windows installer
MoinMoin 1.5.2 tar.gz
安装目录约定:
Apache - C:\w ...
- 2009-11-13 20:50
- 浏览 11147
- 评论(0)
搜索下载并安装上面两个.gem,然后gem install mysql
然后对于MySQL的错误信息
#1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client
解决方法
get into mysql
$mysql -u root -p
enter your pwd
and then enter the line
SET PASSWORD FOR 'root'@'localhost' = OLD_PASSWO ...
- 2009-11-06 11:56
- 浏览 1009
- 评论(0)
如图所示,把上面的文件都下载下来后,先安装ruby和gem,然后gem install -l rails*即可
- 2009-11-05 20:58
- 浏览 749
- 评论(0)
一直没想好怎么搜索,所以一直没写,最近看到一段细节写得非常好的代码,于是把这道题AC了,感觉这段搜索写得灰常强大,短而效率高
#include <cstdio>
#include <algorithm>
#include <functional>
using namespace std;
const int maxN = 64 + 5;
int n, stick[maxN], len, m;
bool used[maxN] = {false}, done;
void dfs(int k, int now, int cnt)
{
...
MySQL数据库,和Eclipse中的所有设置字符编码的地方都设置成UTF-8
然后利用MySQL的设置向导重新设置MySQL的默认编码也是UTF-8即可
Struts2,或者说JSP的表单乱码,分为get和post方法
get方法
在tomcat的conf\server.xml中第一个Connector中加入属性URIEncoding="UTF-8"
post方法
添加一个CharacterEncodingFilter拦截器
/*
$Id$
Copyright (C) 2003-2009 Virginia Tech.
All rights r ...