日度归档:2009年5月19日

在linux服务器上通过网页执行svn更新命令

般都采用独立服务器(这里主要是指linux服务器),都喜欢安装svn进行代码管理,并且也是通过svn来上传更新网站。传统的方法都是每次更新到运行服务器都要远程ssh执行命令或一个具体的脚本

其实有还有更好的办法,一直以来,我就是用这种办法更新网站的。。

在apache或是nginx开一个密码保护的虚拟主机。把下面php文件扔进去

当上传完svn时。打开php文件,点击更新就ok了。

如果需要做得更加安全的话。那就再在下面那段php里加上个密码访问就好了

XML/HTML代码
  1. <?php  
  2. header("Cache-Control:no-cache,must-revalidate");   
  3. echo ‘<a href="?go=svnweb">更新网站全部数据</a><br />‘;   
  4. echo ‘<a href="?go=svnimages">更新网站图片数据</a><br />‘;   
  5. echo ‘<hr />‘;   
  6.   
  7.   
  8. if($_GET[‘go’]==’svnweb’){   
  9.     echo ‘update web data….<br>‘;   
  10.     $handle = popen(‘/usr/bin/svn up –username xxx –password xxxxxxx svn://localhost/web1 /var/www/web1/’, ‘r’);   
  11.     $read = stream_get_contents($handle);//需要 PHP5 或更高版本      
  12.     echo "<pre>";   
  13.     printf($read);      
  14.     echo "</pre>";      
  15.     pclose($handle);      
  16. }elseif($_GET[‘go’]==’svnimages’){   
  17.     echo ‘update web images….<br>‘;   
  18.     $handle = popen(‘/usr/bin/svn up –username xxx –password xxxxxxx svn://localhost/web1 /var/www/web1/images’, ‘r’);   
  19.     $read = stream_get_contents($handle);   
  20.     echo "<pre>";   
  21.     printf($read);   
  22.     echo "</pre>";   
  23.     pclose($handle);   
  24. }   
  25. ?>