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: , , , ,

Jun 13

To automaticaly cleanup and repair xhtml code (ex. from textarea or input tag) use Tidy extesnion for PHP.
Sample broken code which can be fixed

<p>ala <b> ma kota & psa<br />Lorem ipsum

to valid XHTML:

<p>ala <b> ma kota &amp; psa<br />Lorem ipsum</b></p>

Simple function which repair wrong code: Continue reading »

written by rzelazko \\ tags: , , , , , , ,

Apr 29

By default Xdebug truncate long var_dump output. To turn off this feature edit php.ini or xdebug.ini and add there:
Continue reading »

written by rzelazko \\ tags: , , ,

Dec 19

To install Xdebug (as PECL extension) on Debian Linux you should take the following steps:
Continue reading »

written by rzelazko \\ tags: , , , , , , ,