<?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/"
	
	>
<channel>
	<title>
	Comments on: Good Morning: Hotel-Style Wake Up Calls Return to Asterisk	</title>
	<atom:link href="https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/</link>
	<description>Ward Mundy&#039;s Technobabblelog</description>
	<lastBuildDate>Fri, 08 Apr 2016 12:56:46 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Gary Fuqua		</title>
		<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/comment-page-1/#comment-44196</link>

		<dc:creator><![CDATA[Gary Fuqua]]></dc:creator>
		<pubDate>Mon, 12 Sep 2011 01:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=589#comment-44196</guid>

					<description><![CDATA[Nice add on! I have it working in non-operator mode.  I enable the operator mode, but I still don&#039;t seem to be able to schedule a wakeup call for any other extension than the one I call on.   I&#039;m sure I&#039;m missing something simple...

Thanks J. for your caller Id fix too!]]></description>
			<content:encoded><![CDATA[<p>Nice add on! I have it working in non-operator mode.  I enable the operator mode, but I still don&#8217;t seem to be able to schedule a wakeup call for any other extension than the one I call on.   I&#8217;m sure I&#8217;m missing something simple&#8230;</p>
<p>Thanks J. for your caller Id fix too!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Thomas		</title>
		<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/comment-page-1/#comment-14410</link>

		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Mon, 09 May 2011 02:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=589#comment-14410</guid>

					<description><![CDATA[I&#039;m still figuring out what&#039;s the role of the program to my business. I&#039;m just so curious to make use of it.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still figuring out what&#8217;s the role of the program to my business. I&#8217;m just so curious to make use of it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: J		</title>
		<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/comment-page-1/#comment-9030</link>

		<dc:creator><![CDATA[J]]></dc:creator>
		<pubDate>Fri, 06 Mar 2009 14:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=589#comment-9030</guid>

					<description><![CDATA[I just thought I would let you know that on our system the Caller ID on the wakeup calls was always showing as unknown/unknown.  I believe this is because it wraps the Caller ID name in quotes.  On every installation we&#039;ve had, I have found that you cannot wrap a Caller ID name in quotes even when you are explicitly instructed to do so (such as when setting up the Outbound CID for an extension) - I don&#039;t know why that is, but it&#039;s been true for us going all the way back to our first Asterisk@Home installation. Maybe others have had a different experience, but for us things break if we put the Caller ID name in quotes, and work fine if we don&#039;t.

Anyway, I found that if I open up the /var/www/html/admin/modules/hotelwakeup/functions.inc.php file and edit the line (line 62 in my editor) that reads:

$sql .= &quot;, `wakeupcallerid`=&#039;\&quot;{$calleridtext}\&quot; &#039;&quot;;

and change it to remove the two instances of \&quot; so that it reads:

$sql .= &quot;, `wakeupcallerid`=&#039;{$calleridtext} &#039;&quot;;

That fixes the problem.  Also I changed /var/www/html/admin/modules/hotelwakeup/page.hotelwakeup.php (line 118 in my editor) from:

echo &quot;&#034;&#034;\n&quot;;

to

echo &quot;\n&quot;;

to remove the two instances of &#034; so that the quotes don&#039;t display on the configuration page, however that&#039;s strictly a cosmetic change that doesn&#039;t affect the operation of the program.

I just thought I&#039;d pass this along, in case anyone else is getting unknown/unknown for the Caller ID. It took me quite some time to figure out what the problem was, and then how to fix it.]]></description>
			<content:encoded><![CDATA[<p>I just thought I would let you know that on our system the Caller ID on the wakeup calls was always showing as unknown/unknown.  I believe this is because it wraps the Caller ID name in quotes.  On every installation we&#8217;ve had, I have found that you cannot wrap a Caller ID name in quotes even when you are explicitly instructed to do so (such as when setting up the Outbound CID for an extension) &#8211; I don&#8217;t know why that is, but it&#8217;s been true for us going all the way back to our first Asterisk@Home installation. Maybe others have had a different experience, but for us things break if we put the Caller ID name in quotes, and work fine if we don&#8217;t.</p>
<p>Anyway, I found that if I open up the /var/www/html/admin/modules/hotelwakeup/functions.inc.php file and edit the line (line 62 in my editor) that reads:</p>
<p>$sql .= ", `wakeupcallerid`=&#8217;\"{$calleridtext}\" &#8216;";</p>
<p>and change it to remove the two instances of \" so that it reads:</p>
<p>$sql .= ", `wakeupcallerid`='{$calleridtext} &#8216;";</p>
<p>That fixes the problem.  Also I changed /var/www/html/admin/modules/hotelwakeup/page.hotelwakeup.php (line 118 in my editor) from:</p>
<p>echo "&quot;&quot;\n";</p>
<p>to</p>
<p>echo "\n";</p>
<p>to remove the two instances of &quot; so that the quotes don&#8217;t display on the configuration page, however that&#8217;s strictly a cosmetic change that doesn&#8217;t affect the operation of the program.</p>
<p>I just thought I&#8217;d pass this along, in case anyone else is getting unknown/unknown for the Caller ID. It took me quite some time to figure out what the problem was, and then how to fix it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bill		</title>
		<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/comment-page-1/#comment-8974</link>

		<dc:creator><![CDATA[Bill]]></dc:creator>
		<pubDate>Fri, 27 Feb 2009 18:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=589#comment-8974</guid>

					<description><![CDATA[Note:  PHP5 is needed.  FreePBX works in PHP4 but this module does not, because of its use of class definitions introduced in PHP5.

&lt;i&gt;[WM: Thanks for the tip. We&#039;ve all gotten spoiled with PBX in a Flash. :-) ]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Note:  PHP5 is needed.  FreePBX works in PHP4 but this module does not, because of its use of class definitions introduced in PHP5.</p>
<p><i>[WM: Thanks for the tip. We&#8217;ve all gotten spoiled with PBX in a Flash. 🙂 ]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brandon Hunnicutt		</title>
		<link>https://nerdvittles.com/good-morning-hotel-style-wake-up-calls-return-to-asterisk/comment-page-1/#comment-8961</link>

		<dc:creator><![CDATA[Brandon Hunnicutt]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 03:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=589#comment-8961</guid>

					<description><![CDATA[Ward - Do you know if anymore work has been done on the wake up call project where you have to answer a math question to make sure you&#039;re up? I got it working a while back but since I lost that system I can&#039;t seem to find a working version.]]></description>
			<content:encoded><![CDATA[<p>Ward &#8211; Do you know if anymore work has been done on the wake up call project where you have to answer a math question to make sure you&#8217;re up? I got it working a while back but since I lost that system I can&#8217;t seem to find a working version.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
