SSL certificate problem unable to get local issuer certificate 解决办法: 下载:ca-bundle.crt 将它放在自己的wamp或者xampp目录下,如 c:\wamp\ ca-bundle.crt 在Apache中开启mod_ssl ,在php.ini开启php_openssl.dll 在php.ini文件中添加ca-bundle.crt的文件路径,如: curl.cainfo="C:/wamp/ca-bundle.crt&qu…
svn 如果遇到an unversioned directory of the same name already exists的解决办法 一般这种情况是因为,在一个已经存在的文件夹里做SVN checkout检出,如果有相同的文件夹或者文件存在,就会提示这个错误 解决的办法很简单,在svn checkout中加上--force 这样就解决问题了 如下示例 svn checkout --force svn://xxxxxxxx svn up --force…