Installing PHP on Debian without Apache
If you need to install PHP without apache on a Debian machine, do not try the short way You need to install dependencies of php5 first and then install php5, like below
If you need to install PHP without apache on a Debian machine, do not try the short way You need to install dependencies of php5 first and then install php5, like below
Source: svn://svnanon.samba.org/samba/tags/release-2-2-12/docs/history It’s now October 1998. We just got back from the 3rd CIFS conference in SanJose. The Samba Team was the biggest contingent there. Samba 2.0 should be shipping in the next few weeks with much better domain controller support, GUI configuration, a new user space SMB filesystem and lots of other neat stuff. [...]
#1030 – Got error 28 from storage engine This means there is no space left on the drive, usually this means your /tmp If you use cPanel, your /tmp could be mounted from /usr/tmpDSK, this is a file. If you want to increase this file you can type these following commands, change count=512000 to any [...]
Assuming that apache is installed! Install packages apt-get install subversion libapache2-svn libapache-mod-dav Enable SSL a2enmod Add “Listen 443″ into httpd.conf if needed. Install SSL apt-get install ssl-cert mkdir /etc/apache2/ssl /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/site-name.crt Adding Basic Authentication: htpasswd2 -c -m /home/path-to/svn/project/.htpasswd username Configure site cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site-name nano /etc/apache2/sites-available/site-name <VirtualHost IP_ADDRESS:443> ServerName hostname DocumentRoot /home/path-to/svn SSLEngine on [...]