<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for PHP, Linux and the like...</title>
	<atom:link href="http://phplinuxandthelike.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://phplinuxandthelike.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 02 Oct 2009 07:42:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Basic Asterisk Configuration by kalpesh jain</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-114</link>
		<dc:creator>kalpesh jain</dc:creator>
		<pubDate>Fri, 02 Oct 2009 07:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-114</guid>
		<description>Its really nice one for startup.</description>
		<content:encoded><![CDATA[<p>Its really nice one for startup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Asterisk Configuration by josefbr</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-112</link>
		<dc:creator>josefbr</dc:creator>
		<pubDate>Tue, 07 Jul 2009 03:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-112</guid>
		<description>Hi, i have well installed OpenIMS Core and X_Lite but can&#039;t get connected. if you can tell me what configuration should i make.
Note, both OpenIMS Core and X_Lite are installed on the same desktop Ubuntu 8.04 (Hardy)</description>
		<content:encoded><![CDATA[<p>Hi, i have well installed OpenIMS Core and X_Lite but can&#8217;t get connected. if you can tell me what configuration should i make.<br />
Note, both OpenIMS Core and X_Lite are installed on the same desktop Ubuntu 8.04 (Hardy)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Asterisk Configuration by Paul Skinner</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-110</link>
		<dc:creator>Paul Skinner</dc:creator>
		<pubDate>Tue, 10 Mar 2009 15:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-110</guid>
		<description>Hi Milind.

Take this entry from extension.conf from one of the Asterisk configurations I maintain using babytel as a VoIP provider:

exten =&gt; _NXXXXXX,1,Set(CALLERID(name)=HRSG 6131234567)
exten =&gt; _NXXXXXX,2,Set(CALLERID(number)=6131234567)
exten =&gt; _NXXXXXX,3,Dial(SIP/613${EXTEN}@sip.babytel.ca,300,r)

This example handles 7 digit dialing, prefixing the outgoing call on ,3 with 613.

You&#039;ll need to have an entry in &quot;sip.conf&quot; to handle the registration and configuration of the provider.  In this case it&#039;s like

[general]
register =&gt; 16131234567:secret:16131234567@sip.babytel.ca:5065/0

and 

[sip.babytel.ca]
context=mycontext
type=peer
disallow=all
allow=g729
allow=gsm
allow=ulaw
secret=secret
username=16131234567
host=sip.babytel.ca
port=5065
fromuser=16131234567
fromdomain=sip.babytel.ca
insecure=very
nat=no
canreinvite=no

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Milind.</p>
<p>Take this entry from extension.conf from one of the Asterisk configurations I maintain using babytel as a VoIP provider:</p>
<p>exten =&gt; _NXXXXXX,1,Set(CALLERID(name)=HRSG 6131234567)<br />
exten =&gt; _NXXXXXX,2,Set(CALLERID(number)=6131234567)<br />
exten =&gt; _NXXXXXX,3,Dial(SIP/613${EXTEN}@sip.babytel.ca,300,r)</p>
<p>This example handles 7 digit dialing, prefixing the outgoing call on ,3 with 613.</p>
<p>You&#8217;ll need to have an entry in &#8220;sip.conf&#8221; to handle the registration and configuration of the provider.  In this case it&#8217;s like</p>
<p>[general]<br />
register =&gt; 16131234567:secret:16131234567@sip.babytel.ca:5065/0</p>
<p>and </p>
<p>[sip.babytel.ca]<br />
context=mycontext<br />
type=peer<br />
disallow=all<br />
allow=g729<br />
allow=gsm<br />
allow=ulaw<br />
secret=secret<br />
username=16131234567<br />
host=sip.babytel.ca<br />
port=5065<br />
fromuser=16131234567<br />
fromdomain=sip.babytel.ca<br />
insecure=very<br />
nat=no<br />
canreinvite=no</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Asterisk Configuration by Milind lokde</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-109</link>
		<dc:creator>Milind lokde</dc:creator>
		<pubDate>Tue, 10 Mar 2009 14:55:38 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-109</guid>
		<description>Thanks for the information. I can now make calls between my computers. But how do I make outgoing calls using VoIP provider.</description>
		<content:encoded><![CDATA[<p>Thanks for the information. I can now make calls between my computers. But how do I make outgoing calls using VoIP provider.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend&#8217;s Yin and Yang&#8230; by David</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/02/zends-yin-and-yang/#comment-97</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 26 Mar 2008 20:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/02/zends-ying-and-yang/#comment-97</guid>
		<description>Hi Paul,

I couldn&#039;t agree with you more. Zend seems like a nice company and we all must be grateful for PHP and their other contributions to open source. On the other hand, their stuff tends to be very frustrating to set up and their site is almost useless for finding out how to fix the problems you encounter.

We use Zend Core and believe it is the best PHP stack available. However, we have suffered with almost every installation of it.

It&#039;s a shame.

Cheers.

David</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>I couldn&#8217;t agree with you more. Zend seems like a nice company and we all must be grateful for PHP and their other contributions to open source. On the other hand, their stuff tends to be very frustrating to set up and their site is almost useless for finding out how to fix the problems you encounter.</p>
<p>We use Zend Core and believe it is the best PHP stack available. However, we have suffered with almost every installation of it.</p>
<p>It&#8217;s a shame.</p>
<p>Cheers.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend&#8217;s Yin and Yang&#8230; by Paul Skinner</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/02/zends-yin-and-yang/#comment-56</link>
		<dc:creator>Paul Skinner</dc:creator>
		<pubDate>Wed, 05 Dec 2007 19:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/02/zends-ying-and-yang/#comment-56</guid>
		<description>Zend called today to see if I wanted to renew my license of Zend Guard.

I had to contain my enthusiasm, sarcastic comments and laughter.</description>
		<content:encoded><![CDATA[<p>Zend called today to see if I wanted to renew my license of Zend Guard.</p>
<p>I had to contain my enthusiasm, sarcastic comments and laughter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend&#8217;s Yin and Yang&#8230; by skinnepa</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/02/zends-yin-and-yang/#comment-35</link>
		<dc:creator>skinnepa</dc:creator>
		<pubDate>Fri, 09 Nov 2007 01:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/02/zends-ying-and-yang/#comment-35</guid>
		<description>Things are looking up for Eclipse and Zend integration.  

http://eclipse.sys-con.com/read/444088.htm</description>
		<content:encoded><![CDATA[<p>Things are looking up for Eclipse and Zend integration.  </p>
<p><a href="http://eclipse.sys-con.com/read/444088.htm" rel="nofollow">http://eclipse.sys-con.com/read/444088.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MS Exchange functionality on Linux? Zimbra ties it all together. by skinnepa</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/10/16/ms-exchange-functionality-on-linux-zimbra-ties-it-all-together/#comment-27</link>
		<dc:creator>skinnepa</dc:creator>
		<pubDate>Mon, 29 Oct 2007 00:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/10/16/ms-exchange-functionality-on-linux-zimbra-ties-it-all-together/#comment-27</guid>
		<description>Looking through my bookmarks, I did find the &quot;Exchange Replacement&quot; site, for the &quot;hard-way&quot;.

&lt;a href=&quot;http://www.ibiblio.org/oswg/oswg-nightly/oswg/en_US.ISO_8859-1/articles/exchange-replacement-howto/exchange-replacement-howto.html&quot; rel=&quot;nofollow&quot;&gt;Link&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Looking through my bookmarks, I did find the &#8220;Exchange Replacement&#8221; site, for the &#8220;hard-way&#8221;.</p>
<p><a href="http://www.ibiblio.org/oswg/oswg-nightly/oswg/en_US.ISO_8859-1/articles/exchange-replacement-howto/exchange-replacement-howto.html" rel="nofollow">Link</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic Asterisk Configuration by Arunkumar</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-20</link>
		<dc:creator>Arunkumar</dc:creator>
		<pubDate>Fri, 19 Oct 2007 08:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/09/04/basic-asterisk-configuration/#comment-20</guid>
		<description>Thanks for giving this useful information...</description>
		<content:encoded><![CDATA[<p>Thanks for giving this useful information&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Installation: A myriad of options by PHP 5 under IIS: It&#8217;s ready. &#171; PHP, Linux and the like&#8230;</title>
		<link>http://phplinuxandthelike.wordpress.com/2007/07/29/php-installation-a-myriad-of-options/#comment-19</link>
		<dc:creator>PHP 5 under IIS: It&#8217;s ready. &#171; PHP, Linux and the like&#8230;</dc:creator>
		<pubDate>Fri, 12 Oct 2007 04:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://phplinuxandthelike.wordpress.com/2007/07/29/php-installation-a-myriad-of-options/#comment-19</guid>
		<description>[...] Filed under: PHP, Win32 &#8212; skinnepa @ 4:31 am   One of my first blog posts, PHP Installation: A myriad of options asserted that Windows and PHP 4 in ISAPI mode was a frustrating affair. I hereby offer a partial [...]</description>
		<content:encoded><![CDATA[<p>[...] Filed under: PHP, Win32 &#8212; skinnepa @ 4:31 am   One of my first blog posts, PHP Installation: A myriad of options asserted that Windows and PHP 4 in ISAPI mode was a frustrating affair. I hereby offer a partial [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
