Skip to main content

Posts

Showing posts with the label SVN

USVN 404 forbidden and 500 Internal server Error

Introduction :  USVN server   major  two error - 404 F orbidden - 500 Internal Error Occur :   1)  404 forbidden  Error during 1 st  time checkout SVN repo from USVN server After successfully installing the server USVN, if you receive the error 404 forbidden during the new SVN repo checkout Solution : Always add svn repo in project group. 2)  500 Internal Error in response to POST request for '/usvn/svn/test/!svn/me' 1 st  time commit After successful completion of the check svn repo folder. When it comes to commit your files on the SVN server, you will find error 500 Internal Solution :Make changes under the public folder’s htaccess. file location usvn/scr/public/.htaccess <Files *.ini> Order Allow,Deny Deny from all </Files> php_flag short_open_tag on php_flag magic_quotes_gpc off RewriteEngine on #RewriteCond RewriteBase "//usvn/" RewriteRule ^svn/ - [L,NC] #this is the rule I added to fix the 500 errors RewriteCond %{REQUEST...

USVN installation in Ubuntu

Introduction What is USVN ? The USVN ( User-friendly SVN )  is an Open Source Infrastructure System which offers an easy and less confusing way SVN repository creation and management to Subversion servers.It is a system based on GUI, so the configuration of the repo to create and manage this is not a tough task. Before Installation Requirements. Install Apache        sudo apt-get autoclean       s udo apt-get install update       s udo apt-get install apache2 PHP       sudo apt-get install php MYSQL    sudo apt-get install mysql-server php-mysql Subversion      sudo apt-get install subversion Other packages      sudo apt-get install libapache2-mod-php   libapache2-svn Enable Apache2 modules      a2enmod rewrite      a2enmod dav_fs      a2enmod auth...