<?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>Marius van Witzenburg &#187; Error</title>
	<atom:link href="http://kitara.nl/tag/error/feed/" rel="self" type="application/rss+xml" />
	<link>http://kitara.nl</link>
	<description>We fight for our survival, we fight!</description>
	<lastBuildDate>Sun, 20 May 2012 15:39:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Apache Error Codes</title>
		<link>http://kitara.nl/2011/11/11/apache-error-codes/</link>
		<comments>http://kitara.nl/2011/11/11/apache-error-codes/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 15:10:37 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Codes]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=130</guid>
		<description><![CDATA[With the function below you can add your own custom actions to error statuses of Apache. Lets say you want a custom 404 error page. You could redirect a user upon a 404 error or show a complete different layout. /** * HTTP Protocol defined status codes * @param int $num */ function HTTPStatus&#40;$num&#41; &#123; [...]]]></description>
			<content:encoded><![CDATA[<p>With the function below you can add your own custom actions to error statuses of Apache.</p>
<p>Lets say you want a custom 404 error page. You could redirect a user upon a 404 error or show a complete different layout.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009933; font-style: italic;">/**
 * HTTP Protocol defined status codes
 * @param int $num
 */</span>
<span style="color: #000000; font-weight: bold;">function</span> HTTPStatus<span style="color: #009900;">&#40;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   static <span style="color: #000088;">$http</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span> <span style="color: #009900;">&#40;</span>
       <span style="color: #cc66cc;">100</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 100 Continue&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">101</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 101 Switching Protocols&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">200</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 200 OK&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">201</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 201 Created&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">202</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 202 Accepted&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">203</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 203 Non-Authoritative Information&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">204</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 204 No Content&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">205</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 205 Reset Content&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">206</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 206 Partial Content&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">300</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 300 Multiple Choices&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">301</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 301 Moved Permanently&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">302</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 302 Found&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">303</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 303 See Other&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">304</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 304 Not Modified&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">305</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 305 Use Proxy&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">307</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 307 Temporary Redirect&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">400</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 400 Bad Request&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">401</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 401 Unauthorized&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">402</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 402 Payment Required&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">403</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 403 Forbidden&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">404</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 404 Not Found&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">405</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 405 Method Not Allowed&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">406</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 406 Not Acceptable&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">407</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 407 Proxy Authentication Required&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">408</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 408 Request Time-out&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">409</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 409 Conflict&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">410</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 410 Gone&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">411</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 411 Length Required&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">412</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 412 Precondition Failed&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">413</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 413 Request Entity Too Large&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">414</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 414 Request-URI Too Large&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">415</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 415 Unsupported Media Type&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">416</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 416 Requested range not satisfiable&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">417</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 417 Expectation Failed&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">500</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 500 Internal Server Error&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">501</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 501 Not Implemented&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">502</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 502 Bad Gateway&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">503</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 503 Service Unavailable&quot;</span><span style="color: #339933;">,</span>
       <span style="color: #cc66cc;">504</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;HTTP/1.1 504 Gateway Time-out&quot;</span>
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$http</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>You can download this <a href="http://kitara.nl/wp-content/uploads/2011/06/404.zip">404 error page example</a> to play with.</p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/11/11/apache-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix ACL errors in diskutility</title>
		<link>http://kitara.nl/2011/07/01/how-to-fix-acl-errors-in-diskutility/</link>
		<comments>http://kitara.nl/2011/07/01/how-to-fix-acl-errors-in-diskutility/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 19:30:41 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[ACL]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=204</guid>
		<description><![CDATA[If you try to repair permissions and get a bunch of acls found but not expected. To fix this some chmod commands need to be executed in the terminal. Essentially open up a terminal and do the following: cd / ls -le Look at the Applications and Library folders in the listing and you should [...]]]></description>
			<content:encoded><![CDATA[<p>If you try to repair permissions and get a bunch of acls found but not expected.</p>
<p>To fix this some chmod commands need to be executed in the terminal.</p>
<p>Essentially open up a terminal and do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-le</span></pre></div></div>

<p>Look at the Applications and Library folders in the listing and you should see they have specific ACLs. On one of my machines the Applications folder had 2 and the Library had one. On the other both had just one.</p>
<p>To remove these ACLs do the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #660033;">-a</span><span style="color: #666666; font-style: italic;"># 0 &quot;/Applications&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #660033;">-a</span><span style="color: #666666; font-style: italic;"># 0 &quot;/Library&quot;</span>
<span style="color: #666666; font-style: italic;"># etc...</span></pre></div></div>

<p>If you had more than one on either directory you can execute the same command until they are gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/07/01/how-to-fix-acl-errors-in-diskutility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix &#8220;Subclipse unable to load default svn client&#8221; error in Eclipse &amp; Aptana</title>
		<link>http://kitara.nl/2011/06/14/how-to-fix-subclipse-unable-to-load-default-svn-client-error-in-eclipse-aptana/</link>
		<comments>http://kitara.nl/2011/06/14/how-to-fix-subclipse-unable-to-load-default-svn-client-error-in-eclipse-aptana/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 18:42:54 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Not-Found]]></category>
		<category><![CDATA[Subclipse]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=325</guid>
		<description><![CDATA[I've been strugling with this error for about 20 minutes just wondering what I was doing wrong... Well, the solution is quite simple. You have install all packages below: SVNKit Library JNA Library CollabNet Merge Client Subclipse (Required) Subversion Client Adapter (Required) Subversion JavaHL Native Library Adapter (Required) Subversion Revision Graph You can see the [...]]]></description>
			<content:encoded><![CDATA[<p>I've been strugling with this error for about 20 minutes just wondering what I was doing wrong...</p>
<p>Well, the solution is quite simple. You have install all packages below:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">SVNKit Library
JNA Library
CollabNet Merge Client
Subclipse (Required)
Subversion Client Adapter (Required)
Subversion JavaHL Native Library Adapter (Required)
Subversion Revision Graph</pre></div></div>

<p>You can see the installation window below:<br />
<a href="http://kitara.nl/wp-content/uploads/2011/06/Screen-shot-2010-03-30-at-14.38.11.png"><img src="http://kitara.nl/wp-content/uploads/2011/06/Screen-shot-2010-03-30-at-14.38.11-502x512.png" alt="" title="Install subclipse on Aptana or Eclipse" width="502" height="512" class="alignnone size-medium wp-image-326" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/06/14/how-to-fix-subclipse-unable-to-load-default-svn-client-error-in-eclipse-aptana/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MantisBT (Bug Tracker) APPLICATION ERROR #401</title>
		<link>http://kitara.nl/2011/06/14/mantisbt-bug-tracker-application-error-401/</link>
		<comments>http://kitara.nl/2011/06/14/mantisbt-bug-tracker-application-error-401/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 12:49:08 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Mantis]]></category>
		<category><![CDATA[MantisBT]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=275</guid>
		<description><![CDATA[Due I think its hard to find a solution to this error on the web I point out the solution I followed and which worked perfectly. This error is shown when large files to fail uploading, since we upload those a lot its nice to be able to fix this issue. The solution is on [...]]]></description>
			<content:encoded><![CDATA[<p>Due I think its hard to find a solution to this error on the web I point out the solution I followed and which worked perfectly.</p>
<p>This error is shown when large files to fail uploading, since we upload those a lot its nice to be able to fix this issue.</p>
<p>The solution is on the following page: http://www.mantisbt.org/bugs/view.php?id=4850</p>
<p>As you can read there, you need to raise "max_allowed_packet" in my.cnf. On FreeBSD located at /etc/my.cnf<br />
I changed it to 8M, got memory enough <img src='http://kitara.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Good luck with bug tracking! <img src='http://kitara.nl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/06/14/mantisbt-bug-tracker-application-error-401/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E_STRICT crashes php if date.timezone is not set in php.ini</title>
		<link>http://kitara.nl/2011/06/09/e_strict-crashes-php-if-date-timezone-is-not-set-in-php-ini/</link>
		<comments>http://kitara.nl/2011/06/09/e_strict-crashes-php-if-date-timezone-is-not-set-in-php-ini/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 19:43:43 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Strict]]></category>
		<category><![CDATA[TimeZone]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=43</guid>
		<description><![CDATA[In case you use the following in your php.ini: error_reporting = E_ALL &#124; E_STRICT You might notice that if you do a phpinfo() that php crashes the apache child. Reason is a bug in php that causes an infinite loop. You can solve this by setting "date.timezone =" to your timezone. You can also set [...]]]></description>
			<content:encoded><![CDATA[<p>In case you use the following in your <em>php.ini</em>:</p>
<pre>
error_reporting = E_ALL | E_STRICT
</pre>
<p>You might notice that if you do a <em>phpinfo()</em> that php crashes the apache child.</p>
<p>Reason is a bug in php that causes an infinite loop.</p>
<p>You can solve this by setting "<em>date.timezone =</em>" to your timezone.</p>
<p>You can also set this in your script with ini_set() but I would go for the php.ini since thats a more permanent solution.</p>
<p>For a list of timezones check:<br />
<a href="http://nl.php.net/datetime">http://www.php.net/datetime</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/06/09/e_strict-crashes-php-if-date-timezone-is-not-set-in-php-ini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable error reporting in PHP</title>
		<link>http://kitara.nl/2011/06/09/how-to-enable-error-reporting-in-php/</link>
		<comments>http://kitara.nl/2011/06/09/how-to-enable-error-reporting-in-php/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 18:02:36 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Logging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Strict]]></category>

		<guid isPermaLink="false">http://kitara.nl/?p=32</guid>
		<description><![CDATA[When you are developing something new in PHP you might want to enable error reporting so you can see what is going wrong and that you are working by the strict guidelines of PHP. With this you can enable displaying errors in your browser and you can also save it to an error log if [...]]]></description>
			<content:encoded><![CDATA[<p>When you are developing something new in PHP you might want to enable error reporting so you can see what is going wrong and that you are working by the strict guidelines of PHP.</p>
<p>With this you can enable displaying errors in your browser and you can also save it to an error log if you want.</p>
<p>Note for PHP5.3 and above, E_ALL includes E_STRICT so you can leave out the "| E_STRICT" part.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_errors'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'display_startup_errors'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'error_reporting'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">E_ALL</span> <span style="color: #339933;">|</span> <span style="color: #009900; font-weight: bold;">E_STRICT</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;"># Optional
</span><span style="color: #990000;">ini_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'error_log'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'/data/www/marius/php_error.log'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>You can also use these in your php.ini if you want.</p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2011/06/09/how-to-enable-error-reporting-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix write access problem for Mac OS X 10.6.x to Samba share on FreeBSD or Linux</title>
		<link>http://kitara.nl/2010/04/08/fix-write-access-problem-for-mac-os-x-10-6-x-to-samba-share-on-freebsd-or-linux/</link>
		<comments>http://kitara.nl/2010/04/08/fix-write-access-problem-for-mac-os-x-10-6-x-to-samba-share-on-freebsd-or-linux/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 10:34:56 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[BSD / Linux / Unix]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1566</guid>
		<description><![CDATA[Nothing is more irritating than not being able to copy the files you want to a share. This problem has been bugging me since the release of Mac OS X 10.6. The fix seems to be quite simple, I added the following to my global block in smb.conf: [global] dos charset = UTF8 unix charset [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing is more irritating than not being able to copy the files you want to a share.</p>
<p>This problem has been bugging me since the release of Mac OS X 10.6.</p>
<p>The fix seems to be quite simple, I added the following to my global block in smb.conf:</p>

<div class="wp_syntax"><div class="code"><pre class="config" style="font-family:monospace;">[global]
dos charset = UTF8
unix charset = UTF8
display charset = UTF8
unix extensions = no</pre></div></div>

<p>Now we can work without errors again. <img src='http://kitara.nl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Ps. Don't forget to unmount and re-mount your share before the changes take effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://kitara.nl/2010/04/08/fix-write-access-problem-for-mac-os-x-10-6-x-to-samba-share-on-freebsd-or-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

