<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Freelancer Martin Zeller</title>
	
	<link>http://www.torres.at</link>
	<description>php asp.net java c# .net c++ xml xhtml seo magento zend framework dotnetnuke tomcat iis sql server mysql oracle typo3 coremedia</description>
	<lastBuildDate>Mon, 08 Mar 2010 09:49:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/FreelancerMartinZeller" /><feedburner:info uri="freelancermartinzeller" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>PHP – Delete files by pattern</title>
		<link>http://www.torres.at/php-delete-files-by-pattern/</link>
		<comments>http://www.torres.at/php-delete-files-by-pattern/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:49:16 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=124</guid>
		<description><![CDATA[If you want to delete files by pattern (e.g. &#8220;*.txt&#8221;) in a directory, you can do this with the php function glob!
$files = glob(&#8217;/path/to/files/*.txt&#8217;); // finds all txt files in the directory /path/to/files/
foreach($files as $file)
unlink($file);
With this method you can also delete all files of a directory &#8211; with pattern *.*

]]></description>
		<wfw:commentRss>http://www.torres.at/php-delete-files-by-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP – Delete all files in a directory</title>
		<link>http://www.torres.at/php-delete-all-files-in-a-directory/</link>
		<comments>http://www.torres.at/php-delete-all-files-in-a-directory/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 09:43:34 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=122</guid>
		<description><![CDATA[Simple question &#8211; simple answer:
How do I delete all files in a directory with PHP?
$files = glob(&#8217;/path/to/directory/*.*&#8217;);
foreach($files as $file)
unlink($file);
]]></description>
		<wfw:commentRss>http://www.torres.at/php-delete-all-files-in-a-directory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PDF: direct printing with .NET</title>
		<link>http://www.torres.at/pdf-printing-net/</link>
		<comments>http://www.torres.at/pdf-printing-net/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 21:04:35 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=101</guid>
		<description><![CDATA[&#62;&#62; Download Example project (VS 2005)
In this article I will show you the results of my search to find a way to print a pdf with .NET.
My task was to find a simple solution for an intranet web application where the user gets pdf reports (ActiveReports). Depending on configuration settings these pdf files should be [...]]]></description>
		<wfw:commentRss>http://www.torres.at/pdf-printing-net/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Client localisation with zend framework</title>
		<link>http://www.torres.at/zend-framework-client-localization/</link>
		<comments>http://www.torres.at/zend-framework-client-localization/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 09:38:34 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=96</guid>
		<description><![CDATA[If you want to find out the language or country of the clients browser, do it this way:
&#60;?php
require_once &#8216;Zend/Locale.php&#8217;;
$locale = new Zend_Locale();
echo $locale-&#62;toString();
?&#62;
But be aware! This way you only get the localisation of the clients browser. And this is configurable by the user.
The code above will give you output like this:
de_AT
or
en_US
There are many methods you [...]]]></description>
		<wfw:commentRss>http://www.torres.at/zend-framework-client-localization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passwort setzen für das Gastkonto unter Windows 7</title>
		<link>http://www.torres.at/passwort-gastkonto-windows-7/</link>
		<comments>http://www.torres.at/passwort-gastkonto-windows-7/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 07:34:41 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=86</guid>
		<description><![CDATA[Das Passwort für den Gast-Account unter Windows 7 zu setzen ist eigentlich gar nicht schwer, wenn man einmal weiß, wie&#8217;s geht  

“windows”-Taste + “r”
Eingabe von “control userpasswords2″
Im sich öffnenden Fenster findet man dann die notwendigen Möglichkeiten

Viel Erfolg
]]></description>
		<wfw:commentRss>http://www.torres.at/passwort-gastkonto-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting a password for the guest account in Windows 7</title>
		<link>http://www.torres.at/setting-password-guest-account-windows-7/</link>
		<comments>http://www.torres.at/setting-password-guest-account-windows-7/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 18:10:06 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=82</guid>
		<description><![CDATA[Do you want to set a password for the guest account in windows 7 (or vista)?
It&#8217;s quite simple&#8230; if you know it  

&#8220;windows&#8221;-key + &#8220;r&#8221;
Enter: &#8220;control userpasswords2&#8243;

]]></description>
		<wfw:commentRss>http://www.torres.at/setting-password-guest-account-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: import a dump</title>
		<link>http://www.torres.at/mysql-import-a-dump/</link>
		<comments>http://www.torres.at/mysql-import-a-dump/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:26:29 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=69</guid>
		<description><![CDATA[If you have got a sql-File and want to import it to your MySQL database then you can do this with a simple line in the shell:
mysql -u username -p password -h databaseservername  datebasename &#60; sqlfile.sql
Example:
Say there is a local MySQL database, with a database called &#8216;mybestsellers&#8217;, we have got a dump file &#8216;/home/users/jripper/bestsellerdump.sql&#8217; and [...]]]></description>
		<wfw:commentRss>http://www.torres.at/mysql-import-a-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: Warning in Mage/Eav/Model/Entity/Abstract.php ?</title>
		<link>http://www.torres.at/magento-warning-in-mageeavmodelentityabstract-php/</link>
		<comments>http://www.torres.at/magento-warning-in-mageeavmodelentityabstract-php/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 16:00:57 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=64</guid>
		<description><![CDATA[All you want to do is saving a product like this?
$api = new Mage_Catalog_Model_Product_Api();
$productData = array();
$productData['visibility'] = Mage_Catalog_Model_Product_Visibility::VISIBILITY_NOT_VISIBLE;
$productData['status'] = Mage_Catalog_Model_Product_Status::STATUS_DISABLED;
$api-&#62;update($product-&#62;getId(), $productData);
Or maybe without the API?
$product-&#62;setVisibility(Mage_Catalog_Model_Product_Visibility::VISIBILITY_NOT_VISIBLE);
$product-&#62;setStatus(Mage_Catalog_Model_Product_Status::STATUS_DISABLED);
$product-&#62;save();
And all you get is an error like this?
Warning: Invalid argument supplied for foreach() in /opt/lampp/htdocs/whlid/app/code/core/Mage/Eav/Model/Entity/Abstract.php on line 972
#0 /opt/lampp/htdocs/whlid/app/code/core/Mage/Eav/Model/Entity/Abstract.php(972): mageCoreErrorHandler(2, &#8216;Invalid argumen&#8230;&#8217;, &#8216;/opt/lampp/htdo&#8230;&#8217;, 972, Array)
#1 /opt/lampp/htdocs/whlid/app/code/core/Mage/Eav/Model/Entity/Abstract.php(927): Mage_Eav_Model_Entity_Abstract-&#62;_collectSaveData(Object(Mage_Catalog_Model_Product))
#2 /opt/lampp/htdocs/whlid/app/code/core/Mage/Core/Model/Abstract.php(251): Mage_Eav_Model_Entity_Abstract-&#62;save(Object(Mage_Catalog_Model_Product))
#3 /opt/lampp/htdocs/whlid/app/code/core/Mage/Catalog/Model/Product/Api.php(219): [...]]]></description>
		<wfw:commentRss>http://www.torres.at/magento-warning-in-mageeavmodelentityabstract-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2005 und Windows 7</title>
		<link>http://www.torres.at/visual-studio-2005-windows-7/</link>
		<comments>http://www.torres.at/visual-studio-2005-windows-7/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 14:16:39 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[windows 7]]></category>
		<category><![CDATA[visual studio 2005]]></category>
		<category><![CDATA[vs 2005]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=62</guid>
		<description><![CDATA[Da der Bildschirm meines alten Laptops mit XP (Vista habe ich an mir spurlos vorüberziehen lassen) langsam aber sicher einen bunten Vorhang aus bunten Streifen fallen läßt, habe ich  mich dazu entschlossen, mir rechtzeitig einen neuen zuzulegen. Gleich mit Windows 7, etwas Risiko muß sein.
Ich  muß sagen, die Portierung meiner Entwicklungsumgebungen für php und Java klappte ohne [...]]]></description>
		<wfw:commentRss>http://www.torres.at/visual-studio-2005-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Das C64 Textadventure ‘Das Geheimnis des Schloss Arendarvon’</title>
		<link>http://www.torres.at/arendarvon-c64-textadventure/</link>
		<comments>http://www.torres.at/arendarvon-c64-textadventure/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 18:03:49 +0000</pubDate>
		<dc:creator>Martin Zeller</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[arendarvon]]></category>
		<category><![CDATA[c64]]></category>

		<guid isPermaLink="false">http://www.torres.at/?p=45</guid>
		<description><![CDATA[Wie gestern bin ich auch heute beim weiteren Umbau dieser Homepage auf einen Schatz gestoßen: meine alte Fanpage zum Textadventure &#8216;Das Geheimnis des Schloss Arendarvon&#8217;.
Wenn ich an das Schloss Arendarvon denke, kommen nostalgische Erinnerungen in mir hoch. Ich denke, ich war um die zwölf, dreizehn Jahre alt, als ich meinen ersten Commodore 64 bekam. Zusammen [...]]]></description>
		<wfw:commentRss>http://www.torres.at/arendarvon-c64-textadventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.768 seconds -->
