<?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>PHP Programming and etc</title>
	<atom:link href="http://www.kobmat.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kobmat.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Jun 2011 02:25:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>A test post using the wordpress andriod app.</title>
		<link>http://www.kobmat.com/2011/06/a-test-post-using-the-wordpress-andriod-app/</link>
		<comments>http://www.kobmat.com/2011/06/a-test-post-using-the-wordpress-andriod-app/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 02:25:20 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/2011/06/a-test-post-using-the-wordpress-andriod-app/</guid>
		<description><![CDATA[Recently found this Andriod wordpress application, im just curious to see how it works and if it will work with this blog. Since you are able to read this then the application worked like a charm. It would certainly allow me to update this blog easily and can be on the go. I no longer [...]]]></description>
			<content:encoded><![CDATA[ 	<p>Recently found this Andriod wordpress application, im just curious to see how it works and if it will work with this blog. Since you are able to read this then the application worked like a charm. </p>
<p>It would certainly allow me to update this blog easily and can be on the go. I no longer have an excuse not to post something new. <img src='http://www.kobmat.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2011/06/a-test-post-using-the-wordpress-andriod-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Year&#8217;s Resolution #1. Frequently Update this blog.</title>
		<link>http://www.kobmat.com/2011/01/news-year-resolution-1-frequently-update-this-blog/</link>
		<comments>http://www.kobmat.com/2011/01/news-year-resolution-1-frequently-update-this-blog/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 12:32:08 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Personal Stuff]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=117</guid>
		<description><![CDATA[I was stunned when i looked at how ago i updated this blog, the last post i made was way back January 2009. Thinking back i can barely remember what i was doing the past couple of years that took me away from updating this. It is all a blur, running after deadline after deadline. [...]]]></description>
			<content:encoded><![CDATA[ 	<p>I was stunned when i looked at how ago i updated this blog, the last post i made was way back January 2009. Thinking back i can barely remember what i was doing the past couple of years that took me away from updating this. It is all a blur,  running after deadline after deadline. I cannot even remember whats sites i worked on or what i learned this year. So this year i will try yet again to increase my posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2011/01/news-year-resolution-1-frequently-update-this-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating A Custom Support Chat Icon From SmarterTracker</title>
		<link>http://www.kobmat.com/2009/01/creating-a-custom-support-chat-from-smartertracker/</link>
		<comments>http://www.kobmat.com/2009/01/creating-a-custom-support-chat-from-smartertracker/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 05:56:09 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[SmarterTools]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=113</guid>
		<description><![CDATA[Recently I was tasked to create a notifier that smarterTracker support chat is online from inside flash. I quickly explored Tracker for any setting that would allow me to check on some script that would return either 1 for online and 2 for offline. To my dismay, after almost an hour of looking into the [...]]]></description>
			<content:encoded><![CDATA[ 	<p>Recently I was tasked to create a notifier that smarterTracker support chat is online from inside flash. I quickly explored Tracker for any setting that would allow me to check on some script that would return either 1 for online and 2 for offline. To my dismay, after almost an hour of looking into the admin area, i found absolutely nothing. Tracker do provide a way to show the online/offline image using javascript and html. I started to dig down their code and checked what scripts where they checking and how are they doing the notifier. </p>
<p>Their trick puzzled me a bit. Its not quite obvious with just one look but with time i figured the secret out. They are returning a transparent gif, which for some odd reason is of the same filesize when it online and offline. They are returning for online a 1 pixel by 1 pixel transparent gif when online and a 1 pixel x 2 pixel image when offline. Since Flash is not my strong points i created a simple php file to check the returned image for its height and return it to flash. </p>
<p>PHP Script contents follow:<br />
<code><br />
$domain = 'domain.com';<br />
$port = 1234;<br />
$config_id = 1;</p>
<p>if(strlen($port))<br />
{<br />
$domain .= ':'.$port;<br />
}</p>
<p>$x = getimagesize("http://".$domain."/ChatScript.ashx?config=".$config_id."&#038;refresh=1&#038;time=".time());<br />
echo $x[1];<br />
</code></p>
<p>And on the flash side of things on the first frame of your movie clip that shows the online and offline image.</p>
<p><code><br />
stop();</p>
<p>x = setInterval(this, "checkData", 2000);<br />
function checkData()<br />
{<br />
domain = 'domain.com';</p>
<p>	var c:XML = new XML();<br />
	c.load("http://" + domain + "/status.php");<br />
	c.onData = function(data)<br />
	{<br />
		if(parseInt(data)== 1)<br />
			{<br />
				//online - modify this to fit your needs<br />
				onlinechat.gotoAndStop('online');<br />
			}<br />
		else<br />
			{<br />
//offline - modify this to fit your needs<br />
				onlinechat.gotoAndStop('offline');<br />
			}</p>
<p>			}<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2009/01/creating-a-custom-support-chat-from-smartertracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No More SPAM Comments</title>
		<link>http://www.kobmat.com/2009/01/no-more-spam-comments/</link>
		<comments>http://www.kobmat.com/2009/01/no-more-spam-comments/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 07:16:59 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Comment SPAM]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[WPSpamFree]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=112</guid>
		<description><![CDATA[Ever since i started this, i have had more than 10,000 spam comments and only 3 valid ones, a mind numbing amount of spam which i had to sort out and mark each of the spam comments one by one. There was a time i had to sort through 3000 comments. And i can remember [...]]]></description>
			<content:encoded><![CDATA[ 	<p>Ever since i started this, i have had more than 10,000 spam comments and only 3 valid ones, a mind numbing amount of spam which i had to sort out and mark each of the spam comments one by one. There was a time i had to sort through 3000 comments. And i can remember a time that i basically had to run some sql queries on the database to mark everything as spam. This is when i left this blog alone for about 2 months. I have looked into a solution but it seems nothing worked.</p>
<p>Then i found WPSpamFree, it very simple to install with the new WordPress 2.7. Its been 48 hours since i activated that plugin and it has blocked about 80 SPAM comments. Hopefully this ANTISPAM solution will hold. Right now it is such a relief to not get countless comment alert on my email and to spend hours sorting through all the comments. I think this is something that WordPress should come with by default to help newbies on dealing with the thousands of spammers out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2009/01/no-more-spam-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Upgraded to WordPress 2.7</title>
		<link>http://www.kobmat.com/2009/01/blog-upgraded-to-wordpress-27/</link>
		<comments>http://www.kobmat.com/2009/01/blog-upgraded-to-wordpress-27/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 07:08:14 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Whats New]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=110</guid>
		<description><![CDATA[It has been months since i last worked on this blog. And i have ignored the message on wordpress admin to upgrade, today i finally gave in and i like the new WordPress. From the look of it, it looks very polished and well though of. It seems much easier to user and faster (when [...]]]></description>
			<content:encoded><![CDATA[ 	<p>It has been months since i last worked on this blog. And i have ignored the message on wordpress admin to upgrade, today i finally gave in and i like the new WordPress. From the look of it, it looks very polished and well though of. It seems much easier to user and faster (when i enabled use of Gears). There are a bunch of new features on the new release. On of the most exciting for me is the plugin installer and updater, it works awesome and is a very nice and makes for the convenient installing and upgrading. Its a very usefull feature and really does makes thing a lot easier. </p>
<p>I may need to scrap the photo gallery and code something better. I really dont like the way it is right now. Have to be off the keyboard as well and take a number of shots to update my photogallery. Its been a while since i last posted something new in there. Work has been strapped to a chair in my office for i think a year now. Hopefully i can get some updates into that area as well. </p>
<p>I think the new version also removed the lightbox for all images embedded on my post. I do however like the &#8220;Media Library&#8221; feature. Yet another thing that makes life a lot easier. I can only wish that install plugins on oscommerce could be as easy as how wordpress does it. Oscommerce does not even have the update notification feature even that would help a lot of people. The beauty of open source is that if you dont like how something works you can always grab the code and make it work your way, hopefully i can have enough time this year to work on my own release of Oscommerce. But for now will have to go Line By Line Day by Day and slowly but steady.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2009/01/blog-upgraded-to-wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trouble With Google Code SVN</title>
		<link>http://www.kobmat.com/2009/01/trouble-with-google-code-svn/</link>
		<comments>http://www.kobmat.com/2009/01/trouble-with-google-code-svn/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:28:33 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=109</guid>
		<description><![CDATA[It could just be my dual wan configuration messing up google code SVN Commit. For people trying to download my code for extOSC (as if there are any trying to download it ) Please download the zip file i have uploaded on the downloads tab on google code. For some reason i have to commit [...]]]></description>
			<content:encoded><![CDATA[ 	<p>It could just be my dual wan configuration messing up google code SVN Commit. For people trying to download my code for extOSC (as if there are any trying to download it <img src='http://www.kobmat.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) Please download the zip file i have uploaded on the downloads tab on google code. For some reason i have to commit directory by directory otherwise the when i do the whole oscommerce code it present some sort of error message. Im still trying to sort out the error out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2009/01/trouble-with-google-code-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS + Oscommerce = ExtOSC???</title>
		<link>http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/</link>
		<comments>http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 14:18:08 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Oscommerce Contributions Reviews]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=101</guid>
		<description><![CDATA[Recently I started work on making a more user friendly and responsive version of oscommerce. My plan is to add bits of AJAX to the admin area, add sort of live help, and rethink how the admin area is structured. Added to that im thinking of breaking up the script into four, one for the [...]]]></description>
			<content:encoded><![CDATA[ 	<p>Recently I started work on making a more user friendly and responsive version of oscommerce. My plan is to add bits of AJAX to the admin area, add sort of live help, and rethink how the admin area is structured. Added to that im thinking of breaking up the script into four, one for the main file, one for the javascript code, one to contain the actions and the last one to contain php code that would serve data to the javascript. It would somehow make my life easier in developing code that would make oscommerce even greater than it is right now.</p>
<p>The ultimate goal is to release some sort of a branch of oscommerce added with essential contributions much like oscmax or oscreloaded with some modifications to make the learning curve for using oscommerce a bit easier. One area that needs a lot of work is the product options area, the one that comes with oscommerce is very complicated and is very hard for novices to get their minds around it.</p>
<p>After 48 hours of work, i have sort of finished the configuration area. I think it is a much faster way of working in the configuration area. Hopefully i will have the time and the resources to convert the rest of the admin area to the look and the feel of the finished configuration area.</p>

<a href='http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/untitled-1/' title='Main Configuration Page'><img width="150" height="150" src="http://www.kobmat.com/myblog/wp-content/uploads/2009/01/untitled-1-150x150.jpg" class="attachment-thumbnail" alt="Main Configuration Page" title="Main Configuration Page" /></a>
<a href='http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/untitled-2/' title='untitled-2'><img width="150" height="150" src="http://www.kobmat.com/myblog/wp-content/uploads/2009/01/untitled-2-150x150.jpg" class="attachment-thumbnail" alt="untitled-2" title="untitled-2" /></a>
<a href='http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/untitled-3/' title='untitled-3'><img width="150" height="150" src="http://www.kobmat.com/myblog/wp-content/uploads/2009/01/untitled-3-150x150.jpg" class="attachment-thumbnail" alt="untitled-3" title="untitled-3" /></a>
<a href='http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/untitled-4/' title='untitled-4'><img width="150" height="150" src="http://www.kobmat.com/myblog/wp-content/uploads/2009/01/untitled-4-150x150.jpg" class="attachment-thumbnail" alt="untitled-4" title="untitled-4" /></a>

<p>You can download the code at <a href="http://code.google.com/p/ajaxoscommerce/">Google Code</a>. You can download my first release there. I do however suggest not using it for anything in production since it might have MAJOR vulnerabilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2009/01/extjs-oscommerce-extosc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to OSCommerce Contributions Reviews</title>
		<link>http://www.kobmat.com/2008/11/welcome-to-oscommerce-contributions-reviews/</link>
		<comments>http://www.kobmat.com/2008/11/welcome-to-oscommerce-contributions-reviews/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 16:32:56 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Oscommerce Contributions Reviews]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=91</guid>
		<description><![CDATA[I have been working with oscommerce for years now. And we know for the fact that the unmodded oscommerce is not that complete. There are some things that we need to add. Some i think like me already maintain sort of an oscommerce package already packed with all the bells and whistles we can manage [...]]]></description>
			<content:encoded><![CDATA[ 	<p>I have been working with oscommerce for years now. And we know for the fact that the unmodded oscommerce is not that complete. There are some things that we need to add. Some i think like me already maintain sort of an oscommerce package already packed with all the bells and whistles we can manage to add to it. </p>
<p>We all im sure love all of the contributions. It allows oscommerce to be molded to suit the most brilliant and even the most obsurb of ideas. But the fact is sorting through all of the contributions can be daunting and sometimes just impossible. </p>
<p>My mission is to somehow get some reviews out of these contribution, provide screenshots. But first i will need to come up with sort of a rating scheme for the contributions. </p>
<p>The ultimate goal however is to provide with some sort of top picks of all these contributions. Since there are thousands of contribution, my idea is to start with at least the most popular ones. My initial target is to review at least about 3 contributions a week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2008/11/welcome-to-oscommerce-contributions-reviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Able to Delete!!!</title>
		<link>http://www.kobmat.com/2008/09/finally-about-to-delete/</link>
		<comments>http://www.kobmat.com/2008/09/finally-about-to-delete/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:15:37 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=87</guid>
		<description><![CDATA[For months now i have been using the FCKeditor more than i use textareas. Everything was fine until one of the people i work for asked one simple question. How to delete any media they have uploaded using the filebrowser? I was quick to assume that being a very nice WYSIWYG editor there should be [...]]]></description>
			<content:encoded><![CDATA[ 	<p>For months now i have been using the FCKeditor more than i use textareas. Everything was fine until one of the people i work for asked one simple question. <strong>How to delete any media they have uploaded using the filebrowser?</strong> I was quick to assume that being a very nice WYSIWYG editor there should be a built in delete function in there. Though there might be one but i have no idea how to do it.</p>
<p>I search the web for simple solutions to this very simple problem sadly nothing out there fit what i imagined a simple solution would be like. Added to that most are commercial solutions.</p>
<p>My simple solution includes adding one X icon next to the file icon, and have it call a function to delete the file. After on and off looking into the code fo FCKEditor, I finally got it to work. You can <a href='http://www.kobmat.com/myblog/wp-content/uploads/2008/09/fckeditor.zip'>click here toi download the zip file</a>. Sadly i dont have the time to patch the other browser connectors and added to that i only know PHP. If someone is kind enough to patch other connector, that would be awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2008/09/finally-about-to-delete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AirCalc &#8211; My First Adobe Air App</title>
		<link>http://www.kobmat.com/2008/03/aircalc-my-first-adobe-air-app/</link>
		<comments>http://www.kobmat.com/2008/03/aircalc-my-first-adobe-air-app/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 19:09:48 +0000</pubDate>
		<dc:creator>kobmat</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>

		<guid isPermaLink="false">http://www.kobmat.com/?p=83</guid>
		<description><![CDATA[This afternoon i wondered how long it would take for me to build a simple calculator app with adobe. And guess what, it just too me about 30 minutes to whip it up. Amazingly easy. Aptana IDE did help a lot. Makes things really really simple and best of all you can download it for [...]]]></description>
			<content:encoded><![CDATA[ 	<p>This afternoon i wondered how long it would take for me to build a simple calculator app with adobe. And guess what, it just too me about 30 minutes to whip it up. Amazingly easy. Aptana IDE did help a lot. Makes things really really simple and best of all you can download it for free.</p>
<p><strong>WARNING:</strong><br />
The file you are about to download contains a very simple calculator. If every you get here cause you cant find the calculator in Windows. It somewhere in accesories. For those who just want to download this application <a href='http://www.kobmat.com/myblog/wp-content/uploads/2008/03/aircalc.zip' title='aircalc.zip'>Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kobmat.com/2008/03/aircalc-my-first-adobe-air-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-946279-1";
urchinTracker();
</script>
