<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Piotr Zaniewicz</title>
	<atom:link href="http://piotr.eldora.pl/feed" rel="self" type="application/rss+xml" />
	<link>http://piotr.eldora.pl</link>
	<description>Ideas not to be forgotten...</description>
	<lastBuildDate>Sun, 25 Apr 2010 16:50:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mathematics skill testing quiz</title>
		<link>http://piotr.eldora.pl/2010/04/25/mathematics-skill-testing-quiz</link>
		<comments>http://piotr.eldora.pl/2010/04/25/mathematics-skill-testing-quiz#comments</comments>
		<pubDate>Sun, 25 Apr 2010 16:46:45 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[quiz]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[timer]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=126</guid>
		<description><![CDATA[In case you need to practice your basic maths skills, you can use my freshly developed online maths skills quiz.
I have developed it in PHP and it uses Ajax scripting to retrieve new questions. All questions are random, and no results are stored on the server side.
In case you are interested in the source code. [...]]]></description>
			<content:encoded><![CDATA[<p>In case you need to practice your basic maths skills, you can use my freshly developed online <a href="http://piotr.eldora.pl/.tools/mathquiz/">maths skills quiz</a>.</p>
<p>I have developed it in PHP and it uses Ajax scripting to retrieve new questions. All questions are random, and no results are stored on the server side.</p>
<p>In case you are interested in the source code. Let me know, I will be happy to share it with you.</p>
<p>Good luck !</p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2010/04/25/mathematics-skill-testing-quiz/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fractions in PHP and whole numbers</title>
		<link>http://piotr.eldora.pl/2010/04/20/fractions-in-php-and-whole-numbers</link>
		<comments>http://piotr.eldora.pl/2010/04/20/fractions-in-php-and-whole-numbers#comments</comments>
		<pubDate>Tue, 20 Apr 2010 16:52:38 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=117</guid>
		<description><![CDATA[I have been searching for a good PHP class for fraction handling and found Math_Fraction in the PEAR database.
However, it was still lacking a possibility to display the whole numbers of a fraction and I had to rewrite the last function in the Fraction.php file.
Here it is:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function toString&#40;$whole=false&#41;
&#123;
    $n = $this-&#62;getNum&#40;&#41;;
  [...]]]></description>
			<content:encoded><![CDATA[<p>I have been searching for a good PHP class for fraction handling and found <a href="http://pear.php.net/package/Math_Fraction/">Math_Fraction</a> in the PEAR database.<br />
However, it was still lacking a possibility to display the whole numbers of a fraction and I had to rewrite the last function in the Fraction.php file.<br />
Here it is:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> toString<span style="color: #009900;">&#40;</span><span style="color: #000088;">$whole</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$n</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getNum</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$d</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getDen</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$whole</span> <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span><span style="color: #339933;">&lt;</span><span style="color: #000088;">$d</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$n</span>/<span style="color: #006699; font-weight: bold;">$d</span>&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span><span style="color: #339933;">==</span><span style="color: #000088;">$d</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$d</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #b1b100;">return</span> <span style="color: #990000;">floatval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span> <span style="color: #339933;">/</span> <span style="color: #000088;">$d</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$w</span> <span style="color: #339933;">=</span> <span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span><span style="color: #339933;">/</span><span style="color: #000088;">$d</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #000088;">$n</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span><span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$d</span><span style="color: #339933;">*</span><span style="color: #000088;">$w</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$w</span> <span style="color: #006699; font-weight: bold;">$n</span>/<span style="color: #006699; font-weight: bold;">$d</span>&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>I have also informed the maintainer about it, so he might update it some time.<br />
Meanwhile I invite you to use this simple, yet effective solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2010/04/20/fractions-in-php-and-whole-numbers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wysyłanie SMS przez bramkę mBox orange.pl &#8211; wykorzystanie php+curl</title>
		<link>http://piotr.eldora.pl/2009/09/18/wysylanie-sms-przez-bramke-mbox-orange-pl-wykorzystanie-phpcurl</link>
		<comments>http://piotr.eldora.pl/2009/09/18/wysylanie-sms-przez-bramke-mbox-orange-pl-wykorzystanie-phpcurl#comments</comments>
		<pubDate>Fri, 18 Sep 2009 01:45:46 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=91</guid>
		<description><![CDATA[Trochę uporządkowałem skrypty i postanowiłem udostępnić skrypt do wysyłania sms&#8217;ów przez bramkę mBox orange.pl.
Jestem ciekawy ewentualnych ulepszeń, więc jak coś to proszę podsyłać nowe wersje  
UPDATE:
Skrypt został wzbogacony o możliwość wysyłania dowolnie długich wiadomości. Dzieli wpisaną wiadomość na 640 znaków i wysyła funkcją jako osobne smsy.
Ponadto, końcowy stan smsów jest pobierany przez Xpath.
Plik PHPS
]]></description>
			<content:encoded><![CDATA[<p>Trochę uporządkowałem skrypty i postanowiłem udostępnić skrypt do wysyłania sms&#8217;ów przez bramkę mBox orange.pl.</p>
<p>Jestem ciekawy ewentualnych ulepszeń, więc jak coś to proszę podsyłać nowe wersje <img src='http://piotr.eldora.pl/weblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong><em>UPDATE:</em></strong><br />
Skrypt został wzbogacony o możliwość wysyłania dowolnie długich wiadomości. Dzieli wpisaną wiadomość na 640 znaków i wysyła funkcją jako osobne smsy.<br />
Ponadto, końcowy stan smsów jest pobierany przez Xpath.</p>
<p><a href="http://piotr.eldora.pl/.downloads/mbox_sender.phps">Plik PHPS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2009/09/18/wysylanie-sms-przez-bramke-mbox-orange-pl-wykorzystanie-phpcurl/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Spamassassin + vpopmail + sa-learn + learning from IMAP folders</title>
		<link>http://piotr.eldora.pl/2009/05/17/spamassassin-vpopmail-sa-learn-learning-from-imap-folders</link>
		<comments>http://piotr.eldora.pl/2009/05/17/spamassassin-vpopmail-sa-learn-learning-from-imap-folders#comments</comments>
		<pubDate>Sat, 16 May 2009 22:37:33 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=79</guid>
		<description><![CDATA[Below is a quick solution to making spamassassin learn from specific IMAP folders. Script represents a daily cron script and I just used sudo vpopmail (has to be the same as your spamd user) to simplify things. You probably should use user specific crontab&#8230;

1
2
3
4
5
#!/bin/bash
for F in `find /home/vpopmail/domains -type d -name '.Junk' -print`;
do sudo -H [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a quick solution to making spamassassin learn from specific IMAP folders. Script represents a daily cron script and I just used <em>sudo vpopmail</em> (has to be the same as your spamd user) to simplify things. You probably should use user specific crontab&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #000000; font-weight: bold;">for</span> F <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>vpopmail<span style="color: #000000; font-weight: bold;">/</span>domains <span style="color: #660033;">-type</span> d <span style="color: #660033;">-name</span> <span style="color: #ff0000;">'.Junk'</span> -print<span style="color: #000000; font-weight: bold;">`</span>;
<span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-H</span> <span style="color: #660033;">-u</span> vpopmail <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>sa-learn <span style="color: #660033;">--spam</span> <span style="color: #007800;">$F</span><span style="color: #000000; font-weight: bold;">/</span>cur<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">&amp;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null;
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$F</span><span style="color: #000000; font-weight: bold;">/</span>cur<span style="color: #000000; font-weight: bold;">/*</span>;
<span style="color: #000000; font-weight: bold;">done</span>;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2009/05/17/spamassassin-vpopmail-sa-learn-learning-from-imap-folders/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php strpos array</title>
		<link>http://piotr.eldora.pl/2009/03/26/php-strpos-array</link>
		<comments>http://piotr.eldora.pl/2009/03/26/php-strpos-array#comments</comments>
		<pubDate>Thu, 26 Mar 2009 05:57:20 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=65</guid>
		<description><![CDATA[I needed a PHP function to check whether a string contained one of the array values. As we know strpos does&#8217;t accept input as an array so I had to tweak it  bit. Below is an example of what I did:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function strpos_array&#40;$string, $values&#41; &#123;
    $hits = 0; //will give number of values [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a PHP function to check whether a string contained one of the array values. As we know strpos does&#8217;t accept input as an array so I had to tweak it  bit. Below is an example of what I did:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> strpos_array<span style="color: #009900;">&#40;</span><span style="color: #000088;">$string</span><span style="color: #339933;">,</span> <span style="color: #000088;">$values</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$hits</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//will give number of values found in a string</span>
    <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$values</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$try</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$pos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$string</span><span style="color: #339933;">,</span> <span style="color: #000088;">$try</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$pos</span> <span style="color: #339933;">!==</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
            <span style="color: #000088;">$hits</span><span style="color: #339933;">++;</span> <span style="color: #666666; font-style: italic;">// you can do array_push here to get the values</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$hits</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">//if none value from array was found returns false</span>
        <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">//I just needed a simple true/false boolean</span>
       <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2009/03/26/php-strpos-array/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FPDF polskie wolne czcionki</title>
		<link>http://piotr.eldora.pl/2009/01/19/fpdf-polskie-wolne-czcionki</link>
		<comments>http://piotr.eldora.pl/2009/01/19/fpdf-polskie-wolne-czcionki#comments</comments>
		<pubDate>Mon, 19 Jan 2009 11:13:26 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[linux fpdf gpl wolne]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=39</guid>
		<description><![CDATA[Postanowiłem wreszcie trochę uporządkować czcionki używane do generowania dokumentów pdf oraz obrazków wykorzystujących czcionki ttf. Załączam zestaw gotowej do zainstalowania czytelnej czcionki z pakietu liberation-fonts. Które są upowszechnione na licencji GPL.
Pobierz
]]></description>
			<content:encoded><![CDATA[<p>Postanowiłem wreszcie trochę uporządkować czcionki używane do generowania dokumentów pdf oraz obrazków wykorzystujących czcionki ttf. Załączam zestaw gotowej do zainstalowania czytelnej czcionki z pakietu <a href="https://fedorahosted.org/liberation-fonts/">liberation-fonts</a>. Które są upowszechnione na licencji GPL.</p>
<p><a href="http://piotr.eldora.pl/weblog/wp-content/uploads/2009/01/fonttar.bz2">Pobierz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2009/01/19/fpdf-polskie-wolne-czcionki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Odmiana imion php mysql</title>
		<link>http://piotr.eldora.pl/2009/01/12/odmiana-imion-php-mysql</link>
		<comments>http://piotr.eldora.pl/2009/01/12/odmiana-imion-php-mysql#comments</comments>
		<pubDate>Mon, 12 Jan 2009 03:26:57 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[imiona]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[odmiona]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/?p=28</guid>
		<description><![CDATA[Postanowiłem udostępnić uzupełniony zbiór odmian polskich imion dla bazy MySQL.
Plik jest gotowy do importu do bazy MySQL, zawiera imiona,  odmianę, płeć oraz ilość sylab występujących w imieniu. Można go wykorzystać na przykład w skryptach php wysyłających życzenia urodzinowe lub pozdrowienia.
W przypadku braku odmiany, proszę wpisać w komentarzach to uzupełnię.
]]></description>
			<content:encoded><![CDATA[<p>Postanowiłem udostępnić uzupełniony zbiór <a href="http://piotr.eldora.pl/bazy-danych-kody-pocztowe-imiona-panstwa">odmian polskich imion</a> dla bazy MySQL.</p>
<p>Plik jest gotowy do importu do bazy MySQL, zawiera imiona,  odmianę, płeć oraz ilość sylab występujących w imieniu. Można go wykorzystać na przykład w skryptach php wysyłających życzenia urodzinowe lub pozdrowienia.</p>
<p>W przypadku braku odmiany, proszę wpisać w komentarzach to uzupełnię.</p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2009/01/12/odmiana-imion-php-mysql/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Suhosin and maximum $_POST variables limit</title>
		<link>http://piotr.eldora.pl/2008/04/23/suhosin-maximum-post-variables-php-limit</link>
		<comments>http://piotr.eldora.pl/2008/04/23/suhosin-maximum-post-variables-php-limit#comments</comments>
		<pubDate>Wed, 23 Apr 2008 21:30:54 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[suhosin]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/2008/04/23/suhosin-saved-my-day-again</guid>
		<description><![CDATA[I had a problem of more than 200 $_POST variables in one of my php scripts. Something was limiting the script not to process more than 200 in the $_POST array.
After unsuccessfully trying to find some info about how to change it in php.ini or apache.conf I found a solution using Suhosin:
You simply add the [...]]]></description>
			<content:encoded><![CDATA[<p>I had a problem of more than 200 $_POST variables in one of my php scripts. Something was limiting the script not to process more than 200 in the $_POST array.</p>
<p>After unsuccessfully trying to find some info about how to change it in php.ini or apache.conf I found a solution using Suhosin:</p>
<p>You simply add the following to your php.ini file after loading the suhosin module:</p>
<p>[suhosin]<br />
suhosin.post.max_vars = 2000<br />
suhosin.request.max_vars = 2000</p>
<p>That&#8217;s easy now <img src='http://piotr.eldora.pl/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Update: remember to restart Apache after making these changes.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2008/04/23/suhosin-maximum-post-variables-php-limit/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Suhosin &#8211; customize php security</title>
		<link>http://piotr.eldora.pl/2008/04/09/suhosin-customize-php-security</link>
		<comments>http://piotr.eldora.pl/2008/04/09/suhosin-customize-php-security#comments</comments>
		<pubDate>Wed, 09 Apr 2008 19:46:37 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/2008/04/09/suhosin-customize-php-security</guid>
		<description><![CDATA[I was trying to configure my virtualhosts to have different php options regarding shell access. After some research I came up with Suhosin solution, which solved problems with setting disable_functions per virtualhost. Look it up!
]]></description>
			<content:encoded><![CDATA[<p>I was trying to configure my virtualhosts to have different php options regarding shell access. After some research I came up with Suhosin solution, which solved problems with setting <em>disable_functions</em> per virtualhost. <a href="http://www.hardened-php.net/suhosin.127.html" target="_blank">Look it up</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2008/04/09/suhosin-customize-php-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://piotr.eldora.pl/2008/03/10/19</link>
		<comments>http://piotr.eldora.pl/2008/03/10/19#comments</comments>
		<pubDate>Mon, 10 Mar 2008 10:36:32 +0000</pubDate>
		<dc:creator>Piotr Zaniewicz</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://piotr.eldora.pl/2008/03/10/19</guid>
		<description><![CDATA[&#8220;Formulate and stamp indelibly on your mind a mental picture of yourself as succeeding. Hold this picture tenaciously. Never permit it to fade. Your mind will seek to develop the picture.&#8221;
&#8211; Norman Vincent Peale, Author 
]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight: bold; font-size: 12pt; color: #336699; font-family: Arial; text-decoration: none">&#8220;</span><span style="font-weight: bold; font-size: 12pt; color: #336699; font-family: Arial; text-decoration: none">Formulate and stamp indelibly on your mind a mental picture of yourself as succeeding. Hold this picture tenaciously. Never permit it to fade. Your mind will seek to develop the picture</span><span style="font-weight: bold; font-size: 12pt; color: #336699; font-family: Arial; text-decoration: none">.&#8221;</span></p>
<p><font size="4"><span style="color: #222222; font-weight: normal; font-size: 10pt; font-family: Arial">&#8211; </span></font><font size="4"><span style="color: #222222; font-weight: normal; font-size: 10pt; font-family: Arial">Norman Vincent Peale, <em>Author</em> </span></font></p>
]]></content:encoded>
			<wfw:commentRss>http://piotr.eldora.pl/2008/03/10/19/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
