<?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>Aytemir.com &#187; fan-tas-tic</title>
	<atom:link href="http://aytemir.com/tag/fan-tas-tic/feed/" rel="self" type="application/rss+xml" />
	<link>http://aytemir.com</link>
	<description>Creative Daydreaming</description>
	<lastBuildDate>Wed, 09 Jun 2010 08:28:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AZIndex: sort groupheader URL</title>
		<link>http://aytemir.com/azindex-sort-groupheader-url/</link>
		<comments>http://aytemir.com/azindex-sort-groupheader-url/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:28:46 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1112</guid>
		<description><![CDATA[Like the TDO mini form plugin the AZIndex is an incredible powerful plugin&#8230;but also lacks a certain feature, which would make it just perfect: URL&#8217;s for the header, the subheaders are grouped by. AZIndex is just great, but the following mini-hack will make it simply perfect. By adding a simple yet necessary feature: generating an [...]]]></description>
			<content:encoded><![CDATA[<p>Like the <a href="http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/">TDO mini form plugin</a> the <a href="http://azindex.englishmike.net/">AZIndex</a> is an incredible powerful plugin&#8230;but also lacks a certain feature, which would make it just perfect: URL&#8217;s for the header, the subheaders are grouped by. </p>
<p><a href="http://aytemir.com/wp-content/uploads/2010/02/AZIndex-groupby-URL.jpg"><img src="http://aytemir.com/wp-content/uploads/2010/02/AZIndex-groupby-URL.jpg" alt="" title="AZIndex BEFORE and AFTER example" width="500" height="150" class="alignleft size-full wp-image-1113" /></a></p>
<p><span id="more-1112"></span></p>
<p>AZIndex is just great, but the following mini-hack will make it simply perfect. By adding a simple yet necessary feature: generating an URL for the groupheaders: see <a href="http://fan-tas-tic.com/artists/">http://fan-tas-tic.com/artists/</a> for a live demo and imagine you can&#8217;t click the author names for an example of the original plugin without this lill&#8217; hack. </p>
<p>The general assumption is that the plugin is abandoned by its original author, since there hasn&#8217;t been any reaction on the <a href="http://azindex.englishmike.net/azindex/feedback/">official AZIndex plugin feedback page</a> by the author. So I had to it myself. Again.</p>
<p>The following instructions makes sure a groupheader (tags, author or categy) has an accompanying link (when a subheader is selected).<br />
The most recent version (0.8.1) has been used for this hack, but you should be able to implement it also in older or newer versions following the next steps:<br />
0. Make your backups or try this on a local installation as always with hacks (although I&#8217;ve got a nasty habit myself of hacking directly on my live sites <img src='http://aytemir.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but do as I say, not as I do)<br />
1. Get the original plugin from <a href="http://wordpress.org/extend/plugins/azindex/">the WordPress plugin repository</a>.<br />
2a. Either unzip the plugin and <em>edit az-index-content.php</em><br />
2b. Or upload the unzipped plugin directly and open <em>az-index-content.php</em> via the plugin-editor<br />
3. Apply the following changes:<br />
a. Find around rownumber 172 the following statement:</p>
<pre class="brush: php">
$link = get_permalink($item[&#039;id&#039;]);
</pre>
<p>b. Add the next statements <strong>beneath</strong> this line:</p>
<pre class="brush: php">
//aytemir.com: start mini-hack
$groupheader=&#039;&#039;;
$groupheader=$index-&gt;head;
if ($groupheader==&#039;author&#039;) {
  $groupheader_id=get_userdatabylogin($item[&#039;head&#039;]);
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?author=&#039;.$groupheader_id-&gt;ID;
} elseif ($groupheader==&#039;cats&#039;) {
  $groupheader_id=get_cat_id($item[&#039;head&#039;]);
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?cat=&#039;.$groupheader_id;
} elseif ($groupheader==&#039;tags&#039;) {
  $groupheader_id=$item[&#039;head&#039;];
  $groupheader_url=get_bloginfo(&#039;url&#039;).&#039;/?tag=&#039;.$groupheader_id;
}
//aytemir.com: end mini-hack
</pre>
<p>c. The code is self-explanatory, I think: just get the header you want to sort/order by, retieve the accompanying ID and generate an URL and apply URL in case of tag, category or author.<br />
d. Find (around rownumber 203) the following statement:</p>
<pre class="brush: php">
$output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/span&gt;&#039;.$cr;
</pre>
<p>e. And <strong>replace</strong> it with the following statement:</p>
<pre class="brush: php">
//aytemir.com: start mini-hack
if ($groupheader==&#039;author&#039; || $groupheader==&#039;cats&#039; || $groupheader==&#039;tags&#039;) {
  $output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&lt;a href=&quot;&#039;.$groupheader_url.&#039;&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/a&gt;&lt;/span&gt;&#039;.$cr;
} else {
  $output .= &#039;&lt;li&#039;.$charlink.($odd ? &#039; class=&quot;azalt&quot;&#039; : &#039;&#039;).&#039;&gt;&lt;span class=&quot;head&quot;&gt;&#039;.$item[&#039;head&#039;].$cont.&#039;&lt;/span&gt;&#039;.$cr;
}
//aytemir.com: end mini-hack
</pre>
<p>5. Save and test it (locally) and let me know if it works for you.</p>
<p>Don’t want to bother &#8216;hacking&#8217; yourself? You could also download the fully zipped version with the hack already implemented:<br />
1. <a href="http://aytemir.com/wp-content/files/azindex.zip">Download this hacked version, which I doped 0.8.2</a><br />
2. Upload, activate and test the plugin.</p>
<p>For usage and configuration instructions please refer to the original plugin site. </p>
<p>If you should run into issues regarding this specific hack, please let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/azindex-sort-groupheader-url/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>FTT!:10 fan-tas-tic images of 2009!</title>
		<link>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/</link>
		<comments>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 18:14:58 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[best of]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[top list]]></category>
		<category><![CDATA[toplists]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1095</guid>
		<description><![CDATA[Simply a selection of 10 of the most fan-tas-tic images from fan-tas-tic.com. The site is still in alpha and there has been only a soft launch, but it working out quit well. Once in beta the site should be full of images which can only rated as as &#8216;FTT!&#8217;&#8230;fan-tas-tic! Eos Divine Protection Red Sonja Flight [...]]]></description>
			<content:encoded><![CDATA[<p>Simply a selection of 10 of the most fan-tas-tic images from <a href="http://fan-tas-tic.com">fan-tas-tic.com</a>. The site is <a href="http://aytemir.com/fan-tas-tic-user-generated-galleries/">still in <strong>alpha</strong></a> and there has been only a soft launch, but it working out quit well.<br />
Once in <strong>beta</strong> the site should be full of images which can only rated as as &#8216;FTT!&#8217;&#8230;fan-tas-tic!</p>
<h3>Eos Divine Protection<br />
<h3>
<a href="http://fan-tas-tic.com/eos-divine-protection/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Eos-Divine_Protection.jpg" alt="Eos Devine Protection" /></a></p>
<h3>Red Sonja<br />
<h3>
<a href="http://fan-tas-tic.com/red-sonja/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Red-Sonja.jpg" alt="Red Sonja" /></a></p>
<h3>Flight of the Dragon<br />
<h3>
<a href="http://fan-tas-tic.com/flight-dragon/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Flight-of-the-Dragon.jpg" alt="Flight of the Dragon" /></a></p>
<p><span id="more-1095"></span></p>
<h3>Angel and Demons<br />
<h3>
<a href="http://fan-tas-tic.com/angel-demons/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Angel-and-Demons.jpg" alt="Angel and Demons" /></a></p>
<h3>Dungeons &#038; Dragons: Legendary Boon<br />
<h3>
<a href="http://fan-tas-tic.com/legendary-boon-kerem-beyit/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Legendary-Boon-Kerem-Beyit.jpg" alt="Dungeons &#038; Dragons: Legendary Boon" /></a></p>
<h3>Budapest – Fantasy landscape<br />
<h3>
<a href="http://fan-tas-tic.com/budapest-fantasy-landscape-kornel-ravadits/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Budapest-Fantasy-landscape1.jpg" alt="Budapest – Fantasy landscape" /></a></p>
<h3>The God of Hellfire<br />
<h3>
<a href="http://fan-tas-tic.com/god-hellfire/"><img src="http://aytemir.com/wp-content/uploads/2009/12/God-of-Hellfire.jpg" alt="The God of Hellfire" /></a></p>
<h3>Fusion<br />
<h3>
<a href="http://fan-tas-tic.com/fusion-luis-royo/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Luis-Royo-Fusion.jpg" alt="Fusion by Luis Royo" /></a></p>
<h3>Purple Mage<br />
<h3>
<a href="http://fan-tas-tic.com/purple-mage/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Purple-Mage-Chan-Yoo-Seok.jpg" alt="Purple Mage" /></a></p>
<h3>Black God&#8217;s Kiss<br />
<h3>
<a href="http://fan-tas-tic.com/black-gods-kiss-arnistotle/"><img src="http://aytemir.com/wp-content/uploads/2009/12/Black_God__s_Kiss_by_arnistotle.jpg" alt="Black God's Kiss" /></a></p>
<p>Once you&#8217;re at <a href="http://fan-tas-tic.com">fan-tas-tic.com</a> don&#8217;t forget the rate the images you think it&#8217;s FTT!</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/ftt10-fan-tas-tic-images-of-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t believe the hype of Gridservice</title>
		<link>http://aytemir.com/dont-believe-the-hype-of-gridservice/</link>
		<comments>http://aytemir.com/dont-believe-the-hype-of-gridservice/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 21:21:18 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[mediatemple]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1074</guid>
		<description><![CDATA[The MediaTemple Grid-service &#8220;is a cluster-based, modern hosting service powered by hundreds of servers working in tandem to power your websites, applications and email with unrivaled power, burstability and reliability&#8221;. Sounds great, doesn&#8217;t it? Background story I&#8217;ve just recently moved to MediaTemple and at this moment my following sites are hosted with (mt): aytemir.com (that [...]]]></description>
			<content:encoded><![CDATA[<p>The MediaTemple Grid-service &#8220;is a cluster-based, modern hosting service powered by hundreds of servers working in tandem to power your websites, applications and email with unrivaled power, burstability and reliability&#8221;.<br />
Sounds great, doesn&#8217;t it? </p>
<p><img src="http://aytemir.com/wp-content/uploads/2009/11/mediatemple2.jpg" alt="The hype of Grid-Service" /></p>
<h3>Background story</h3>
<p>I&#8217;ve just recently moved to <a href="http://mediatemple.net/">MediaTemple</a> and at this moment my following sites are hosted with (mt): aytemir.com (that would be this blog), <a href="http://fan-tas-tic.com" title="User Generated Galleries!">fan-tas-tic.com</a> and <a href="http://voetbalportaal.com" title="Exclusive Turkish Dutch soccerforum">VoetbalPortaal.com</a>.<br />
All three sites have very humble amount of traffic to handle and are WordPress or vBulletin powered, with some standard popular plugins or mods.<br />
Nothing fancy. Nothing special.<br />
<span id="more-1074"></span><br />
Because VoetbalPortaal.com grow slowy too big for the shared host I was with, I had to move (all my sites) and I believed the hype and decided to move to the &#8216;state of the art&#8217; and &#8216;digg-proof&#8217; grid-service of MediaTemple. You never know when you&#8217;re gonna need a &#8216;digg-proof&#8217; host, I guess <img src='http://aytemir.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  . And boy did I regret that! And still do regret it!</p>
<p>I had no reason not the believe what they <a href="http://mediatemple.net/webhosting/gs/features/">claim on their site</a>: TechCrunch is hosted with them. And a sub-devision of Sony. Although on a more expensive plan. <a href="http://mediatemple.net/company/clients/#gs_testimonials">But also a lot of (big) blogs are also with the unrivaled Grid-Service of MediaTemple</a>.</p>
<h3>Here comes trouble</h3>
<p>Since I&#8217;ve moved to (mt) and settled everything all seemed fine, excepts the servers where slower than I was used to with the cheap host I used to be. Bad luck, I guess.<br />
But from day one I got &#8216;Lost connection to MySQL server during query&#8217;, &#8216;User *** already has more than &#8216;max_user_connections&#8217; active connections&#8217; and &#8216;Out of memory&#8217; errors via the vBulletin backend. My site had been down for several minutes several times: Although (mt) thought that this may have been caused by &#8216;bad neighbours&#8217;, I never had this kind of issues with other (normal) shared hosts!</p>
<h3>Here comes the $olution</h3>
<p>And different employees from (mt)-support all <strong>suggested me that I should buy an additional service to make up for the initial service, which should be correctly working in the first place:</strong> I should get a MySQL Gridcontainer to make sure I wouldn&#8217;t bother by other customers on the same cluster. </p>
<p>Although I thought that was ridiculous and I expected to have 99,9% uptime and database-connection and I shouldn&#8217;t have to buy an additional service for a simple and humble site&#8230;I had no choice, because (mt) had me &#8216;by the balls&#8217;: <strong>I had already lost 50% of my monthly unique visitors</strong> during the transition* to (mt) and I could not afford to loose more!</p>
<h3>More toruble? More $olution!</h3>
<p>So I decide to purchase an additional MySQL Gridcontainer. Now I don&#8217;t have the &#8216;Lost connection to MySQL server during query&#8217;, &#8216;User *** already has more than &#8216;max_user_connections&#8217; active connections&#8217; warnings anymore.<br />
But I do have &#8216;Out of memory&#8217; warnings and even more frequently than before. And guess what (mt) is suggesting as a possible solution? Yes, you&#8217;re right!<br />
<strong>They suggest I should buy an additional service to make up for the initial service, which should be correctly working in the first place:</strong> I should upgrade the memory of my Gridcontainer!</p>
<p>The irony of al this situation is that I had no issues with any of my humble sites at all when I was at the &#8216;el cheapo&#8217; host for only 30,- euro&#8217;s a year!<br />
Now I&#8217;m having frequently database-connection error, out of memory errors and I&#8217;m not the only one as far as I can tell from the Support Forums. And (most) of us have only simple websites.</p>
<h3>The conclusion</h3>
<p>Long story short: <strong>don&#8217;t believe the hype of the Grid-Service</strong> (maybe this goes only for MediaTemple) and the &#8216;digg-proof&#8217; claims they make; at the moment it&#8217;s very <strong>in-stable</strong> and it has <strong>problems handling a very average sites</strong> like aytemir.com, <a href="http://fan-tas-tic.com" title="User Generated Galleries!">fan-tas-tic.com</a> and <a href="http://voetbalportaal.com" title="Exclusive Turkish Dutch soccerforum">VoetbalPortaal.com</a>.<br />
And when there are no errors, <strong>the sites are very slow</strong> compared to what I&#8217;m used to&#8230;before I&#8217;ve moved them to MediaTemple.</p>
<p>So just make sure you do more research than I did before moving to another host&#8230;or you may end up paying and upgrading to most advanced servers and services, just to host a humble WordPress blog or a vBulletin powered forum!</p>
<h3>Disclaimers</h3>
<p>PS: the (mt) support is just advising and suggesting and they&#8217;re not really &#8216;forcing&#8217; me buy additional service to make up for their initial service, which does not deliver what they promise.</p>
<p>PS: there are <a href="http://mediatemple.net/company/clients/#gs_testimonials">testimonials of (mt) Gris-Service users which are just happy</a> and claim their service does just what it should!</p>
<p>*This is not <em>all</em> (mt)&#8217;s fault, because I had to switched from .nl to .com for personal reasons, but constant db-connection errors made things worse.</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/dont-believe-the-hype-of-gridservice/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fan-tas-tic! User Generated Galleries</title>
		<link>http://aytemir.com/fan-tas-tic-user-generated-galleries/</link>
		<comments>http://aytemir.com/fan-tas-tic-user-generated-galleries/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 20:23:33 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=1043</guid>
		<description><![CDATA[It took me longer than foreseen, but after a couple of different approaches there is a final alpha version of my fan-tas-tic project. Although still in a alpha stage, I think a soft launch with this post is a logical move prior to a beta version: behold FAN-TAS-TIC! User Generated Galleries. WTF is FTT! FTT! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_2.png" alt="ftt_2" title="ftt_2" width="150" height="387" class="alignleft size-full wp-image-1059" /></a> <a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_1.png" alt="ftt_1" title="ftt_1" width="150" height="214" class="alignleft size-full wp-image-1058" /></a> <a href="http://fan-tas-tic.com"><img src="http://aytemir.com/wp-content/uploads/2009/11/ftt_3.png" alt="ftt_3" title="ftt_3" width="150" height="391" class="alignleft size-full wp-image-1060" /></a></p>
<p>It took me longer than foreseen, but after a couple of different approaches there is a final <em>alpha</em> version of my fan-tas-tic project. Although still in a alpha stage, I think a <em>soft launch</em> with this post is a logical move prior to a beta version: behold <a href="http://fan-tas-tic.com">FAN-TAS-TIC! User Generated Galleries</a>.</p>
<p><strong>WTF is FTT!</strong><br />
FTT! is actually designed and developed as a pure <em>personal</em> project: a fantastic image gallery, with &#8216;fantastic&#8217; covering the genres science-fiction, (heroic) fantasy/sword &#038; sorcery, gothic, horror, anime <em>and</em> the quality of the art self displayed at the gallery.</p>
<p><strong>So…yet another gallery?</strong><br />
Supervisually yes…it’s nothing more than just another gallery.</p>
<p>However some of the features what should make FTT! really unique compared to other galleries are:<span id="more-1043"></span><br />
<strong>Banner blindness prove</strong>:</p>
<ul>
<li> All sponsor/ad banners are blended in the design, so the users are ‘bothered’ as little as possible</li>
<li> The banner spots are randomly generated to minimize the &#8216;blindness&#8217; effect</li>
<li> Also the single post banner is very visible, yet blended</li>
</ul>
<p><strong>Quality of the content</strong>:</p>
<ul>
<li> Advanced user submission form (to be moderated by admin for ‘quality control’)</li>
<li> Only fan-tas-tic images are approved; no doodles here!</li>
<li> All images are categorized, tagged and archived and are available via the statistics</li>
<li> All uploads have (if available) a link to the original author and gallery and/or the source of the image</li>
</ul>
<p><strong>User friendly UI</strong>:</p>
<ul>
<li> Any image can be rated (and is automatically ranked)</li>
<li> Also the less rated and low rated images are highlighted (randomly or via related posts)</li>
<li> Different kind of archives are present: monthly, yearly, per category or per uploader/submitter</li>
<li> Most and least rated post  are relative to the current tag, category of the single post</li>
<li> Simple navigation (sub)menu’s showing all submenu</li>
<li> Statistics: Overview of the last rated images and the highest, lowest, most and least rated images</li>
</ul>
<p>I&#8217;ve also left some additional features out, which were time consuming to implement…maybe they’ll make it in the next version</p>
<p><strong>Still to do…</strong><br />
Although I need to work some details out and have to do a lot of code cleaning and optimization and the GUI is somewhat Spartan, the site is live and is ready to be (alpha-)tested.</p>
<p><strong>Feedback?</strong><br />
Any constructive feedback for this alpha-version is welcome in the comments below…<a href="http://fan-tas-tic.com"></p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/fan-tas-tic-user-generated-galleries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TDO Mini Forms: upload path/URL mini hack</title>
		<link>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/</link>
		<comments>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:26:34 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=965</guid>
		<description><![CDATA[The TDO Mini Forms WordPress Plugin is simply one of these plugins you&#8217;ll end up using, when you&#8217;ll be using WordPress for more than &#8216;just another blog&#8217;. For my upcoming project I was looking for a fully customizable end user form and after having tried a bunch, TDO mini forms was simply the best. I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/05/hack2.jpg" alt="" /></p>
<p>The <a href="http://thedeadone.net/download/tdo-mini-forms-wordpress-plugin/">TDO Mini Forms WordPress Plugin</a> is simply one of these plugins you&#8217;ll end up using, when you&#8217;ll be using WordPress for more than &#8216;just another blog&#8217;.</p>
<p>For my upcoming project I was looking for a fully customizable end user form and after having tried a bunch, TDO mini forms was simply the best.<br />
I still don&#8217;t understand why it is called &#8216;mini&#8217; because it has a ton of options and almost all of them very useful.<br />
<span id="more-965"></span><br />
The only issue I got with it was with the file/image upload widget: It was putting the uploaded files in  <strong>wp-content/uploads/subfolder</strong> where I wanted them in <strong>wp-content/uploads/year/month</strong>.</p>
<p>Although there are usefull hints in <a href="http://thedeadone.net/forum/?cat=8">the support forum</a>, they wont get you there exactly. So here is the hack to solve this issue:<br />
In the plugins folder replace line 552 (up until the line &#8220;// store info about files on post&#8221;) in file <strong>tdomf-upload-functions.php</strong> from this</p>
<pre class="brush: php">
$postdir = $options[&#039;path&#039;].DIRECTORY_SEPARATOR.$post_ID;
</pre>
<p>to this</p>
<pre class="brush: php">
$yearID=date(&quot;Y&quot;);
$monthID=date(&quot;m&quot;);

$postdir = $options[&#039;path&#039;].$yearID.DIRECTORY_SEPARATOR.$monthID;
$postdir2 = $options[&#039;url&#039;].$yearID.&quot;/&quot;.$monthID;

tdomf_recursive_mkdir($postdir,TDOMF_UPLOAD_PERMS);
tdomf_recursive_mkdir($postdir2,TDOMF_UPLOAD_PERMS);
$newpath = $postdir.DIRECTORY_SEPARATOR.$theirfiles[$i][&#039;name&#039;];
$newpath2 = $postdir2.DIRECTORY_SEPARATOR.$theirfiles[$i][&#039;name&#039;];

if(rename($theirfiles[$i][&#039;path&#039;], $newpath)) {

        $newpath = realpath($newpath);
        $newpath2 = realpath($newpath2);
</pre>
<p>Note that a variable 2 is added, just after the original.<br />
Also note, that I&#8217;ve replaced the variable DIRECTORY_SEPARATOR in $postdir2 into &#8220;/&#8221;, cause it was giving me headaches.</p>
<p>In line 564 in the same file add just beneath this line</p>
<pre class="brush: php">
add_post_meta($post_ID,TDOMF_KEY_DOWNLOAD_PATH.$i, $wpdb-&gt;escape($newpath),true);
</pre>
<p>the following</p>
<pre class="brush: php">
add_post_meta($post_ID,ftt_path,$postdir2,true);
</pre>
<p>Make sure you do use $postdir2 here again. Will be using <strong>ftt_path</strong> to retrieve the stored URL, so remember what name you give it here.</p>
<p>And now we&#8217;ll be calling the uploaded files via the URL like this</p>
<pre class="brush: php">
get_post_meta($post-&gt;ID, &quot;ftt_path&quot;,true);
</pre>
<p>instead of this, which will give you only the absolute path</p>
<pre class="brush: php">
get_post_meta($post-&gt;ID, &quot;_tdomf_download_name_0&quot;,true);
</pre>
<p>This way it&#8217;s not even necessary to check &#8216;Organize my uploads into month- and year-based folders&#8217; at your Miscellaneous Settings.</p>
<p>Hope this helps others out also. If you have any other issues with TDO Mini forms, please refer to the <a href="http://thedeadone.net/forum/?cat=8">original support form</a>.</p>
<h3>UPGRADE warnings</h3>
<p>Remember that automatically upgrading the plugin to the newest version will overwrite the hacks above&#8230;so make sure to actually backup before you upgrade!</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/tdo-mini-forms-upload-pathurl-mini-hack/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Fan-tas-tic progress and issues</title>
		<link>http://aytemir.com/fan-tas-tic-progress-and-issues/</link>
		<comments>http://aytemir.com/fan-tas-tic-progress-and-issues/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:26:13 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=918</guid>
		<description><![CDATA[Although the fan-tas-tic project is making good progress, I’m running to some issues which slows down the overall progress: This post is a short status update. Issue 1: Internet Explorer still sucks. Even version 7. And I have no high expectations for IE8, no matter how many tests it’ll pass. I had to tweak a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/02/progress2.jpg" alt="" /></p>
<p>Although the fan-tas-tic project is making good progress, I’m running to some issues which slows down the overall progress: This post is a short status update.</p>
<h3>Issue 1: Internet Explorer still sucks.</h3>
<p>Even version 7. And I have no high expectations for IE8, no matter how many tests it’ll pass.<br />
I had to tweak a lot of CSS code just to make sure IE7 doesn’t screw up my layout, although it was fine enough in FF and Chrome.<br />
<span id="more-919"></span><br />
A relief is that a bigger part (65%) of my visitors do use FF. An explanation for this is that the audience mostly consist of bloggers, designers and developers. They already know IE sucks.<br />
However on my soccerforum IE is used by 53% of the visitors. This just confirms the theory about the audience of the sites. And because I’m expecting a mixed audience for Fan-tas-tic!, I dare not to neglect IE fully.</p>
<h3>Issue 2: Local vs online</h3>
<p>The ‘look and feel’ of my localhost <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is not 100% the same with the Apache server of my host. So I have to now and then test it online.<br />
Just recently I’ve found this lill’ usefull plugin: <a href="http://www.prelovac.com/vladimir/wordpress-plugins/theme-test-drive">Theme Test Drive</a>. Activating this plugin it will give you, logged in as a admin, the ability to activate another theme and see what the site actually will look like.<br />
In the mean time the regular visitors will see the clever ‘under construction’ theme <a href="http://themeshaper.com/wordpress-domain-parking-theme/">Launchpad</a>.</p>
<h3>Issue 3: Intense Debate is still giving me headaches</h3>
<p>I just might have to dish it in the end after all. I&#8217;ve complained <a href="http://aytemir.com/replacing-your-comments-with-intense-debate/">here</a> why I chose for Intense Debate. The problem is that when ID is enabled it takes too long to count the number of comments: it has to retrieve data from the ID-server for every post.</p>
<p>Gotta go&#8230;and make some more fan-tas-tic progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/fan-tas-tic-progress-and-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A fan-tas-tic start of 2009!</title>
		<link>http://aytemir.com/a-fan-tas-tic-start-of-2009/</link>
		<comments>http://aytemir.com/a-fan-tas-tic-start-of-2009/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 19:50:28 +0000</pubDate>
		<dc:creator>Fan-tas-tic</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=880</guid>
		<description><![CDATA[As stated in my post Setting goals for 2009 I’ll try to post only about the projects I’m working on…from now on. And I have to admit it’s hard not to blog, rant or rave about anything else. Because there is actually a lot to blog, rant and rave about. For example this blog now [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2009/01/2009-293x150.jpg" alt="A fan-tas-tic start of 2009!" title="photo credit: http://designwithathought.com/?p=339"  class="alignleft"></p>
<p>As stated in my post <a href="http://aytemir.com/setting-goals-for-2009">Setting goals for 2009</a> I’ll try to post only about the projects I’m working on…from now on. And I have to admit it’s hard not to blog, rant or rave about anything else.<br />
Because there is actually a lot to blog, rant and rave about. For example this blog now has reached a Pagerank of 2 in 3 months, but so did my sleeping site Uppedd.com, which never had any content at all…and this is a big mystery to me.<br />
<span id="more-880"></span><br />
The first post of 2009 year is a &#8216;fan-tas-tic&#8217; one. Well, actually it&#8217;s about one of my projects called ‘Fan-tas-tic’ and a although the name may suggest otherwise it’s actually a quite humble project: a ‘fan-tas-tic gallery’ powered by WordPress.</p>
<p>Yes, I am aware that there are already hundreds of (CSS) galleries (like these lists of examples: <a href="http://www.smashingmagazine.com/2006/12/21/creme-de-la-creme-of-css-list-of-css-galleries/">36</a> + <a href="http://www.nuff-respec.com/technology/css-gallery-roundup">74</a> + <a href="http://www.edwinsdesignlab.be/blog/webdesign-galleries/">115</a>) and <a href="http://www.cssleak.com/news/7-WordPress-Themes-To-Create-Your-Own-CSS-Gallery.html">a lot of free WordPress themes to make your own</a>. However they all lack some essential features for the visitors and for the administrator.<br />
I’ll come back to these features in another post, when I’ve got the full feature list of my own gallery complete.</p>
<p>In the mean time you should also check out some of the galleries above for inspiration and figure out which features you think they lack and leave a comment. If I can, I might just implement it in my &#8216;Fan-tas-tic Gallery&#8217; theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/a-fan-tas-tic-start-of-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting goals for 2009</title>
		<link>http://aytemir.com/setting-goals-for-2009/</link>
		<comments>http://aytemir.com/setting-goals-for-2009/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 14:08:52 +0000</pubDate>
		<dc:creator>Tschai</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[fan-tas-tic]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[uppedd]]></category>

		<guid isPermaLink="false">http://aytemir.com/?p=841</guid>
		<description><![CDATA[Looking back at 2008 Playtime is over! I&#8217;ve used the past period to experiment with some forms of promoting my posts and trying to get more traffic. Although the results were satisfying as you can see in the graph above, it felt more like &#8216;work&#8217; than &#8216;hobby&#8217; for me. Because doing this is rather time [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aytemir.com/wp-content/uploads/2008/12/2009%20stats.png" alt="What goes up, must come down" /></p>
<h3>Looking back at 2008</h3>
<p>Playtime is over! I&#8217;ve used the past period to experiment with some forms of promoting my posts and trying to get more traffic. Although the results were satisfying as you can see in the graph above, it felt more like &#8216;work&#8217; than &#8216;hobby&#8217; for me. Because doing this is rather time and energy consuming. And that is not a good thing&#8230;if you&#8217;re not making money from it, that is!<br />
The above graph illustrates the short period from October until end December for this blog. And it&#8217;s no surprise that it&#8217;s possible to get a peak of visitors and views, no matter how humble your blog or post is. But to keep this visitors coming back you need to invest a lot in time and energy&#8230;but I&#8217;m gonna focus on other things instead.</p>
<h3>Setting goals for 2009</h3>
<p>While reading <a href="http://www.dailyblogtips.com/my-internet-goals-for-2009/">My Internet Goals for 2009</a> I found out writing your goals down works very therapeutic and very refreshing. Although very personal it can be interesting and inspiring for others too.<br />
<span id="more-841"></span><br />
Now that the new year is getting closer it&#8217;s time for me to get my goals clear and focus on them. Maybe you should write down your own goals too?</p>
<h4>Aytemir.com: Design, Develop&#8230;Blog!</h4>
<p>The main goal for this blog has always been a supporting blog for the projects I&#8217;m running or planning. I&#8217;ve used the past months to experiment with some social media and I&#8217;ve learned a lot, which I hope to use in return when I&#8217;m ready to promote these projects once their ready.<br />
I will keep the current categories and write about the progress of the projects listed below. I&#8217;m prepared for a lack of visitor peaks, but the content should be useful (for me) when starting a another/new project.<br />
At a certain moment I think I might have to say goodbye to the Unstandard theme&#8230;</p>
<h4>Uppedd: Ranking and Rating the Stars!</h4>
<p>This will be my &#8216;Pièce de résistance&#8217;. Like the rest of the projects I&#8217;m going for the easy route and use already existing tools and plugins and try to go (private) beta in 2009!<br />
Although the concept is rather basic, it still is a rather ambitious project and it&#8217;s potentials are very promising.<br />
Expect to read more about this projects in the coming posts.</p>
<h4>Fan-Tas-Tic! Science-Fiction &#038; Fantasy Art Gallery</h4>
<p>I was always meaning to do something with my favouriet genre: SF&#038;F. While writing <a href="http://aytemir.com/best-of-2008-for-developers-2008-tips-tricks-scripts-and-sources/">Best of 2008 for developers: 2008+ tips, tricks, scripts and sources!</a> I came across a bunch of WordPress powered CSS galleries and got this fan-tas-tic idea: Why not do the same for fan-tas-tic SF&#038;F art!</p>
<p><a href="http://www.fan-tas-tic.com">Fan-tas-tic.com</a> was luckily not taken and from now on will it be not only my own personal favourite gallery, but visitors can also submit other SF&#038;F art and vote on the submissions.<br />
I&#8217;m aware there are already other great resources for SF&#038;F art, but they mostly miss some of the basic features of these Web 2.0 galleries, like tags, rating and ranking or they also contain less fantastic work.</p>
<h4>BAOA: Blogging About Oracle Applications</h4>
<p>This <a href="http://www.BloggingAboutOracleApplications.org">niche technical blog</a> is actually for my company and I it&#8217;s about time it got pimped. It needs an upgrade, new look and feel and a lot of more useful plugins.<br />
The content is absolute king and therefore it needs more audience, yet only from the same technical niche, which is a great challenge.</p>
<h4>VoetbalPortaal: Exclusive Soccer Forum</h4>
<p>I&#8217;m considering this <a href="http://www.VoetbalPortaal.nl">soccer forum</a> project actually as finished, since there is not much more I&#8217;m gonna change about it.</p>
<h3>Summary</h3>
<p>Note that I&#8217;ve not set any goals regarding monetizing any of the new projects. And initially the design will be of based on a existing theme in most cases.<br />
The focus will be on getting things finished instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://aytemir.com/setting-goals-for-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
