文章列表
使用盛大镜像 CentOS6 64位系统
主机设置中默认80端口是关闭的,需要打开
此系统安装plone4.1.4 还缺少的包有 “make,patch,openssl-devel”
plone安装时执行: ./install.sh zeo
plone运行执行: ./bin/plonectl start
默认有2个client,自己手动加了一个:
Plone/zeocluster/base.cfg中添加
[client3]
# a copy of client1, except adjusted address and var location
<= client1 #竟然有这种语法太方便了,
http-address = ${buildout:client3-address}
event-log = ${buildout:directory}/va ...
Register your Python distribution to Windows registry
打开注册表到 HKLM-SOFTWARE-Python-PythonCore
新建项 对于Python版本号 ,如 2.6。
版本号先新建项 InstallPath、PythonPath、Modules。
InstallPath下新建项InstallGroup
InstallPath的默认改成 自己需要的python路径,
PythonPath下的默认改成 对应下的Lib和DLLs 如 :
C:\Program Files\Plone\python\Lib;C:\Progra ...
public class deleteSVN {
public static void main(String[] args)
{
if(args.length>=1){
File path = new File(args[0]);
deleteSVN(path);
}
}
private static void deleteSVN(File path){
if(path.exists() && path.isDirectory()){
File[] files = path.lis ...