<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[Free Hosting, Paid Hosting, Reseller Hosting & WebMasters Forum - Tutorials]]></title>
		<link>http://byet.net/</link>
		<description>Tutorials, how-tos, and guides for specific scripts and functions</description>
		<language>en</language>
		<lastBuildDate>Wed, 08 Sep 2010 05:49:18 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://byet.net/images/misc/rss.png</url>
			<title><![CDATA[Free Hosting, Paid Hosting, Reseller Hosting & WebMasters Forum - Tutorials]]></title>
			<link>http://byet.net/</link>
		</image>
		<item>
			<title>Setting Up Form Based Email ?</title>
			<link>http://byet.net/showthread.php?18793-Setting-Up-Form-Based-Email&amp;goto=newpost</link>
			<pubDate>Tue, 07 Sep 2010 13:12:22 GMT</pubDate>
			<description>Hi,

I am trying to set up a form based email as directed on the following website:

http://www.ironspider.ca/forms/nmsform.htm

however I could not locate any cgi directory on my free hosting account. Is that a limitation of free hosting. If yes then how can I set up a form for users to send emails.

Best Regards,
rseni</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am trying to set up a form based email as directed on the following website:<br />
<br />
<a href="http://www.ironspider.ca/forms/nmsform.htm" target="_blank" rel="nofollow">http://www.ironspider.ca/forms/nmsform.htm</a><br />
<br />
however I could not locate any cgi directory on my free hosting account. Is that a limitation of free hosting. If yes then how can I set up a form for users to send emails.<br />
<br />
Best Regards,<br />
rseni</div>

 ]]></content:encoded>
			<category domain="http://byet.net/forumdisplay.php?18-Tutorials">Tutorials</category>
			<dc:creator>rseni</dc:creator>
			<guid isPermaLink="true">http://byet.net/showthread.php?18793-Setting-Up-Form-Based-Email</guid>
		</item>
		<item>
			<title>my byethost site is not working :(</title>
			<link>http://byet.net/showthread.php?18766-my-byethost-site-is-not-working-(&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 15:28:20 GMT</pubDate>
			<description><![CDATA[Hey Guys!
I have a free byethost website which i set up a few weeks back ,it was working smoothly until today .


Code:
---------
I get an error Unable to connect
Firefox can't establish a connection to the server at arun.byethost18.com.
---------
I haven't changed anything on the admin side of the website for over a week.
I tried opening it with other browsers as well ,but they also couldn't load the site as well :(

Can someone give me a solution for this?
Thanks in advance. :)]]></description>
			<content:encoded><![CDATA[<div>Hey Guys!<br />
I have a free byethost website which i set up a few weeks back ,it was working smoothly until today .<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">I get an error Unable to connect<br />
Firefox can't establish a connection to the server at arun.byethost18.com.</code><hr />
</div> I haven't changed anything on the admin side of the website for over a week.<br />
I tried opening it with other browsers as well ,but they also couldn't load the site as well :(<br />
<br />
Can someone give me a solution for this?<br />
Thanks in advance. :)</div>

 ]]></content:encoded>
			<category domain="http://byet.net/forumdisplay.php?18-Tutorials">Tutorials</category>
			<dc:creator>akjedi</dc:creator>
			<guid isPermaLink="true">http://byet.net/showthread.php?18766-my-byethost-site-is-not-working-(</guid>
		</item>
		<item>
			<title>How to write timedout statement</title>
			<link>http://byet.net/showthread.php?18611-How-to-write-timedout-statement&amp;goto=newpost</link>
			<pubDate>Mon, 23 Aug 2010 10:14:24 GMT</pubDate>
			<description><![CDATA[Hi there
I am using curl to output a remote server's page as below:

<?
phpfunction output_curl($url)
{
$curl = curl_init();
  curl_setopt($curl, CURLOPT_URL, $url);
  curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($curl, CURLOPT_TIMEOUT, 15);
  $html = curl_exec($curl); // execute the curl command
  curl_close($curl); // close the connection
  return $html; // and finally, return $html
}
$url = 'http://forums.devnetwork.net/';
$data = output_curl($url);
?>


Please note that a 15 seconds time out has been settled in the code. Suppose, somehow the timout period was over and the curl couldnot completed the execution. Then after timeout period I want to show a message like this:

<?php
if($data=timedout){
echo "Sorry! Server is down, Page cannot be displayed. Please reload the page";
}else{
//do something else with the output
}
?>


my question is how I can write the timedout statement?  I think ($data=timedout) is not the correct syntax. What should be in place of "timedout" to point out an time out error?

Regards]]></description>
			<content:encoded><![CDATA[<div>Hi there<br />
I am using curl to output a remote server's page as below:<br />
<br />
&lt;?<br />
phpfunction output_curl($url)<br />
{<br />
$curl = curl_init();<br />
  curl_setopt($curl, CURLOPT_URL, $url);<br />
  curl_setopt($curl, CURLOPT_HTTPHEADER, $header);<br />
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);<br />
  curl_setopt($curl, CURLOPT_TIMEOUT, 15);<br />
  $html = curl_exec($curl); // execute the curl command<br />
  curl_close($curl); // close the connection<br />
  return $html; // and finally, return $html<br />
}<br />
$url = 'http://forums.devnetwork.net/';<br />
$data = output_curl($url);<br />
?&gt;<br />
<br />
<br />
Please note that a 15 seconds time out has been settled in the code. Suppose, somehow the timout period was over and the curl couldnot completed the execution. Then after timeout period I want to show a message like this:<br />
<br />
&lt;?php<br />
if($data=timedout){<br />
echo &quot;Sorry! Server is down, Page cannot be displayed. Please reload the page&quot;;<br />
}else{<br />
//do something else with the output<br />
}<br />
?&gt;<br />
<br />
<br />
my question is how I can write the timedout statement?  I think ($data=timedout) is not the correct syntax. What should be in place of &quot;timedout&quot; to point out an time out error?<br />
<br />
Regards</div>

 ]]></content:encoded>
			<category domain="http://byet.net/forumdisplay.php?18-Tutorials">Tutorials</category>
			<dc:creator>stockpedia</dc:creator>
			<guid isPermaLink="true">http://byet.net/showthread.php?18611-How-to-write-timedout-statement</guid>
		</item>
		<item>
			<title>PayPal users be careful!</title>
			<link>http://byet.net/showthread.php?18457-PayPal-users-be-careful!&amp;goto=newpost</link>
			<pubDate>Tue, 10 Aug 2010 01:56:30 GMT</pubDate>
			<description><![CDATA[I am not sure if you can call this video a tutorial or a warning. I decided to share it here.

Just received this link from my mate by email http://www.youtube.com/watch?v=sO6iXq6yLEA and I couldn't believe this. I thought it was a virus so I called him and he approved the information on video. 

The best way to protect your PayPal account is not to post your login email anywhere. 

Good luck guys!]]></description>
			<content:encoded><![CDATA[<div>I am not sure if you can call this video a tutorial or a warning. I decided to share it here.<br />
<br />
Just received this link from my mate by email <a href="http://www.youtube.com/watch?v=sO6iXq6yLEA" target="_blank" rel="nofollow">http://www.youtube.com/watch?v=sO6iXq6yLEA</a> and I couldn't believe this. I thought it was a virus so I called him and he approved the information on video. <br />
<br />
The best way to protect your PayPal account is not to post your login email anywhere. <br />
<br />
Good luck guys!</div>

 ]]></content:encoded>
			<category domain="http://byet.net/forumdisplay.php?18-Tutorials">Tutorials</category>
			<dc:creator>alex1095</dc:creator>
			<guid isPermaLink="true">http://byet.net/showthread.php?18457-PayPal-users-be-careful!</guid>
		</item>
	</channel>
</rss>
