<?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 for BrettShaffer.com</title>
	<atom:link href="http://brettshaffer.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://brettshaffer.com</link>
	<description>Brett&#039;s home on the web</description>
	<lastBuildDate>Sat, 06 Mar 2010 03:51:54 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Downgrade Grub 2 to Grub Legacy (Ubuntu 9.10) by Happeh</title>
		<link>http://brettshaffer.com/blog/linux/downgrade-grub-2/comment-page-1/#comment-2591</link>
		<dc:creator>Happeh</dc:creator>
		<pubDate>Sat, 06 Mar 2010 03:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=358#comment-2591</guid>
		<description>Trying the tutorial right now. Making a live usb right now since my computer is in lack of a CD drive, thanks anyway, Brett.</description>
		<content:encoded><![CDATA[<p>Trying the tutorial right now. Making a live usb right now since my computer is in lack of a CD drive, thanks anyway, Brett.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Downgrade Grub 2 to Grub Legacy (Ubuntu 9.10) by brett</title>
		<link>http://brettshaffer.com/blog/linux/downgrade-grub-2/comment-page-1/#comment-2589</link>
		<dc:creator>brett</dc:creator>
		<pubDate>Sat, 06 Mar 2010 03:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=358#comment-2589</guid>
		<description>Sorry it didn&#039;t work for you. As all internet tutorials go, proceed at  your own risk :)
Try this tutorial, see if you can get yourself back into ubuntu!
&lt;a href=&quot;https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows&quot; rel=&quot;nofollow&quot;&gt;Link.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Sorry it didn&#8217;t work for you. As all internet tutorials go, proceed at  your own risk <img src='http://brettshaffer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Try this tutorial, see if you can get yourself back into ubuntu!<br />
<a href="https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows" rel="nofollow">Link.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Downgrade Grub 2 to Grub Legacy (Ubuntu 9.10) by Happeh</title>
		<link>http://brettshaffer.com/blog/linux/downgrade-grub-2/comment-page-1/#comment-2588</link>
		<dc:creator>Happeh</dc:creator>
		<pubDate>Sat, 06 Mar 2010 03:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=358#comment-2588</guid>
		<description>I followed the tutorial, when I rebooted it loaded GRUB Legacy, I chose Ubuntu 9.10, and guess what? My computer restarted again, not booting into ubuntu. I tried recovery mode and memtest, same results.</description>
		<content:encoded><![CDATA[<p>I followed the tutorial, when I rebooted it loaded GRUB Legacy, I chose Ubuntu 9.10, and guess what? My computer restarted again, not booting into ubuntu. I tried recovery mode and memtest, same results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: PHP Sendmail and XAMPP on Windows by Judd Rogers Watts</title>
		<link>http://brettshaffer.com/blog/how-to/php-sendmail-and-xampp-on-windows/comment-page-3/#comment-2550</link>
		<dc:creator>Judd Rogers Watts</dc:creator>
		<pubDate>Wed, 03 Mar 2010 02:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=109#comment-2550</guid>
		<description>Hi:
I have XAMPP running on my IBM Netvista (P4); it works well and I am very pleased with it. I have a PERL program that uses SENDMAIL which works on my Network Solutions hosting service. I&#039;m importing it to XAMPP. 

The program opens SENDMAIL with the following code:

    my $sendmail = &quot;/usr/sbin/sendmail -t&quot;;
    open(SENDMAIL, &quot;&#124;$sendmail&quot;) or die &quot;Cannot open $sendmail: $!&quot;;

and prints the email document with lines like:
 
    print SENDMAIL $from;
    print SENDMAIL $send_to; #etc.

I believe I need to modify the PERL open statement. I have tried:

    $sendmail = &quot;C:\xampp\sendmail\sendmail&quot;; 
    open(SENDMAIL, &quot;&#124;$sendmail&quot;) or die &quot;Cannot open $sendmail: $!&quot;;
    
but had no luck. Also, I think I need an .ini file. I tried the following file:

    C:\xampp\sendmail\sendmail.ini

with this as the file contents:

    c:\xampp\sendmail\sendmail
    smtp_server=smtp.bankmanasseh.com
    smtp_port=30
    default_domain=bankmanasseh.com
    error_logfile=error.log
    auth_username=manasseh@bankmanasseh.com
    auth_password=qA10aPg25r

(bankmanasseh.com is my Network Solutions hosetd URL.) It still doesn&#039;t work. I got no errors, no error log, and no email was sent. Can you help me?

Signed: Judd Rogers Watts
            Owner of Manasseh</description>
		<content:encoded><![CDATA[<p>Hi:<br />
I have XAMPP running on my IBM Netvista (P4); it works well and I am very pleased with it. I have a PERL program that uses SENDMAIL which works on my Network Solutions hosting service. I&#8217;m importing it to XAMPP. </p>
<p>The program opens SENDMAIL with the following code:</p>
<p>    my $sendmail = &#8220;/usr/sbin/sendmail -t&#8221;;<br />
    open(SENDMAIL, &#8220;|$sendmail&#8221;) or die &#8220;Cannot open $sendmail: $!&#8221;;</p>
<p>and prints the email document with lines like:</p>
<p>    print SENDMAIL $from;<br />
    print SENDMAIL $send_to; #etc.</p>
<p>I believe I need to modify the PERL open statement. I have tried:</p>
<p>    $sendmail = &#8220;C:\xampp\sendmail\sendmail&#8221;;<br />
    open(SENDMAIL, &#8220;|$sendmail&#8221;) or die &#8220;Cannot open $sendmail: $!&#8221;;</p>
<p>but had no luck. Also, I think I need an .ini file. I tried the following file:</p>
<p>    C:\xampp\sendmail\sendmail.ini</p>
<p>with this as the file contents:</p>
<p>    c:\xampp\sendmail\sendmail<br />
    smtp_server=smtp.bankmanasseh.com<br />
    smtp_port=30<br />
    default_domain=bankmanasseh.com<br />
    error_logfile=error.log<br />
    auth_username=manasseh@bankmanasseh.com<br />
    auth_password=qA10aPg25r</p>
<p>(bankmanasseh.com is my Network Solutions hosetd URL.) It still doesn&#8217;t work. I got no errors, no error log, and no email was sent. Can you help me?</p>
<p>Signed: Judd Rogers Watts<br />
            Owner of Manasseh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix the Tick Sound in Ubuntu 9.10 by Glenn</title>
		<link>http://brettshaffer.com/blog/linux/fix-the-tick-sound-in-ubuntu-9-10/comment-page-1/#comment-2543</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Tue, 02 Mar 2010 15:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=374#comment-2543</guid>
		<description>Yes indeed! it works, thanks mob...i advice ubuntu maniacs to include this solution to their next update session...</description>
		<content:encoded><![CDATA[<p>Yes indeed! it works, thanks mob&#8230;i advice ubuntu maniacs to include this solution to their next update session&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Ubuntu / Kubuntu 9.10 Screen Brightness Problem by Luis G</title>
		<link>http://brettshaffer.com/blog/linux/fix-ubuntu-screen-brightness-problem/comment-page-1/#comment-2493</link>
		<dc:creator>Luis G</dc:creator>
		<pubDate>Fri, 26 Feb 2010 18:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=348#comment-2493</guid>
		<description>Got it working, thank you =)</description>
		<content:encoded><![CDATA[<p>Got it working, thank you =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To: PHP Sendmail and XAMPP on Windows by J</title>
		<link>http://brettshaffer.com/blog/how-to/php-sendmail-and-xampp-on-windows/comment-page-3/#comment-2481</link>
		<dc:creator>J</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=109#comment-2481</guid>
		<description>I&#039;m getting the following error when I try to launch a php file that performs an email:

Warning: mail() [function.mail]: SMTP server response: 530 SMTP authentication is required. in C:\xampp\htdocs\contact_parse.php on line 35
return_msg=Thanks , your message has been sent.

No email has been received btw.</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the following error when I try to launch a php file that performs an email:</p>
<p>Warning: mail() [function.mail]: SMTP server response: 530 SMTP authentication is required. in C:\xampp\htdocs\contact_parse.php on line 35<br />
return_msg=Thanks , your message has been sent.</p>
<p>No email has been received btw.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Ubuntu / Kubuntu 9.10 Screen Brightness Problem by brett</title>
		<link>http://brettshaffer.com/blog/linux/fix-ubuntu-screen-brightness-problem/comment-page-1/#comment-2469</link>
		<dc:creator>brett</dc:creator>
		<pubDate>Wed, 24 Feb 2010 18:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=348#comment-2469</guid>
		<description>Control+X then Y to save.
Control+O to save.</description>
		<content:encoded><![CDATA[<p>Control+X then Y to save.<br />
Control+O to save.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Ubuntu / Kubuntu 9.10 Screen Brightness Problem by brett</title>
		<link>http://brettshaffer.com/blog/linux/fix-ubuntu-screen-brightness-problem/comment-page-1/#comment-2468</link>
		<dc:creator>brett</dc:creator>
		<pubDate>Wed, 24 Feb 2010 17:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=348#comment-2468</guid>
		<description>The following command will open a window to edit the config file:

In terminal,
gksudo gedit /etc/default/grub

..then try following the instructions above.
If that command doesn&#039;t work, you can also edit it in the terminal by:
sudo nano /etc/default/grub</description>
		<content:encoded><![CDATA[<p>The following command will open a window to edit the config file:</p>
<p>In terminal,<br />
gksudo gedit /etc/default/grub</p>
<p>..then try following the instructions above.<br />
If that command doesn&#8217;t work, you can also edit it in the terminal by:<br />
sudo nano /etc/default/grub</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix Ubuntu / Kubuntu 9.10 Screen Brightness Problem by Luis G</title>
		<link>http://brettshaffer.com/blog/linux/fix-ubuntu-screen-brightness-problem/comment-page-1/#comment-2467</link>
		<dc:creator>Luis G</dc:creator>
		<pubDate>Wed, 24 Feb 2010 17:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://brettshaffer.com/?p=348#comment-2467</guid>
		<description>how do i get out of /etc/default/grub without killing the process</description>
		<content:encoded><![CDATA[<p>how do i get out of /etc/default/grub without killing the process</p>
]]></content:encoded>
	</item>
</channel>
</rss>
