How to , and other stuff about linux, photo, php … A linux, photography blog. To remember some linux situation, and fix them quickly.

September 5, 2013

svn: E170000: Unrecognized URL scheme for http*

Filed under: Linux — admin @ 10:03 am

Hello
Well in the few past day I upgraded some svn to 1.7 . First problem is this. with Unrecognized URL scheme for http.
Well it appear that you need neon for this .
So here we go
wget http://www.webdav.org/neon/neon-0.29.3.tar.gz
tar -xzvf neon-0.29.3.tar.gz
cd neon-0.29.3
./configure --with-ssl
make
make install

Also I think yum install neon-devel should work also . But didn’t try it .

Now if you have a error with sqlite, you have to install sqlite-devel on your server .

After this
wget http://mirrors.hostingromania.ro/apache.org/subversion/subversion-1.7.13.tar.gz
tar -zxvf subversion-1.7.13.tar.gz
cd subversion-1.7.13
./configure --with-ssl --with-neon=/usr/local
make
make install

Now this is for centos, if you have debian you should install more programs. I did try to upgrade a debian and took me some time to do this .

Regards

September 2, 2013

ispconfig dovecot: auth: Error: Can’t open configuration file /etc/dovecot-sql.conf

Filed under: Linux — admin @ 10:17 am

Well today I am trying to setup a ispconfig. When I try to log on mail I have a wired problem that imap is not working. So when I looked into maillog I see this error
auth: Error: Can’t open configuration file /etc/dovecot-sql.conf

Well the fis is pretty simple .
ln -s /etc/dovecot/dovecot-sql.conf /etc/dovecot-sql.conf
ln -s /etc/dovecot/dovecot.conf /etc/dovecot.conf

After this restart dovecot, and the mail will work.

Powered by WordPress