<?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>Tomislav Šantek</title>
	<atom:link href="http://tomislavsantek.iz.hr/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomislavsantek.iz.hr</link>
	<description>PHP/MySQL web applications, Symfony and jQuery tips &#38; tricks...</description>
	<lastBuildDate>Mon, 30 Jan 2012 16:05:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Implementing observer on Magento module</title>
		<link>http://tomislavsantek.iz.hr/2011/12/implementing-observer-on-magento/</link>
		<comments>http://tomislavsantek.iz.hr/2011/12/implementing-observer-on-magento/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 09:37:01 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=252</guid>
		<description><![CDATA[This post describes the steps necessary for creating an Magento Observer First, if you&#8217;re creating a new module, be sure you have defined your module in app/etc/modules directory: &#60;?xml version=&#34;1.0&#34;?&#62; &#60;config&#62; &#60;modules&#62; &#60;Namespace_Modulename&#62; &#60;active&#62;true&#60;/active&#62; &#60;codePool&#62;local&#60;/codePool&#62; &#60;/Namespace_Modulename&#62; &#60;/modules&#62; &#60;/config&#62; To define a observer, you must enter it in your module&#8217;s config.xml file: &#60;!-- app/code/local/NameSpaceName/ModuleName/etc/config.xml --&#62; &#60;config&#62; [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/12/implementing-observer-on-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating virtual subdomain with htaccess</title>
		<link>http://tomislavsantek.iz.hr/2011/10/creating-virtual-subdomain-with-htaccess/</link>
		<comments>http://tomislavsantek.iz.hr/2011/10/creating-virtual-subdomain-with-htaccess/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 14:43:31 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[UNIX/Linux in general]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[virtual subdomain]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=232</guid>
		<description><![CDATA[In order to create a virtual subdomain in PHP, the following conditions must be fulfilled: - enabled Apache&#8217;s Mod_rewrite module - existing wildcard DNS record - properly configured .htaccess file At this point, it is assumed that you have successfully covered the first two prerequisites. In .htaccess file, use the following rules to set up [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/10/creating-virtual-subdomain-with-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the backend routing from frontend application in Symfony and vice versa</title>
		<link>http://tomislavsantek.iz.hr/2011/10/getting-the-backend-routing-from-frontend-application-in-symfony-and-vice-versa/</link>
		<comments>http://tomislavsantek.iz.hr/2011/10/getting-the-backend-routing-from-frontend-application-in-symfony-and-vice-versa/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 11:48:10 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[frontend]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=228</guid>
		<description><![CDATA[When using Symfony frontend application it is sometimes necessary to access other application&#8217;s routing to create an internal url that points to that application. In order for that to be posssible, a method for getting the desired application&#8217;s routing is required. In this example, I&#8217;m creating a getBackendRouting() method for getting the Backend application routing: [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/10/getting-the-backend-routing-from-frontend-application-in-symfony-and-vice-versa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Symfony form rendering by using form formatter</title>
		<link>http://tomislavsantek.iz.hr/2011/10/customizing-symfony-form-rendering-by-using-form-formatter/</link>
		<comments>http://tomislavsantek.iz.hr/2011/10/customizing-symfony-form-rendering-by-using-form-formatter/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 09:55:32 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=222</guid>
		<description><![CDATA[Although you can always customize Symfony&#8217;s form by using templates, it is not necesarily the most practical solution. You might want to customize the way Symfony renders the form somewhere where the HTML structure is being generated in the first place. That&#8217;s where the form formatter comes in. Form formatter is used by Symfony when [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/10/customizing-symfony-form-rendering-by-using-form-formatter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five reasons why I don&#8217;t like php templating engine</title>
		<link>http://tomislavsantek.iz.hr/2011/09/five-reasons-why-i-dont-like-php-templating-engine/</link>
		<comments>http://tomislavsantek.iz.hr/2011/09/five-reasons-why-i-dont-like-php-templating-engine/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 08:00:21 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[template engine]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=213</guid>
		<description><![CDATA[Recently, I&#8217;ve been asked (yet again) by my superiors to use a templating engine on my project. The main reason for this was so that end users can edit the application templates more easily. Therein lies the first reason: 1. End Users find web templates confusing no matter what template engine they use. In my [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/09/five-reasons-why-i-dont-like-php-templating-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating new relations by using jQuery Autocompleter widget in Symfony</title>
		<link>http://tomislavsantek.iz.hr/2011/09/creating-new-relations-by-using-jquery-autocompleter-widget-in-symfony/</link>
		<comments>http://tomislavsantek.iz.hr/2011/09/creating-new-relations-by-using-jquery-autocompleter-widget-in-symfony/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 13:18:29 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=209</guid>
		<description><![CDATA[This post describes how to create new relation by usin jQuery Autocompleter widget in Symfony project. Recently, I&#8217;ve had a situation where I had to create a form for entering a product details, with a dropdown or autocomplete input for selecting product&#8217;s brand. If a user entered a non-existing brand, it had to be automatically [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/09/creating-new-relations-by-using-jquery-autocompleter-widget-in-symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using sfFormExtra Captcha on a Symfony based project</title>
		<link>http://tomislavsantek.iz.hr/2011/05/using-vjcommentplugins-captcha-in-other-forms-on-a-symfony-based-project/</link>
		<comments>http://tomislavsantek.iz.hr/2011/05/using-vjcommentplugins-captcha-in-other-forms-on-a-symfony-based-project/#comments</comments>
		<pubDate>Tue, 31 May 2011 11:42:48 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=186</guid>
		<description><![CDATA[This post describes how to quickly implement a Captcha on a project that already uses sfFormExtra Plugin. Since sfFormExtra Plugin already has Captcha integrated, it is not necessary to install sfReCaptcha Plugin. If you have installed sfFormExtra Plugin, you already have Captcha input widget at your disposal, and you can use it in your forms. [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/05/using-vjcommentplugins-captcha-in-other-forms-on-a-symfony-based-project/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating SSL enabled website on Apache/Linux</title>
		<link>http://tomislavsantek.iz.hr/2011/05/creating-ssl-enabled-website-on-apachelinux/</link>
		<comments>http://tomislavsantek.iz.hr/2011/05/creating-ssl-enabled-website-on-apachelinux/#comments</comments>
		<pubDate>Thu, 12 May 2011 07:25:49 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[PHP, MySQL]]></category>
		<category><![CDATA[UNIX/Linux in general]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=96</guid>
		<description><![CDATA[This post describes how to quickly enable SSL on Apache and create SSL enabled website on Apache/Linux environment. In this post I assume that apache2 is properly installed on your linux server, and you&#8217;re running a Debian or Ubuntu distribution of Linux. A quick reminder: SSL enabled website is just another web service (more precisely, [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/05/creating-ssl-enabled-website-on-apachelinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding relations in Symfony</title>
		<link>http://tomislavsantek.iz.hr/2011/05/embedding-relations-in-symfony/</link>
		<comments>http://tomislavsantek.iz.hr/2011/05/embedding-relations-in-symfony/#comments</comments>
		<pubDate>Wed, 11 May 2011 08:03:48 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[embedded forms]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=87</guid>
		<description><![CDATA[This quick post describes a necessary step in embedding a relation in a Symfony 1.4 form. If you have followed Symfony&#8217;s official documentation and forums regarding embedding relations in a form, you may have already seen an example of product and productPhoto forms in a single form. Here&#8217;s the schema: Product: columns: name: { type: [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/05/embedding-relations-in-symfony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Autocomplete input field for Symfony based web form</title>
		<link>http://tomislavsantek.iz.hr/2011/04/creating-autocomplete-input-field-for-symfony-based-web-form/</link>
		<comments>http://tomislavsantek.iz.hr/2011/04/creating-autocomplete-input-field-for-symfony-based-web-form/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 16:53:29 +0000</pubDate>
		<dc:creator>tomislav</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[symfony]]></category>

		<guid isPermaLink="false">http://tomislavsantek.iz.hr/?p=79</guid>
		<description><![CDATA[This post describes steps required to create jQuery/AJAX input text field with autocomplete feature using Symfony php framework. It is assumed that you know how to create a web form, and install Symfony plugins, so that part won&#8217;t be explained here. A Symfony plugin sfFormExtraPlugin is required, and, of course, jQuery (I&#8217;m using sfJqueryReloadedPlugin). In [...]]]></description>
		<wfw:commentRss>http://tomislavsantek.iz.hr/2011/04/creating-autocomplete-input-field-for-symfony-based-web-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

