<?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>Blog.TutorialRef.com</title>
	<atom:link href="http://blog.tutorialref.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.tutorialref.com</link>
	<description>Tutorials, Tips, Guides, Helps</description>
	<lastBuildDate>Sat, 28 Aug 2010 02:02:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL data comparison of two databases</title>
		<link>http://blog.tutorialref.com/mysql/mysql-data-comparison-of-two-databases-224.html</link>
		<comments>http://blog.tutorialref.com/mysql/mysql-data-comparison-of-two-databases-224.html#comments</comments>
		<pubDate>Sat, 28 Aug 2010 02:02:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Dbforge]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=224</guid>
		<description><![CDATA[<p>I&#8217;m trying to compare two databases using dbForge MySQL. I managed to sync two database schemas with dbForge which went well. So then then next step I tried to do was sync the data of two databases. Here is a snapshot of the data that was compared. Notice the table &#8216;ratings&#8217; needs 3 inserts from [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to compare two databases using dbForge MySQL. I managed to sync two database schemas with dbForge which went well. So then then next step I tried to do was sync the data of two databases. Here is a snapshot of the data that was compared. Notice the table &#8216;ratings&#8217; needs 3 inserts from the source table to the target table:</p>
<p><a href="http://blog.tutorialref.com/wp-content/uploads/2010/08/dbforge-mysql-data-comparison.png"><img src="http://blog.tutorialref.com/wp-content/uploads/2010/08/dbforge-mysql-data-comparison1-e1282959719537.png" alt="dbforge mysql data comparison results" title="dbforge-mysql-data-comparison" width="850" height="379" class="aligncenter size-medium wp-image-231" /></a></p>
<p>When I create the sql statements, this is what was created by the &#8220;Show Synchronization Wizard&#8221; button:</p>
<pre name="code" class="sql">INSERT INTO ratings(id, rating) VALUES (62, 2);
INSERT INTO ratings(id, rating) VALUES (61, 4);
INSERT INTO ratings(id, rating) VALUES (63, 3);</pre>
<p><img src="http://tutorialref.com/images/dbforge-mysql-data-sync-execution-error.png" alt="an error occured with dbForge MySQL data synchronization." /></p>
<p>Here is the snapshot to the &#8216;ratings&#8217; table:</p>
<p><img src="http://tutorialref.com/images/dbforge-mysql-ratings-table-schema.png" alt="dbforge mysql ratings table schema." /></p>
<p>And here is the text MySQL statement for creating the &#8216;ratings&#8217; table:</p>
<pre name="code" class="sql">CREATE TABLE skincar3_cosmetic.ratings(
  id INT(11) NOT NULL AUTO_INCREMENT,
  rating TINYINT(4) NOT NULL,
  div_id TEXT NOT NULL,
  ip TEXT NOT NULL,
  PRIMARY KEY (id)
)
ENGINE = MYISAM
AUTO_INCREMENT = 1
CHARACTER SET latin1
COLLATE latin1_swedish_ci;</pre>
<p>So why does it give me this error when in the first step I synced the two database schemas using dbForge MySQL? I know the workaround is to simply allow null values for the field &#8216;ip&#8217; and then the errors don&#8217;t occur but this is an extra step.</p>
<p>The other option is to change the MySQL statement as follows:</p>
<pre name="code" class="sql">INSERT INTO ratings(id, rating, div_id, ip) VALUES (62, 2, '', '');
INSERT INTO ratings (id, rating, div_id, ip) VALUES (61, 4, '', '');
INSERT INTO ratings (id, rating, div_id, ip) VALUES (63, 3, '', '');</pre>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=MySQL%20data%20comparison%20of%20two%20databases&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fmysql%2Fmysql-data-comparison-of-two-databases-224.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/mysql/mysql-data-comparison-of-two-databases-224.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dbforge MySQL backup database (multiple tables)</title>
		<link>http://blog.tutorialref.com/mysql/dbforge-mysql-backup-database-multiple-tables-2-218.html</link>
		<comments>http://blog.tutorialref.com/mysql/dbforge-mysql-backup-database-multiple-tables-2-218.html#comments</comments>
		<pubDate>Thu, 26 Aug 2010 22:45:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Dbforge]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=218</guid>
		<description><![CDATA[<p>Here is the snapshot when I right click on the Tables of the Database Explorer:
</p>
<p>Here is the snapshot when I right click on the Database of the Database Explorer:
</p>
<p>Here is the snapshot when I right click on the Database menu:
</p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Here is the snapshot when I right click on the Tables of the Database Explorer:</strong><br />
<img src="http://tutorialref.com/images/dbforge-mysql-database-explorer-right-click-tables.png" alt="dbforge mysql right click on tables of database explorer" /></p>
<p><strong>Here is the snapshot when I right click on the Database of the Database Explorer:</strong><br />
<img src="http://tutorialref.com/images/dbforge-mysql-database-explorer-right-click-menu.png" alt="right click on the database link of the database explorer" /></p>
<p><strong>Here is the snapshot when I right click on the Database menu:</strong><br />
<img src="http://tutorialref.com/images/dbforge-mysql-database-menu.png" alt="right click on the database menu of the dbforge ide" /></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Dbforge%20MySQL%20backup%20database%20%28multiple%20tables%29&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fmysql%2Fdbforge-mysql-backup-database-multiple-tables-2-218.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/mysql/dbforge-mysql-backup-database-multiple-tables-2-218.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipod Music Library Remember Playback Position Time</title>
		<link>http://blog.tutorialref.com/itunes/ipod-music-library-remember-playback-position-time-207.html</link>
		<comments>http://blog.tutorialref.com/itunes/ipod-music-library-remember-playback-position-time-207.html#comments</comments>
		<pubDate>Sun, 16 May 2010 14:57:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=207</guid>
		<description><![CDATA[<p>I&#8217;m having problems with syncing my iTune Music Library&#8217;s playback position time with my iPod shuffle. I want it so I know where I left off when I&#8217;m listening to some sermons. I&#8217;ve posted this question on a forum to find out the answer if there is one. I&#8217;ve created a video link to this [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m having problems with syncing my iTune Music Library&#8217;s playback position time with my iPod shuffle. I want it so I know where I left off when I&#8217;m listening to some sermons. I&#8217;ve posted this question on a forum to find out the answer if there is one. I&#8217;ve created a video link to this problem:</p>
<p><a href="http://tutorialref.com/videos/ipod-music-library-remember-playback-position-time.html">ipod Music Library Remember Playback Position Time video</a></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=ipod%20Music%20Library%20Remember%20Playback%20Position%20Time&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fitunes%2Fipod-music-library-remember-playback-position-time-207.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/itunes/ipod-music-library-remember-playback-position-time-207.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ipod Podcast Library Remember Playback Position Time</title>
		<link>http://blog.tutorialref.com/itunes/ipod-podcast-library-remember-playback-position-time-2-202.html</link>
		<comments>http://blog.tutorialref.com/itunes/ipod-podcast-library-remember-playback-position-time-2-202.html#comments</comments>
		<pubDate>Sun, 16 May 2010 14:30:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iPod]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=202</guid>
		<description><![CDATA[<p>I&#8217;m trying to figure out how to sync my iTune Music Library&#8217;s playback position time with my iPod shuffle. I managed to figure out how to sync my iTune Podcast Library&#8217;s playback position time with my iPod shuffle as demonstrated in this video. I posted this question in a forum and will post the answer [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to figure out how to sync my iTune Music Library&#8217;s playback position time with my iPod shuffle. I managed to figure out how to sync my iTune Podcast Library&#8217;s playback position time with my iPod shuffle as demonstrated in this video. I posted this question in a forum and will post the answer when I find out.</p>
<p><a href='http://tutorialref.com/videos/ipod-podcast-library-remember-playback-position-time.html' title='iPod Shuffle sync with iTunes Podcast Library - remember playback position time video.'>ipod Podcast Library Remember Playback Position Time video</a></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=ipod%20Podcast%20Library%20Remember%20Playback%20Position%20Time&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fitunes%2Fipod-podcast-library-remember-playback-position-time-2-202.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/itunes/ipod-podcast-library-remember-playback-position-time-2-202.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically fill out forms using MySQL, PHP</title>
		<link>http://blog.tutorialref.com/php/curl/automatically-fill-out-forms-using-mysql-php-198.html</link>
		<comments>http://blog.tutorialref.com/php/curl/automatically-fill-out-forms-using-mysql-php-198.html#comments</comments>
		<pubDate>Mon, 10 May 2010 19:35:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cURL]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=198</guid>
		<description><![CDATA[<p>I want to login to a page and then automatically submit a form. The form&#8217;s data is drawn from a MySQL db. I know PHP Curl a bit but I believe it can&#8217;t handle javascript or ajax-based forms well. I briefly read about Java&#8217;s HTMLUnit and it seems like this can handle ajax created forms [...]]]></description>
			<content:encoded><![CDATA[<p>I want to login to a page and then automatically submit a form. The form&#8217;s data is drawn from a MySQL db. I know PHP Curl a bit but I believe it can&#8217;t handle javascript or ajax-based forms well. I briefly read about Java&#8217;s HTMLUnit and it seems like this can handle ajax created forms too but I&#8217;m not certain. If there are multiple page then it would be nice to automate this but for now I don&#8217;t mind if I have to click on the next button to get to the 2nd page of a form and then automatically out this form&#8217;s data from the MySQL db. I don&#8217;t mind about the captcha either. Right now I&#8217;m using Roboform to automate some of that tasks but the data is not drawn from a MySQL db and I have to copy and paste some of the data from an excel sheet. Anyway, if you know of a solution please let me know.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Automatically%20fill%20out%20forms%20using%20MySQL%2C%20PHP&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fphp%2Fcurl%2Fautomatically-fill-out-forms-using-mysql-php-198.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/php/curl/automatically-fill-out-forms-using-mysql-php-198.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress-allowed memory size exhausted</title>
		<link>http://blog.tutorialref.com/wordpress/wordpress-allowed-memory-size-exhausted-194.html</link>
		<comments>http://blog.tutorialref.com/wordpress/wordpress-allowed-memory-size-exhausted-194.html#comments</comments>
		<pubDate>Mon, 10 May 2010 19:23:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=194</guid>
		<description><![CDATA[<p>I received this error from Wordpress 2.9.2. I think I encountered this before:</p>
<p>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 1966080 bytes) in /home1/discoup9/public_html/tutorialref/blog/wp-includes/class-simplepie.php on line 5409</p>
<p>When I went to the line 5409 on the class-simplepie.php I see this:</p>

$restrictions[] =&#038; new $this->feed->restriction_class($restriction_relationship, $restriction_type, $restriction_value);

]]></description>
			<content:encoded><![CDATA[<p>I received this error from Wordpress 2.9.2. I think I encountered this before:</p>
<p>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 1966080 bytes) in /home1/discoup9/public_html/tutorialref/blog/wp-includes/class-simplepie.php on line 5409</p>
<p>When I went to the line 5409 on the class-simplepie.php I see this:</p>
<pre name="code" class="php">
$restrictions[] =&#038; new $this->feed->restriction_class($restriction_relationship, $restriction_type, $restriction_value);
</pre>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Wordpress-allowed%20memory%20size%20exhausted&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fwordpress%2Fwordpress-allowed-memory-size-exhausted-194.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/wordpress/wordpress-allowed-memory-size-exhausted-194.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript AJAX error in IE-unknown runtime error</title>
		<link>http://blog.tutorialref.com/javascript-tutorial/javascript-ajax-error-in-ie-unknown-runtime-error-187.html</link>
		<comments>http://blog.tutorialref.com/javascript-tutorial/javascript-ajax-error-in-ie-unknown-runtime-error-187.html#comments</comments>
		<pubDate>Tue, 27 Apr 2010 18:41:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=187</guid>
		<description><![CDATA[<p>Javascript AJAX causes unknown runtime error in IE javascript debugger for IE 7.x and 8.x.</p>
I have this code that works perfectly in firefox but IE 7.x and 8.x has a problem:

function revDescr(condition_id, rev_cat_id) {
    this.condition_id = condition_id;
    this.rev_cat_id = rev_cat_id;

    //update the reverse entry description
  [...]]]></description>
			<content:encoded><![CDATA[<p>Javascript AJAX causes unknown runtime error in IE javascript debugger for IE 7.x and 8.x.</p>
<h3>I have this code that works perfectly in firefox but IE 7.x and 8.x has a problem:</h3>
<pre name="code" class="javascript">
function revDescr(condition_id, rev_cat_id) {
    this.condition_id = condition_id;
    this.rev_cat_id = rev_cat_id;

    //update the reverse entry description
    xmlhttp10=GetXmlHttpObject(); //if xmlhttp object not created
    if (xmlhttp10==null) {
        alert ("Browser does not support HTTP Request");
        return;
    }

    var url="./include_ajax/updateRevDescrSi.php";
    url=url+"?condition_id="+this.condition_id;
    url=url+"&#038;rev_cat_id="+this.rev_cat_id;
    url=url+"&#038;sid="+Math.random();
    xmlhttp10.open("GET",url,true);
    xmlhttp10.onreadystatechange=stateChangedRevDescr;

    xmlhttp10.send(null);
}

function stateChangedRevDescr() {
    if (xmlhttp10.readyState==4) {
        var data = xmlhttp10.responseText;
        document.getElementById("reverse_content").innerHTML = data;
    } else  {
        document.getElementById("reverse_content").innerHTML = "Please wait...updating";
    }
}
</pre>
<h3>&#8220;unknown runtime error&#8221; on this line:</h3>
<pre name="code" class="javascript">document.getElementById("reverse_content").innerHTML = data;</pre>
<h3>var data is passed as:</h3>
<pre name="code" class="html">
"
<h1>OTC</h1>

Melasma condition. OTC description.
<ul>
<li><a href='rev_product_page.php1' title='Neostrata HQ 4% PLUS Cream SPF 20'>Neostrata HQ 4% PLUS Cream SPF 20</a></li>
<li><a href='rev_product_page.php2' title='reverse product name 2'>reverse product name 2</a></li>
</ul>

"
</pre>
<p>If I change that one line above to this:</p>
<pre name="code" class="javascript">
document.getElementById("reverse_content").innerHTML = 'test';
</pre>
<p>it works. Or if I change it so var data returns &#8216;return test&#8217; then it works. I found out that simply adding ANY html tag in the var data to something like:</p>
<pre name="code" class="html">'
<h1>test</h1>

'</pre>
<p> causes this error.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Javascript%20AJAX%20error%20in%20IE-unknown%20runtime%20error&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fjavascript-tutorial%2Fjavascript-ajax-error-in-ie-unknown-runtime-error-187.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/javascript-tutorial/javascript-ajax-error-in-ie-unknown-runtime-error-187.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jquery Ajax .load not working</title>
		<link>http://blog.tutorialref.com/javascript-tutorial/jquery-ajax-load-not-working-182.html</link>
		<comments>http://blog.tutorialref.com/javascript-tutorial/jquery-ajax-load-not-working-182.html#comments</comments>
		<pubDate>Tue, 27 Apr 2010 18:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=182</guid>
		<description><![CDATA[Here is some code using JQuery&#8217;s .load:
<p>The following code is not correctly displaying the information though:</p>

 function revDescr(condition_id, rev_cat_id) {
    this.condition_id = condition_id;
    this.rev_cat_id = rev_cat_id;

    var pars = 'condition_id='+this.condition_id+'&#038;rev_cat_id='+this.rev_cat_id; //used by jQuery
    $("#reverse_content").load("updateRevDescrSi.php?"+pars);
 }

Here is the comparable Ajax code using regular javascript [...]]]></description>
			<content:encoded><![CDATA[<h3>Here is some code using JQuery&#8217;s .load:</h3>
<p>The following code is not correctly displaying the information though:</p>
<pre name="code" class="javascript">
 function revDescr(condition_id, rev_cat_id) {
    this.condition_id = condition_id;
    this.rev_cat_id = rev_cat_id;

    var pars = 'condition_id='+this.condition_id+'&#038;rev_cat_id='+this.rev_cat_id; //used by jQuery
    $("#reverse_content").load("updateRevDescrSi.php?"+pars);
 }
</pre>
<h3>Here is the comparable Ajax code using regular javascript (i.e. not using JQuery):</h3>
<p>The following code is working and the information is properly displayed:</p>
<pre name="code" class="javascript">
function revDescr(condition_id, rev_cat_id) {
    this.condition_id = condition_id;
    this.rev_cat_id = rev_cat_id;

    //update the reverse entry description
    xmlhttp10=GetXmlHttpObject(); //if xmlhttp object not created
    if (xmlhttp10==null) {
        alert ("Browser does not support HTTP Request");
        return;
    }

    var url="./include_ajax/updateRevDescrSi.php";
    url=url+"?condition_id="+this.condition_id;
    url=url+"&#038;rev_cat_id="+this.rev_cat_id;
    url=url+"&#038;sid="+Math.random();
    xmlhttp10.open("GET",url,true);
    xmlhttp10.onreadystatechange=stateChangedRevDescr;

    xmlhttp10.send(null);
}

function stateChangedRevDescr() {
    if (xmlhttp10.readyState==4) {
        var data = xmlhttp10.responseText;
        document.getElementById("reverse_content").innerHTML = data;
    } else  {
        document.getElementById("reverse_content").innerHTML = "Please wait...updating";
    }
}
</pre>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Jquery%20Ajax%20.load%20not%20working&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fjavascript-tutorial%2Fjquery-ajax-load-not-working-182.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/javascript-tutorial/jquery-ajax-load-not-working-182.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple DID phone numbers through Asterisk PBX system</title>
		<link>http://blog.tutorialref.com/asterisk/multiple-did-phone-numbers-through-asterisk-pbx-system-179.html</link>
		<comments>http://blog.tutorialref.com/asterisk/multiple-did-phone-numbers-through-asterisk-pbx-system-179.html#comments</comments>
		<pubDate>Wed, 21 Apr 2010 01:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asterisk]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=179</guid>
		<description><![CDATA[<p>I&#8217;d like to set up multiple DID phone numbers and then have them go through an Asterisk PBX system and then the calls should end up to a single PSTN or VOIP phone line. If the PSTN or VOIP phone line is busy then I&#8217;d like it to go to voicemail.</p>
<p></p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to set up multiple DID phone numbers and then have them go through an Asterisk PBX system and then the calls should end up to a single PSTN or VOIP phone line. If the PSTN or VOIP phone line is busy then I&#8217;d like it to go to voicemail.</p>
<p><img src="http://tutorialref.com/images/did-phone-number-asterisk-pbx-pstn-number.png" alt="DID phone numbers channeled through an Asterisk PBX system to a single PSTN or VOIP phone line diagram" /></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Multiple%20DID%20phone%20numbers%20through%20Asterisk%20PBX%20system&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fasterisk%2Fmultiple-did-phone-numbers-through-asterisk-pbx-system-179.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/asterisk/multiple-did-phone-numbers-through-asterisk-pbx-system-179.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype Business Call Forwarding: Multiple People / Members</title>
		<link>http://blog.tutorialref.com/skype/skype-call-forward-multiple-people-168.html</link>
		<comments>http://blog.tutorialref.com/skype/skype-call-forward-multiple-people-168.html#comments</comments>
		<pubDate>Fri, 16 Apr 2010 22:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://blog.tutorialref.com/?p=168</guid>
		<description><![CDATA[<p>I&#8217;m wondering how to set up call forwarding via the Business Control Panel. I posted this problem on my blog and have some snapshots on this page:
http://blog.tutorialref.com/skype/skype-call-forwarding-161.html</p>
<p>I took a snapshot here of the &#8216;People&#8217; I set up in the Business Control Panel.</p>
<p></p>
<p>I still have to sign up for the subscription.</p>
<p>I notice that on this page:
http://www.skype.com/business/features/calling/
it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m wondering how to set up call forwarding via the Business Control Panel. I posted this problem on my blog and have some snapshots on this page:<br />
<a href="http://blog.tutorialref.com/skype/skype-call-forwarding-161.html">http://blog.tutorialref.com/skype/skype-call-forwarding-161.html</a></p>
<p>I took a snapshot here of the &#8216;People&#8217; I set up in the Business Control Panel.</p>
<p><img src="http://tutorialref.com/images/skype-business-people.png" alt="Skype Business Control Panel - People profiles" /></p>
<p>I still have to sign up for the subscription.</p>
<p>I notice that on this page:<br />
<a href="http://www.skype.com/business/features/calling/">http://www.skype.com/business/features/calling/</a><br />
it states:<br />
&#8220;&#8230;To turn on call forwarding, go to Tools > Options > Calls > Call forwarding (in Windows) or Skype > Preferences > Calls (in Mac)&#8230;&#8221;</p>
<p>But the question is if I have multiple &#8216;People&#8217; then how would I call forward all of these &#8216;People&#8217; to one Boston USA number?</p>
<p>Do I need an Asterisk PBX or SIP PBX? I&#8217;m not quite certain what is a SIP PBX.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Blog.TutorialRef.com&amp;siteurl=http%3A%2F%2Fblog.tutorialref.com%2F&amp;linkname=Skype%20Business%20Call%20Forwarding%3A%20Multiple%20People%20%2F%20Members&amp;linkurl=http%3A%2F%2Fblog.tutorialref.com%2Fskype%2Fskype-call-forward-multiple-people-168.html"><img src="http://blog.tutorialref.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.tutorialref.com/skype/skype-call-forward-multiple-people-168.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
