<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Cedik's blog</title>
	<link>http://cedik.com</link>
	<description>Php, SEO, webdesign and such...</description>
	<pubDate>Thu, 12 Jun 2008 14:19:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Blog review: Roshan&#8217;s blog</title>
		<link>http://cedik.com/2008/06/12/blog-review-roshans-blog/</link>
		<comments>http://cedik.com/2008/06/12/blog-review-roshans-blog/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 14:17:14 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Blog review]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/06/12/blog-review-roshans-blog/</guid>
		<description><![CDATA[Today, I&#8217;m going to tell about a blog that I happen to read, Roshan&#8217;s blog.
Ace color mood for the blog. I like the way how posts are assorted by date,  month and year. I enjoy the quick quotations available in the blog. I cannot  help but stare why such ideas were not discussed [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I&#8217;m going to tell about a blog that I happen to read, <a href="http://roshanbh.com.np/" title="roshan's blog">Roshan&#8217;s blog</a>.</p>
<p>Ace color mood for the blog. I like the way how posts are assorted by date,  month and year. I enjoy the quick quotations available in the blog. I cannot  help but stare why such ideas were not discussed already. I could not stop but  admit with every line the writer has penned. The site appeals you to read again.  Interesting clickable links can be discovered within each post. The blog&#8217;s  writer holds on the quality in each post. I enjoy the background colors, anyone  can read everything without doubt. I love the logo of the site. The posts titles  makes you want to see more. I enjoy the real life demonstrations and  illustrations blog frequently appeals to. <a href="http://cedik.com/2008/06/12/blog-review-roshans-blog/#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/06/12/blog-review-roshans-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make a php feedback form</title>
		<link>http://cedik.com/2008/06/07/how-to-make-a-php-feedback-form/</link>
		<comments>http://cedik.com/2008/06/07/how-to-make-a-php-feedback-form/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 19:42:54 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php tricks]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/06/07/how-to-make-a-php-feedback-form/</guid>
		<description><![CDATA[I recently started coding a site, based on theme made in Photoshop for one of my friends and I also had to make my own feedback form for that site, where the visitors could leave their opinion about the site. This feedback page also has the possibility to limit the number of characters that can [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started coding a site, based on theme made in Photoshop for one of my <a href="http://agx-themes.net" title="agx-themes">friends</a> and I also had to make my own feedback form for that site, where the visitors could leave their opinion about the site. This feedback page also has the possibility to limit the number of characters that can be posted, and it also display how much of those characters you have used, thanks to a javascript code taken from <a href="http://dynamicdrive.com" title="dynamic drive">DynamicDrive</a>. In order to use this feedback form, you&#8217;ll also need a MySql database and access to it.  First of all, insert this code in the head of your document (it&#8217;s used for the part that limits the number of characters in the comment) <a href="http://cedik.com/2008/06/07/how-to-make-a-php-feedback-form/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/06/07/how-to-make-a-php-feedback-form/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 important steps to keep in mind when making a php site</title>
		<link>http://cedik.com/2008/06/04/5-important-steps-to-keep-in-mind-when-making-a-php-site/</link>
		<comments>http://cedik.com/2008/06/04/5-important-steps-to-keep-in-mind-when-making-a-php-site/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 16:28:30 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php tricks]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[site]]></category>

		<category><![CDATA[steps in making a php site]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/06/04/5-important-steps-to-keep-in-mind-when-making-a-php-site/</guid>
		<description><![CDATA[First of all, I&#8217;d like to mention that this is not a post for an absolute beginner. This is more of a post for those who work with php and know their way around but who simply don&#8217;t know certain things about how you should make a php page. So, without further adu, the 5 [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, I&#8217;d like to mention that this is not a post for an absolute beginner. This is more of a post for those who work with php and know their way around but who simply don&#8217;t know certain things about how you should make a php page. So, without further adu, the<em> 5 important steps you should keep in mind when making a php site</em> are:</p>
<p>1. Put all the essential data inside a <strong>config.php</strong> file. This way, you won&#8217;t have to rewrite  the passwords and all the <strong>global variables inside each php file</strong>. And by global variables I mean those variables keep their value all over the site. If $var1 has the same value in index.php and gallery.php, why declair it twice?</p>
<p>What are the advantages of this?  <a href="http://cedik.com/2008/06/04/5-important-steps-to-keep-in-mind-when-making-a-php-site/#more-13" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/06/04/5-important-steps-to-keep-in-mind-when-making-a-php-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make a browser reload an image from the server</title>
		<link>http://cedik.com/2008/06/01/how-to-make-a-browser-reload-an-image-from-the-server/</link>
		<comments>http://cedik.com/2008/06/01/how-to-make-a-browser-reload-an-image-from-the-server/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 20:05:22 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php tricks]]></category>

		<category><![CDATA[no-cache]]></category>

		<category><![CDATA[no-store]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/06/01/how-to-make-a-browser-reload-an-image-from-the-server/</guid>
		<description><![CDATA[No-cache and no-store tags not working? It happened to me too. I tried all the tricks: the pragma meta tags, the cache-control meta tags, I even made the page have an expiration date from the past. Useless! All of these tactics were useless agains Internet Explorer and Opera. They only worked on Firefox and Safari.
You [...]]]></description>
			<content:encoded><![CDATA[<p>No-cache and no-store tags not working? It happened to me too. I tried all the tricks: the pragma meta tags, the cache-control meta tags, I even made the page have an expiration date from the past. Useless! All of these tactics were useless agains Internet Explorer and Opera. They only worked on Firefox and Safari.</p>
<p>You see, I made this script that updated an image every time someone went to the next page. The image was modified by the php command before the &lt; img src &gt; tag was output but still&#8230; no matter what I did, IE and Opera used to run that image from their cache, so the user had to reload the page in order to see the newly generated image.  But I managed to get things going. <a href="http://cedik.com/2008/06/01/how-to-make-a-browser-reload-an-image-from-the-server/#more-12" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/06/01/how-to-make-a-browser-reload-an-image-from-the-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to repair tables with a php file</title>
		<link>http://cedik.com/2008/05/30/how-to-repair-tables-with-a-php-file/</link>
		<comments>http://cedik.com/2008/05/30/how-to-repair-tables-with-a-php-file/#comments</comments>
		<pubDate>Fri, 30 May 2008 21:17:57 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php tricks]]></category>

		<category><![CDATA[how to repair a crashed table]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[repair table]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/05/30/how-to-repair-tables-with-a-php-file/</guid>
		<description><![CDATA[I just run recently on a problem that was affecting a forum that I administer. One of the forum&#8217;s table was marked as crashed and therefor the whole site wasn&#8217;t working. Since I&#8217;m not the root admin, I do not have complete access at the site&#8217;s resources. If I&#8217;d had mysql access, this could have [...]]]></description>
			<content:encoded><![CDATA[<p>I just run recently on a problem that was affecting a forum that I administer. One of the forum&#8217;s table was marked as crashed and therefor the whole site wasn&#8217;t working. Since I&#8217;m not the root admin, I do not have complete access at the site&#8217;s resources. If I&#8217;d had mysql access, this could have been fixed easily. But I didn&#8217;t have. And I couldn&#8217;t wait for the root admin to come on-line, I had to do something. Fortunately, I did had ftp access so I made a php file that could fix that table for me. Here is the code: <a href="http://cedik.com/2008/05/30/how-to-repair-tables-with-a-php-file/#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/05/30/how-to-repair-tables-with-a-php-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Php-fusion pet shop infusion</title>
		<link>http://cedik.com/2008/05/12/php-fusion-pet-shop-infusion/</link>
		<comments>http://cedik.com/2008/05/12/php-fusion-pet-shop-infusion/#comments</comments>
		<pubDate>Mon, 12 May 2008 08:10:56 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php-fusion CMS]]></category>

		<category><![CDATA[infusion]]></category>

		<category><![CDATA[mod]]></category>

		<category><![CDATA[pet shop]]></category>

		<category><![CDATA[pet shop infusion]]></category>

		<category><![CDATA[petshop]]></category>

		<category><![CDATA[petstore]]></category>

		<category><![CDATA[php-fusion]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/05/12/php-fusion-pet-shop-infusion/</guid>
		<description><![CDATA[It&#8217;s also official. Me and my friend Falcon have started working on a php-fusion pet shop infusion. I know, some might think that I start a lot of things (like the Anime CMS) and I don&#8217;t finish any of them, but the php-fusion shop already exists. I mean, I made a php-fusion shop for one [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s also official. Me and my friend <a href="http://agx-themes.com" title="agx-themes">Falcon</a> have started working on a php-fusion pet shop infusion. I know, some might think that I start a lot of things (like the Anime CMS) and I don&#8217;t finish any of them, but the php-fusion shop already exists. I mean, I made a php-fusion shop for one of my sites and you can see it <a href="http://bleach.animezup.com/petshop.php" title="php-fusion pet shop">here</a>, but it&#8217;s only a rough version, manually coded into the fusion source files and with the database tables also manually created. Oh yeah, and the style is not the one from the themes so used with another theme on another site it will look really bad. <a href="http://cedik.com/2008/05/12/php-fusion-pet-shop-infusion/#more-10" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/05/12/php-fusion-pet-shop-infusion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SMF anti-spam bots registration mod</title>
		<link>http://cedik.com/2008/05/10/smf-anti-spam-bots-registration-mod/</link>
		<comments>http://cedik.com/2008/05/10/smf-anti-spam-bots-registration-mod/#comments</comments>
		<pubDate>Sat, 10 May 2008 09:04:18 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[SMF]]></category>

		<category><![CDATA[anti-spam]]></category>

		<category><![CDATA[anti-spambots]]></category>

		<category><![CDATA[forum]]></category>

		<category><![CDATA[mod]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[simplemachines]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/05/10/smf-anti-spam-bots-registration-mod/</guid>
		<description><![CDATA[Among other sites, I&#8217;m also an administrator on the romanian anime forum Manga-anime.ro. That forum is a SMF one and recently we had some problems with the spam bots registering our boards and spamming them with porn or pharmaceutical stuff. The root admin tried to install a SMF mod that should have prevented them from [...]]]></description>
			<content:encoded><![CDATA[<p>Among other sites, I&#8217;m also an administrator on the romanian anime forum Manga-anime.ro. That forum is a SMF one and recently we had some problems with the spam bots registering our boards and spamming them with porn or pharmaceutical stuff. The root admin tried to install a SMF mod that should have prevented them from registering by making them solve some simple puzzles, but the mod just didn&#8217;t work. So I tried to make something myself, from scratch. I came with the idea of adding a simple math problem for them to solve: the sum of two numbers. The numbers are randomly generated from 1 to 5 so the sum should be pretty simple to solve by anyone. However, since I don&#8217;t know how SMF system works, this modification is not that complex or accurate.</p>
<p>In order to do this on your SMF site too, you must follow three simple steps. <a href="http://cedik.com/2008/05/10/smf-anti-spam-bots-registration-mod/#more-9" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/05/10/smf-anti-spam-bots-registration-mod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Php-fusion automatic signature mod</title>
		<link>http://cedik.com/2008/05/09/php-fusion-automatic-signature-mod/</link>
		<comments>http://cedik.com/2008/05/09/php-fusion-automatic-signature-mod/#comments</comments>
		<pubDate>Fri, 09 May 2008 12:53:19 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Php-fusion CMS]]></category>

		<category><![CDATA[automatic signature]]></category>

		<category><![CDATA[infusion]]></category>

		<category><![CDATA[mod]]></category>

		<category><![CDATA[php-fusion]]></category>

		<category><![CDATA[signature mod]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/05/09/php-fusion-automatic-signature-mod/</guid>
		<description><![CDATA[Today, I&#8217;ll share with my readers and visitors a php-fusion that I made for one of my sites. It&#8217;s based on similar mods written for phpBB or myBB, but only the idea was &#8220;copied&#8221;. The coding was done from scratch.
Therefor, I bring to you today the Php-fusion signature mod v1.0 Since this is the first [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I&#8217;ll share with my readers and visitors a php-fusion that I made for one of my sites. It&#8217;s based on similar mods written for phpBB or myBB, but only the idea was &#8220;copied&#8221;. The coding was done from scratch.</p>
<p>Therefor, I bring to you today the <strong>Php-fusion signature mod</strong> v1.0 Since this is the first version, it doesn&#8217;t do really much but I&#8217;m planning of making this a real infusion, with and admin panel interface. So far, all this infusion can do is to generate an image that will display the stats of your php-fusion based forum. On the image will appear the number of members, posts and threads. Also, if you want, you can also make it display your site name and url, but this options isn&#8217;t &#8220;activated&#8221; by default. <a href="http://cedik.com/2008/05/09/php-fusion-automatic-signature-mod/#more-6" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/05/09/php-fusion-automatic-signature-mod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Anime CMS - first post</title>
		<link>http://cedik.com/2008/05/05/anime-cms-first-post/</link>
		<comments>http://cedik.com/2008/05/05/anime-cms-first-post/#comments</comments>
		<pubDate>Mon, 05 May 2008 15:37:50 +0000</pubDate>
		<dc:creator>Cedik</dc:creator>
		
		<category><![CDATA[Anime CMS]]></category>

		<category><![CDATA[anime]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[content management system]]></category>

		<category><![CDATA[manga]]></category>

		<guid isPermaLink="false">http://cedik.com/2008/05/05/anime-cms-first-post/</guid>
		<description><![CDATA[As an anime fan and webmaster of a couple of anime sites like Animezup, Extra Animezup or Bleach Romania, I knwo what it means to have an anime and manga related site. My sites were based on Content Management System like Php-Fusion or MkPortal, but I had to rewrite some of their modules and/or language [...]]]></description>
			<content:encoded><![CDATA[<p>As an anime fan and webmaster of a couple of anime sites like <a href="http://animezup.com" title="Animezup">Animezup</a>, <a href="http://extra.animezup.com" title="extra animezup">Extra Animezup</a> or<a href="http://bleach.animezup.com" title="bleach romania"> Bleach Romania</a>, I knwo what it means to have an anime and manga related site. My sites were based on Content Management System like Php-Fusion or MkPortal, but I had to rewrite some of their modules and/or language files to make them work for an anime site. Also, none of them had a really good download system so my anime downloads site lacked many options. Since my sites are already too old and established, it would be a real pain to remake them in a more appropriate way, but since I started to learn some php at school and I&#8217;m also not bad at programming, I decided to make my own CMS, which will be the most suitable for an anime site. <a href="http://cedik.com/2008/05/05/anime-cms-first-post/#more-5" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cedik.com/2008/05/05/anime-cms-first-post/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
