<?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>Adventures As Me &#187; PHP</title>
	<atom:link href="http://blog.tel-cor.com/category/information-technology/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tel-cor.com</link>
	<description>Programming, life, oddities</description>
	<lastBuildDate>Wed, 12 Aug 2009 17:50:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>cPanel Home Loaders</title>
		<link>http://blog.tel-cor.com/2008/11/10/cpanel-home-loaders/</link>
		<comments>http://blog.tel-cor.com/2008/11/10/cpanel-home-loaders/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 15:00:19 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[Information Technology (IT)]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blog.tel-cor.com/?p=298</guid>
		<description><![CDATA[Last
time, we discussed the interfaces in cPanel to manage Programming Language
modules, such as PEAR packages. We were left
with this problem:
Once the particular module is installed to
the user’s home directory, it is available for use in his application. However,
the application must be modified, or the environment configured, to inform the
application of the location of these modules.
With [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2008/11/10/cpanel-home-loaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cPanel Language Module Interfaces</title>
		<link>http://blog.tel-cor.com/2008/11/08/cpanel-language-module-interfaces/</link>
		<comments>http://blog.tel-cor.com/2008/11/08/cpanel-language-module-interfaces/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 01:28:35 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[Information Technology (IT)]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blog.tel-cor.com/?p=292</guid>
		<description><![CDATA[Scripting languages often provide a central location to obtain modules  
for use in user applications. For example, Perl has CPAN and PHP has  
PEAR. cPanel 11 provides an easy to use interface for managing modules  
for Perl, PHP and Ruby, both from WHM and cPanel. In this first of a  
two part series, we cover [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2008/11/08/cpanel-language-module-interfaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Securing PHP in Shared Hosting Environment</title>
		<link>http://blog.tel-cor.com/2007/03/23/</link>
		<comments>http://blog.tel-cor.com/2007/03/23/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 22:54:27 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[Information Technology (IT)]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[One of the problems inherent to using an Apache Module in a shared web hosting environment is the fact Apache modules gain all the permissions of Apache. Hence, using something like PHP as an Apache module can create serious security vulnerabilities. Since the PHP scripts run in the Apache context, users can easily cause problems [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2007/03/23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can you spot the bug</title>
		<link>http://blog.tel-cor.com/2005/06/15/</link>
		<comments>http://blog.tel-cor.com/2005/06/15/#comments</comments>
		<pubDate>Wed, 15 Jun 2005 10:31:04 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Found in bBlog code:

function maketimestamp($day,$month,$year,$hour,$minute)
{
    // make timestamp format of YYYYMMDDHHMMSS
    $string = $year.$month.$day.$hour.$minute.'00';
    $timestamp = mktime(substr($string,8,2), substr($string,10,2), substr($string,12,2), substr($string,4,2), substr($string,6,2), substr($string,0,4));
    return $timestamp;
}

Where in there is the bug? Ok, let me help you. Imagine that somewhere in the bBlog code, maketimestamp function [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/06/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons learned</title>
		<link>http://blog.tel-cor.com/2005/06/07/</link>
		<comments>http://blog.tel-cor.com/2005/06/07/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 09:00:44 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This past weekend working with the &#8220;bBlog&#8221;:http://www.bblog.com codebase I was
reminded of an important principle when it comes to multiple developers on one
code base: test your fixes before merging. In trying to fix a problem of spam
html sneaking through comment moderation, I changed a regex to a more
comprehensive expression. However I used single quotes(&#8217;) rather than [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/06/07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bBlog comment administration</title>
		<link>http://blog.tel-cor.com/2005/05/26/</link>
		<comments>http://blog.tel-cor.com/2005/05/26/#comments</comments>
		<pubDate>Thu, 26 May 2005 17:29:50 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I did it. As noted below I needed a way to mass delete comments in bBlog. After searching the bBlog forums, I could not find anything, thus I decided to see how difficult it would be.
The answer is: not very. A little editing and now I can mass delete or mass approve comments. Sharing is [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/05/26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>By the action of one will the many be brought low</title>
		<link>http://blog.tel-cor.com/2005/03/31/</link>
		<comments>http://blog.tel-cor.com/2005/03/31/#comments</comments>
		<pubDate>Thu, 31 Mar 2005 17:05:49 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The story finally hit Slashdot: a Wordpress developer uses unethical means
to raise money for the site/project. While WordPress the project and
software will continue, the blight this action caused undermines not
only the integrity of the project as a whole, but the person that
perpetrated this. Rather than using the various, well-proven, methods
for raising funds he turns to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/03/31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Release 1.5</title>
		<link>http://blog.tel-cor.com/2005/02/20/</link>
		<comments>http://blog.tel-cor.com/2005/02/20/#comments</comments>
		<pubDate>Sun, 20 Feb 2005 19:08:06 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I noticed that WordPress 1.5 is released. WordPress
is a nice blog system, but version 1.2 was not ready for my needs,
perhaps this one is? The previous version did not have support for
multiple blogs, theming was strange (I think it was PHP driven, but I
cannot recall now, a year or more has past since last using [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/02/20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP: ternary, print &amp;amp echo</title>
		<link>http://blog.tel-cor.com/2005/01/27/</link>
		<comments>http://blog.tel-cor.com/2005/01/27/#comments</comments>
		<pubDate>Thu, 27 Jan 2005 07:53:03 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
Quick PHP question: why does
  (0==0) ? print 'Zero' : print 'Not Zero';
output a message, but
  (0==0) ? echo 'Zero' : echo 'Not Zero';
generates an error (Parse error: parse error, unexpected T_ECHO in /var/www/print.php on line 2)?

According to the manual, both print and echo are language constructs, not functions. However, print returns 1, [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2005/01/27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADODB &#8211; New version</title>
		<link>http://blog.tel-cor.com/2004/09/29/</link>
		<comments>http://blog.tel-cor.com/2004/09/29/#comments</comments>
		<pubDate>Wed, 29 Sep 2004 16:34:54 +0000</pubDate>
		<dc:creator>telcor</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Noticed earlier at John Lim&#8217;s site that the news version of ADODB, 4.53, is released. Get the goodness!


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://blog.tel-cor.com/2004/09/29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
