<?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>Netflow Developments &#187; external</title>
	<atom:link href="http://blog.netflowdevelopments.com/tag/external/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.netflowdevelopments.com</link>
	<description>The latest and greatest happenings in the world of Science, Technology and everything else Geek</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:48:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Postfix not accepting external emails</title>
		<link>http://blog.netflowdevelopments.com/2011/12/28/postfix-not-accepting-external-emails/</link>
		<comments>http://blog.netflowdevelopments.com/2011/12/28/postfix-not-accepting-external-emails/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 03:46:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux / Freebsd]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[outside]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[receive]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=793</guid>
		<description><![CDATA[So another fun little learning lesson today with the new mail server..  I could send and receive emails internally no problem(sending from me@me.com to you@me.com) but the moment I wanted to send something from another mail server to the new one well it wasn&#8217;t having any of it. As with all things there are always [...]]]></description>
			<content:encoded><![CDATA[<p>So another fun little learning lesson today with the new mail server..  I could send and receive emails internally no problem(sending from me@me.com to you@me.com) but the moment I wanted to send something from another mail server to the new one well it wasn&#8217;t having any of it.</p>
<p>As with all things there are always a million reasons for something to go wrong and mine was reason #445,002 <img src='http://blog.netflowdevelopments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I ended up reading <a href="http://ubuntuforums.org/showthread.php?t=842937">a thread</a> that had enough similarities as me to open my eyes to what was going on.  I had told postfix to have the smtp server on port 10587 for security reasons and in the end the MTA wasn&#8217;t setup to connect to that port.. Booerns.  In the end I just said &#8216;stuff it&#8217; and put it back to the default settings, so now my smtp server is running on the default 587 port and everything is working peachy keen.  So if this is happening to you, go into your /etc/postfix/master.cf and anywhere you changed smoething like:</p>
<p>smtp inet n &#8211; n &#8211; - smtpd</p>
<p>into:</p>
<p>10587 inet n &#8211; n &#8211; - smtpd</p>
<p>go and change it back to the way it was and see if that resolves your issue</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2011/12/28/postfix-not-accepting-external-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use php includes inside of a wordpress post?</title>
		<link>http://blog.netflowdevelopments.com/2011/04/01/how-to-use-php-includes-inside-of-a-wordpress-post/</link>
		<comments>http://blog.netflowdevelopments.com/2011/04/01/how-to-use-php-includes-inside-of-a-wordpress-post/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 15:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[php include]]></category>
		<category><![CDATA[ssi]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=643</guid>
		<description><![CDATA[Unfortunately traditional Server side includes don&#8217;t work for loading external pages on remote domains/servers, or at least not that i&#8217;ve been able to find so far.  After a bit of research I&#8217;ve found two separate solutions to this: 1.) The first solution is the more secure solution and is specifically for scenarios where you, the [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately traditional Server side includes don&#8217;t work for loading external pages on remote domains/servers, or at least not that i&#8217;ve been able to find so far.  After a bit of research I&#8217;ve found two separate solutions to this:</p>
<h2>1.)</h2>
<p>The first solution is the more secure solution and is specifically for scenarios where you, the admin, or registered users of your blog <strong>only</strong> will be able to access the php includes.  You need to install the wordpress plugin: php-execution and then put the following code into your post:</p>
<p>&lt;?<br />
$a = file_get_contents(&#8220;http://www.somedomain.com/file.php&#8221;);<br />
echo ($a);<br />
?&gt;</p>
<h2>2.)</h2>
<p>This next example is far less secure as php execution will be available to everyone hitting your website.  You will need to install the <strong>Exec-PHP</strong> plugin for this and insert the following code into your post:</p>
<p>&lt;?php $a = file_get_contents(&#8216;http://www.somedomain.com/file.php&#8217;); echo ($a); ?&gt;</p>
<p>&nbsp;</p>
<p>Hope that helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2011/04/01/how-to-use-php-includes-inside-of-a-wordpress-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a USB External NTFS Hard Drive that won&#8217;t mount in Ubuntu</title>
		<link>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/</link>
		<comments>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 07:53:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux / Freebsd]]></category>
		<category><![CDATA[can't]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[failed]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usb]]></category>
		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=419</guid>
		<description><![CDATA[So I was having a problem with my external USB hard drive lately.  The USB connectors on this LG laptop are a bit shady so things get disconnected if you bump them and this would happen with my hard drive.. The problem being that if the Hard drive was disconnected like this and not properlyy [...]]]></description>
			<content:encoded><![CDATA[<p>So I was having a problem with my external USB hard drive lately.  The USB connectors on this LG laptop are a bit shady so things get disconnected if you bump them and this would happen with my hard drive.. The problem being that if the Hard drive was disconnected like this and not properlyy unmounted that it wouldn&#8217;t come back up 50% of the time when I plugged it back in.</p>
<p>It would show up when I run fdisk -l and in dmesg but when I try to mount the drive it would return with the error &#8216;special device does not exist&#8217;.  The only way I could get it back online was to reboot the machine, until now! <img src='http://blog.netflowdevelopments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tried installed usbmount and pmount but neither fixed the problem.</p>
<p>After some research I discovered the MAKEDEV command.  So what I tried was to run MAKEDEV from inside of /dev/ and it would give me an error: &#8220;.udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.&#8221;</p>
<p>So I went on and looked into /dev/.udev/ and found a /failed/ directory which had a blocked file in there referring to the hard drive that wasn&#8217;t mounting.  For some reason I ran the MAKEDEV [device] command here and VIOLA, it worked.  Apparently it just needs to be run in a directory that doesn&#8217;t have a .udev subdirectory in it</p>
<p>So for me the command was MAKEDEV /dev/sdd and it created sdd1 through sdd10.  Not sure what the other ones are for but I was able to mount sdd1 properly and access my hard drive.  I mean this is a pretty backwards work around but I can access my hard drive without rebooting, so I&#8217;m good to go!</p>
<p>So to sum it up, if you have a device that isn&#8217;t mounting properly but you can see the device with #sudo fdisk -l then:</p>
<ol>
<li> try creating a temporary directory for your new mount points</li>
<li>Then run MAKEDEV [device] inside of that directory.  So if the partition your trying to mount is say /dev/sda1 then you&#8217;ll want to run MAKEDEV /dev/sda and hopefully that gives you access without needing to reboot.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

