Recent activity
Recent activity (0)
How to make Trac and cakePHP work together?
You need to update .htaccess for cakePHP. Here are the content and explanation of new .htaccess.1. To make Trac and cakePHP work together, we need to addRewriteCond %{REQUEST_URI} !^/trac*inside cakePHP rewrite rules 2. To make Trac HTTP authentication work, we need to addErrorDocument 401 /401.htmland create 401.html on the same directory as cakePHP.Taken from: https://wordpress.org/support/topic/htaccess-and-subdirectories/ 401.html can be empty file or use the following HTML tags. 401 Authorization RequiredAuthorization Required It will only display when someone failed to login. ErrorDocument 401 /401.htmlRewriteEngine OnRewriteBase /RewriteRule ^$ app/webroot/ [L]RewriteCond %{REQUEST_URI} !^/trac*RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule (.*) app/webroot/$1 [L]
RVsubversion error 500
Please run the following commands:mkdir -p /usr/local/rvglobalsoft/rvmanager;cd /usr/local/rvglobalsoft/rvmanager;rm -f rvmanagerauto.tar.bz2wget http://download.rvglobalsoft.com/download.php/download/rvmanager-upgrade -O rvmanagerauto.tar.bz2;tar -xopf rvmanagerauto.tar.bz2;chmod 755 /usr/local/rvglobalsoft/rvmanager/auto/real_autorvmanager.cgi;/usr/local/rvglobalsoft/rvmanager/auto/real_autorvmanager.cgi; After that, go to WHM -> Plugins -> RVglobalsoft Manager -> Active RVsubversion.Then back to WHM -> Plugins -> RVglobalsoft Manager -> RVsubversion again to run the following command.perl /usr/local/rvglobalsoft/rvsubversion/install.pl

