Nov 28
This howto describe installation process of SVNManager od Debian, should also work on Ubuntu. Howto based on http://redimp.de/(…)SVNManager.html.
First step is installation of apache2 and php5, it won’t be describe here.
Next step is installation of necessary packages
aptitude install php-pear libapache2-svn subversion
pear install -f -o VersionControl_SVN
Continue reading »
written by rzelazko
\\ tags: debian, Pear, svn, svnmanager, ubuntu
Jan 09
This howto will illustrate a way to install and configure Subversion and websvn on a Debian server: http://www.howtoforge.com/debian_subversion_websvn
written by rzelazko
Dec 19
To install Xdebug (as PECL extension) on Debian Linux you should take the following steps:
Continue reading »
written by rzelazko
\\ tags: Apache, apache2, debian, Linux, Pear, Pecl, php5, xdebug
Oct 19
How to enable apache module (ex. mod_rewrite)?
You must type in console:
a2enmod rewrite
If you want to enable new virtual host you must type:
a2ensite blog.ns.wtc.pl
Where blog.ns.wtc.pl is file saved in /etc/apache2/sites-available.
written by rzelazko
Sep 18
If you get following error in your apache:
apache2: Could not determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
The fix is to edit the conf file and add in the ServerName setting (as the error message requests). In other words:
sudo vi /etc/apache2/httpd.conf
followed by adding the following string:
# ServerName is specified
# to avoid warning during reload
ServerName MYSERVER
written by rzelazko