<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Brains4All</title>
<link>http://people.brains4all.com/b4a/</link>
<description></description>
<copyright>Copyright 2008</copyright>
<lastBuildDate>Tue, 29 May 2007 16:40:24 +0100</lastBuildDate>
<generator>http://www.movabletype.org/?v=3.35</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs> 

<item>
<title>Upload &amp; post limits in PHP/ATB5</title>
<description><![CDATA[<p>Okay, schijnbaar zijn er 3 parameters die de limiet van een te uploaden bestand in PHP / ATB5 bepalen:</p>

<p>[php.ini]<br />
post_max_size = 11M<br />
upload_max_filesize = 10M<br />
file_uploads = On</p>

<p>[atb5.setup.php]<br />
define('ATB5_FILE_MAX_BYTES', 10*1024*1024);   // 10 MB</p>

<p>Stond ik mooi tot 3 keer toe voor paal...</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/05/upload_post_lim.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/05/upload_post_lim.html</guid>
<category>Documentatie</category>
<pubDate>Tue, 29 May 2007 16:40:24 +0100</pubDate>
</item>
<item>
<title>Onderbreken van data/elementen bij printen</title>
<description><![CDATA[<p>Om koppen van tabellen ook op volgende pagina's te herhalen bij media=print en geen herhaling bij media=screen, heb ik een deel van de documentatie op <a href="http://www.w3.org/TR/REC-CSS2/page.html">http://www.w3.org/TR/REC-CSS2/page.html</a> gelezen.</p>

<p>Als er meer tijd is wil ik dit wat meer onderzoeken.</p>

<p>Nu echter voor Kjaer een tabel onderbroken door een tr in de table reports een specifieke class mee te geven met de eigenschap: page-break-after: always;</p>

<p>zie style:<br />
@page reports { size: auto; }<br />
tr.breakHere { page-break-after: always; }</p>

<p>Om de th (de kop van de tabel) niet op screen te herhalen geef je de tr waarin de th's staan die je niet wilt laten zien een display: none mee, dus: tr.afterBreak th { display: none; }.</p>

<p>In de print.css laat je m wel zien.</p>

<p></p>

<p></p>

<p><br />
</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/04/onderbreken_van_1.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/04/onderbreken_van_1.html</guid>
<category>xhtml + css</category>
<pubDate>Thu, 05 Apr 2007 13:24:16 +0100</pubDate>
</item>
<item>
<title>Hoogte probleem geclearde div/p in IE6</title>
<description><![CDATA[<p>Als een serie divs, of p's worden ge left float en je wilt de float stoppen om een div/p op een 'nieuwe regel' te beginnen, dan gebruik je normaliter een clear: left.</p>

<p>Als de div/p op de 'volgende regel' een hoogte moet hebben van 1px gaat dat niet in IE6 in deze situatie.</p>

<p>De oplossing ligt hier: geef de ge-clear-de div een line-height:0 en een font-size: 0 mee, dan kan je de hoogte van de div exact bepalen. <br />
<p></p></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/04/hoogte_probleem.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/04/hoogte_probleem.html</guid>
<category>xhtml + css</category>
<pubDate>Tue, 03 Apr 2007 10:12:24 +0100</pubDate>
</item>
<item>
<title>Google Maps - Polylines in IE6 en IE7</title>
<description><![CDATA[<p>Ik ben er even mee bezig geweest. Tot ergernis toe.<br />
Waarom laat Firefox de polylijnen van google maps WEL zien en IE nu weer niet?</p>

<p>Het zit m allemaal in het <html> attribuut xmlns. De onderstaande html-tag + attribuut moet worden gezet:</p>

<p><html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml"></p>

<p><br />
Ook handig:<br />
<a href="http://www.google.com/apis/maps/documentation/polylineutility.html">Interactive Polyline Encoder Utility</a>, een tool coordinaten van polylijnen te encoden.<br />
</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/03/google_maps_pol.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/03/google_maps_pol.html</guid>
<category>xhtml + css</category>
<pubDate>Wed, 28 Mar 2007 11:01:31 +0100</pubDate>
</item>
<item>
<title>Ul centreren binnen een div:</title>
<description><![CDATA[Ik had een probleem met het centeren van een ul in een div met een vaste breedte:
<pre>
&lt;div class="pages"&gt;			
	&lt;ul&gt;
		&lt;li&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="/"&gt;2&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="/"&gt;3&lt;/a&gt;&lt;/li&gt;
		&lt;li class="activePage"&gt;4&lt;/li&gt;
		&lt;li&gt;&lt;a href="/"&gt;5&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="/"&gt;6&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
</pre>

met de css:

<pre>
.browsePagesWrapper div.pages ul { 		margin: 0; padding: 0; list-style-type: none; }
.browsePagesWrapper div.pages ul li	{ 	

margin: 0; padding: 8px 0 0 0;
display: inline; height: 23px;

GEEN FLOAT : LEFT; GEBRUIKEN

font-size: 1em; color: #2E3848;

}
</pre>

dit kwam omdat de li's binnen deze ul een float left hadden.
Float eruit en het is weer mogelijk om te positioneren binnen de div (de ul float niet meer).

het probleem dat nu ontstaat is dat het niet meer mogelijk is in IE7 een achtergrond te gebruiken voor de "in dit geval" li 
met de class "activePage". De oplossing ligt in het verhogen van de line-height. Zo wordt dus ook de li aan de onderkant verlengd/verhoogd


]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/03/ul_centeren_bin.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/03/ul_centeren_bin.html</guid>
<category>xhtml + css</category>
<pubDate>Tue, 06 Mar 2007 10:55:45 +0100</pubDate>
</item>
<item>
<title>14Dayz blogsearch Pipe</title>
<description><![CDATA[<p>Yahoo heeft een leuk nieuw speeltje waarmee je zelf kunt gaan sleutelen aan informatiestromen op het internet, het heet <a href="http://pipes.yahoo.com/">Pipes</a>. Het leuke is dat je je kluswerk ook weer direct met anderen kan delen.</p>

<p>Als je <a href="http://pipes.yahoo.com/pipes/bFH0.Di32xGnPkr_qu5lkA/run?textinput1=14dayz&_render=rss">bijgaande link in je rss feeder opent</a> heb je altijd het laatste nieuws van blogs die over 14Dayz schrijven.</p>

<p>Als yahoo niet te lijden heeft onder de populariteit natuurlijk. :)</p>

<p>http://pipes.yahoo.com/pipes/bFH0.Di32xGnPkr_qu5lkA/run?textinput1=14dayz&_render=rss</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/02/14dayz_blogsear.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/02/14dayz_blogsear.html</guid>
<category>Lering ende vermeack</category>
<pubDate>Fri, 09 Feb 2007 10:03:08 +0100</pubDate>
</item>
<item>
<title>Dig</title>
<description><![CDATA[<p>Vraag je je net als ik altijd af wat ook altijd de syntax van dig is? En wat je er ook al weer mee kan? Hier is de <a href="http://www.madboa.com/geek/dig/#what">ultime dig guide</a>.</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2007/01/dig.html</link>
<guid>http://people.brains4all.com/b4a/archives/2007/01/dig.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Fri, 05 Jan 2007 12:50:15 +0100</pubDate>
</item>
<item>
<title>Budgetwebhosting</title>
<description><![CDATA[<p>We hebben een affiliate bij Budgetwebhosting, In het kort krijgen we 10% van onze omzet incl btw weer retour, gebruik dus deze link als je een hostingpakket koopt bij budgetwebhosting.</p>

<p>http://www.budgetwebhosting.nl/site/?aid=2496</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/11/budgetwebhostin.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/11/budgetwebhostin.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Wed, 29 Nov 2006 10:34:55 +0100</pubDate>
</item>
<item>
<title>Wat inspireert de klant?</title>
<description><![CDATA[<p><a href="http://www.webdesignfromscratch.com/current-style.cfm">This is where I try to sum up the current state-of-the-art in graphic design for web pages, and identify the distinctive features that make a web page look fresh, appealing and easy to use.</a></p>

<p><a href="http://www.thinslice.net"><br />
<img alt="ts_detail.jpg" src="http://people.brains4all.com/b4a/archives/ts_detail.jpg" width="598" height="154" border="0"/></a></p>

<p><a href="http://www.scratchmedia.co.uk/portfolio.html">http://www.scratchmedia.co.uk/portfolio.html</a></p>

<p><a href="http://www.pixelworthy.com/">http://www.pixelworthy.com/</a></p>

<p><a href="http://www.31three.com/">http://www.31three.com/</a></p>

<p><a href="http://www.gr0w.com/">http://www.gr0w.com/</a></p>

<p><a href="http://www.emotionslive.co.uk/">http://www.emotionslive.co.uk/</a></p>

<p><a href="http://www.threetwentyinteractive.com/">http://www.threetwentyinteractive.com/</a></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/10/wat_inspireert.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/10/wat_inspireert.html</guid>
<category>Design</category>
<pubDate>Wed, 25 Oct 2006 15:32:12 +0100</pubDate>
</item>
<item>
<title>Static Routes in Redhat 9 - New isn&apos;t always better</title>
<description><![CDATA[<p><a href="http://www.akadia.com/services/redhat_static_routes.html">http://www.akadia.com/services/redhat_static_routes.html</a></p>

<p><strong>Overview</strong></p>

<p>With the introduction of Redhat version 8 and continued into version 9, the /etc/sysconfig/static-routes file no longer seems to function correctly.</p>

<p>Linux static routes changed in 8.0 to a new format. Now you are to create a file in /etc/sysconfig/network-scripts for each Ethernet interface you wish to create static routes on.</p>

<p>    <em>Example</em>:<br />
<pre>touch /etc/sysconfig/network-scripts/route-eth0</pre></p>

<p>The syntax for this file is different from the traditional route format used in /etc/sysconfig/static-routes . Redhat has yet to document the change on their web site as of June 2003.</p>

<p>Syntax based on a usenet post go to /etc/sysconfig/network-scripts, make a file called route-devicename (ex: route-eth0) and populate it with your static routes for that device so if you wanted to make a static route to the 192.168.0.0/24 network through 152.3.182.5 type:<br />
<pre>192.168.0.0/24 via 152.3.182.5</pre></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/10/static_routes_i.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/10/static_routes_i.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Tue, 24 Oct 2006 13:43:10 +0100</pubDate>
</item>
<item>
<title>Apache en Mysql out of connections</title>
<description><![CDATA[<p># WinNT MPM<br />
# ThreadsPerChild: constant number of worker threads in the server process<br />
# MaxRequestsPerChild: maximum  number of requests a server process serves<br />
<IfModule mpm_winnt.c><br />
ThreadsPerChild 20<br />
MaxRequestsPerChild  10<br />
</IfModule></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/10/apache_en_mysql.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/10/apache_en_mysql.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Thu, 12 Oct 2006 00:09:45 +0100</pubDate>
</item>
<item>
<title>Which key belongs to which certificate?</title>
<description><![CDATA[<p>Error: "OpenSSL:error:0B080074:x509 certificate outines:x509_check_private_key:key values mismatch"<br />
This error message occurs if you are using the incorrect certificate or private key during installation. So you need to use the matching key and certificate files. To check that the public key in your cert matches the public portion of your private key, view both files, and compare the modulus values with the following instructions:<br />
To view the certificate:<br />
<pre><br />
openssl x509 -noout -text -in certfile<br />
</pre><br />
To view the key:<br />
<pre><br />
openssl rsa -noout -text -in keyfile<br />
</pre></p>

<p>The "modulus" and "public exponent" portions in the key and the certificate must match exactly. If the "modulus" do not match exactly then you are using either the incorrect private key or certificate.</p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/07/which_key_belon.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/07/which_key_belon.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Thu, 13 Jul 2006 14:21:56 +0100</pubDate>
</item>
<item>
<title>Harvest vs 14Dayz - Wie wint?</title>
<description><![CDATA[<p><a href="http://newinternet.ducttapemarketing.com/2006/06/web_based_time_.html">http://newinternet.ducttapemarketing.com/2006/06/web_based_time_.html</a></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/06/harvest_vs_14da.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/06/harvest_vs_14da.html</guid>
<category>HotNews</category>
<pubDate>Wed, 28 Jun 2006 15:16:08 +0100</pubDate>
</item>
<item>
<title>How can I get rid of the pass-phrase dialog at Apache startup time?</title>
<description><![CDATA[<p>The reason why this dialog pops up at startup and every re-start is that the RSA private key inside your server.key file is stored in encrypted format for security reasons. The pass-phrase is needed to be able to read and parse this file. When you can be sure that your server is secure enough you perform two steps:</p>

<p>   1. Remove the encryption from the RSA private key (while preserving the original file):</p>

<p>      $ cp server.key server.key.org<br />
      $ openssl rsa -in server.key.org -out server.key</p>

<p>   2. Make sure the server.key file is now only readable by root:</p>

<p>      $ chmod 400 server.key </p>

<p>Now server.key will contain an unencrypted copy of the key. If you point your server at this file it will not prompt you for a pass-phrase. HOWEVER, if anyone gets this key they will be able to impersonate you on the net. PLEASE make sure that the permissions on that file are really such that only root or the web server user can read it (preferably get your web server to start as root but run as another server, and have the key readable only by root).</p>

<p>via: <a href="http://www.modssl.org/docs/2.8/ssl_faq.html#ToC31">mod_ssl F.A.Q. list</a></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/06/how_can_i_get_r.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/06/how_can_i_get_r.html</guid>
<category>Systeem- en Netwerkbeheer</category>
<pubDate>Sat, 17 Jun 2006 01:42:15 +0100</pubDate>
</item>
<item>
<title>Easy String.fromCharCode();</title>
<description><![CDATA[<p><a href="http://ferruh.mavituna.com/stringfromcharcode.asp?q=%3Ca+href%3D%22mailto%3Avalue%4014dayz.com%22%3Evalue%4014dayz.com%3C%2Fa%3E">Hier is de url ....</a></p>]]></description>
<link>http://people.brains4all.com/b4a/archives/2006/06/easy_stringfrom.html</link>
<guid>http://people.brains4all.com/b4a/archives/2006/06/easy_stringfrom.html</guid>
<category>Algemeen</category>
<pubDate>Fri, 16 Jun 2006 12:08:18 +0100</pubDate>
</item>


</channel>
</rss>
