Tag: Apache

  • Jasper Server Permission Denied error

    Occasionally, Jasper Server has an error relating to being unable to write files. The errors show up in the Apache web server log, catalina.out. You have probably started the service as the user root on accident. This will cause ownership to change to root on some log files. Then when you log back on as user jasper…

  • Enabling Apache support for pretty permalinks in WordPress

    In WordPress, there is a feature called PermaLinks. These create URL’s that are better searched by Google. So instead of getting a URL like http://example.com?id=454, you get something like http://example.com/enabling-apache-support-for-pretty-permalinks-in-wordpress. Now the search engines will see a URL that they can parse for information, rather than an arbitrary number. Enabling Apache support for what is…

  • How to install Subversion with Apache HTTPD

    Ensure you have Apache installed on your system. Ensure you have mod_dav_svn installed: > yum -y update mod_dav_svn Install ssl support to enable https: > yum install mod_ssl Edit /etc/httpd/conf.d/subversion.conf and append the following lines to the end of your config file: <Location /svn> DAV svn SVNParentPath /var/svn AuthType Basic AuthName “Subversion repository” AuthUserFile /etc/svn-auth-file…