<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Ideaticus.com</title>
	<link>http://www.ideaticus.com</link>
	<description>ideas, experiences and stories about online business</description>
	<pubDate>Fri, 21 Nov 2008 04:38:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>Comment on Simple URL rewriting by Sorin</title>
		<link>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-209</link>
		<dc:creator>Sorin</dc:creator>
		<pubDate>Fri, 22 Aug 2008 12:33:12 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-209</guid>
		<description>well.. i got it to work.. finally :D
but I see that if I use this.. I cant use the  $_REQUEST any more.. only $_GET works now :P
but this is not a bad thing :P</description>
		<content:encoded><![CDATA[<p>well.. i got it to work.. finally <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
but I see that if I use this.. I cant use the  $_REQUEST any more.. only $_GET works now <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
but this is not a bad thing <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple URL rewriting by Sorin</title>
		<link>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-205</link>
		<dc:creator>Sorin</dc:creator>
		<pubDate>Tue, 12 Aug 2008 09:52:17 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-205</guid>
		<description>ohh.. i just saw that the php code part in my previous code was cut :D

but.. i still didn't manage to make it work..

copy/paste your code .. and in the index.php i put this:

if (file_exists('./include/'.$_GET['module'].'.php')){
			require './include/'.$_GET['module'].'.php';
		}
		else{
			require './include/main.php';
}

and it worked only for links like this ... main.html about.html.. etc..
but when i put link like this ...  opinion-act-add.html redirected me to the main file.. not even opinion.html.

Why my _get won't work :P</description>
		<content:encoded><![CDATA[<p>ohh.. i just saw that the php code part in my previous code was cut <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>but.. i still didn&#8217;t manage to make it work..</p>
<p>copy/paste your code .. and in the index.php i put this:</p>
<p>if (file_exists(&#8217;./include/&#8217;.$_GET[&#8217;module&#8217;].&#8217;.php&#8217;)){<br />
			require &#8216;./include/&#8217;.$_GET[&#8217;module&#8217;].&#8217;.php&#8217;;<br />
		}<br />
		else{<br />
			require &#8216;./include/main.php&#8217;;<br />
}</p>
<p>and it worked only for links like this &#8230; main.html about.html.. etc..<br />
but when i put link like this &#8230;  opinion-act-add.html redirected me to the main file.. not even opinion.html.</p>
<p>Why my _get won&#8217;t work <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple URL rewriting by Narcis Radu</title>
		<link>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-204</link>
		<dc:creator>Narcis Radu</dc:creator>
		<pubDate>Mon, 11 Aug 2008 20:16:14 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-204</guid>
		<description>This dispatcher was written to server everything through index.php. If you want a different folders structure you need to adapt it.
RewriteEngine On was already included but "Options All" is not required. Please read a little bit more about options.</description>
		<content:encoded><![CDATA[<p>This dispatcher was written to server everything through index.php. If you want a different folders structure you need to adapt it.<br />
RewriteEngine On was already included but &#8220;Options All&#8221; is not required. Please read a little bit more about options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing CSV files with PHP by Narcis Radu</title>
		<link>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-203</link>
		<dc:creator>Narcis Radu</dc:creator>
		<pubDate>Mon, 11 Aug 2008 20:04:38 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-203</guid>
		<description>Sometimes the best solution is the working one. I'll never say: "This is bad! Use this!". But always I'm searching for the best solution.
Alternatives are good!</description>
		<content:encoded><![CDATA[<p>Sometimes the best solution is the working one. I&#8217;ll never say: &#8220;This is bad! Use this!&#8221;. But always I&#8217;m searching for the best solution.<br />
Alternatives are good!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple URL rewriting by Sorin</title>
		<link>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-202</link>
		<dc:creator>Sorin</dc:creator>
		<pubDate>Mon, 11 Aug 2008 09:14:53 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/01/10/simple-url-rewriting/#comment-202</guid>
		<description>To get this to work I had to add at the beginning of the .htacces file: 
Options All
RewriteEngine On
...

and in the index.php



so it can load the modules from the "folder" folder :D

Maybe is different the including part for other types of projects but for the simple presentation sites this works well :D</description>
		<content:encoded><![CDATA[<p>To get this to work I had to add at the beginning of the .htacces file:<br />
Options All<br />
RewriteEngine On<br />
&#8230;</p>
<p>and in the index.php</p>
<p>so it can load the modules from the &#8220;folder&#8221; folder <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Maybe is different the including part for other types of projects but for the simple presentation sites this works well <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing CSV files with PHP by Sorin</title>
		<link>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-201</link>
		<dc:creator>Sorin</dc:creator>
		<pubDate>Mon, 11 Aug 2008 08:45:38 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-201</guid>
		<description>Point taken:P
I had a table of around 80000 records that generated a 12MB csv file but it was losing some columns of data and I had to save it to a xml file that was around 50MB.. but I got my data intact.
Well is a good last alternative :P</description>
		<content:encoded><![CDATA[<p>Point taken:P<br />
I had a table of around 80000 records that generated a 12MB csv file but it was losing some columns of data and I had to save it to a xml file that was around 50MB.. but I got my data intact.<br />
Well is a good last alternative <img src='http://www.ideaticus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing CSV files with PHP by Narcis Radu</title>
		<link>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-200</link>
		<dc:creator>Narcis Radu</dc:creator>
		<pubDate>Sun, 10 Aug 2008 11:08:20 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-200</guid>
		<description>One of the reasons that I don't want to use XML is the file size. Working with a large database (imagine 1Gb of data), CSV is the best option so far.</description>
		<content:encoded><![CDATA[<p>One of the reasons that I don&#8217;t want to use XML is the file size. Working with a large database (imagine 1Gb of data), CSV is the best option so far.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing CSV files with PHP by Sorin</title>
		<link>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-199</link>
		<dc:creator>Sorin</dc:creator>
		<pubDate>Fri, 08 Aug 2008 21:47:40 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/06/05/importing-csv-files-with-php/#comment-199</guid>
		<description>saved as xml works pretty well :D... never got an error.
generates larger files but is more.. user friendly</description>
		<content:encoded><![CDATA[<p>saved as xml works pretty well :D&#8230; never got an error.<br />
generates larger files but is more.. user friendly</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Human Computer Interaction - Episode I by cornel</title>
		<link>http://www.ideaticus.com/2008/02/01/human-computer-interaction-episode-i/#comment-177</link>
		<dc:creator>cornel</dc:creator>
		<pubDate>Tue, 06 May 2008 13:41:18 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/02/01/human-computer-interaction-episode-i/#comment-177</guid>
		<description>Very good tips, mainly the 1st one.
Tnx</description>
		<content:encoded><![CDATA[<p>Very good tips, mainly the 1st one.<br />
Tnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flixster powered by MySQL by capi</title>
		<link>http://www.ideaticus.com/2008/01/23/flixster-powered-by-mysql/#comment-126</link>
		<dc:creator>capi</dc:creator>
		<pubDate>Sun, 17 Feb 2008 00:00:45 +0000</pubDate>
		<guid>http://www.ideaticus.com/2008/01/23/flixster-powered-by-mysql/#comment-126</guid>
		<description>sorry, but you promised about:config tweaks on http://www.bloganything.net/957/speed-up-firefox-startup and i'm still waiting...</description>
		<content:encoded><![CDATA[<p>sorry, but you promised about:config tweaks on <a href="http://www.bloganything.net/957/speed-up-firefox-startup" rel="nofollow">http://www.bloganything.net/957/speed-up-firefox-startup</a> and i&#8217;m still waiting&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
