<?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"
	>

<channel>
	<title>OpenCarolina</title>
	<atom:link href="http://www.opencarolina.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.opencarolina.com</link>
	<description>the Southern command of the open source revolution</description>
	<pubDate>Mon, 21 Apr 2008 17:16:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Microsft SharedView</title>
		<link>http://www.opencarolina.com/2008/03/29/microsft-sharedview/</link>
		<comments>http://www.opencarolina.com/2008/03/29/microsft-sharedview/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 10:59:58 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[hardware]]></category>

		<category><![CDATA[vista]]></category>

		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/29/microsft-sharedview/</guid>
		<description><![CDATA[This is not a Microsoft bashing blog, so when the folks from Redmond put out something good we are all over it. If you haven&#8217;t had a chance to use Microsoft SharedView, you might want to try it out. It is a free application but it is still in beta. Recently I have been working [...]]]></description>
			<content:encoded><![CDATA[<p>This is not a Microsoft bashing blog, so when the folks from Redmond put out something good we are all over it. If you haven&#8217;t had a chance to use Microsoft SharedView, you might want to try it out. It is a free application but it is still in beta. Recently I have been working on a project where I need to collaborate with a buddy of mine in San Diego. We have been using SharedView to work together on his Vista PC, but I was unable to share my XP box with him. My screen would be gray instead of showing my desktop. Turns out the problem has to do with my Nvidia video card and hardware acceleration. Here is how to fix the problem:<code><br />
Click on Start menu &gt; Control Panel &gt; Display &gt; Settings &gt; Advanced &gt; Troubleshoot &gt; Move the slider to "None" to disable hardware acceleration</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/29/microsft-sharedview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create a new MySQL database from the command line</title>
		<link>http://www.opencarolina.com/2008/03/28/create-a-new-mysql-database-from-the-command-line/</link>
		<comments>http://www.opencarolina.com/2008/03/28/create-a-new-mysql-database-from-the-command-line/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 16:05:42 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/28/create-a-new-mysql-database-from-the-command-line/</guid>
		<description><![CDATA[Set a root password if none exists
$ mysqladmin -u root password &#60;new_password&#62;

Login to MySQL
$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 16 to server version: 5.0.22-Debian_0ubuntu6.06-log
Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.
mysql&#62; CREATE DATABASE databasename;
Query OK, [...]]]></description>
			<content:encoded><![CDATA[<p>Set a root password if none exists<br />
<code>$ mysqladmin -u root password &lt;new_password&gt;<br />
</code></p>
<p>Login to MySQL<br />
<code>$ mysql -u root -p<br />
Enter password: <type><br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 16 to server version: 5.0.22-Debian_0ubuntu6.06-log</type><br />
Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.<br />
mysql&gt; CREATE DATABASE databasename;<br />
Query OK, 1 row affected (0.00 sec)<br />
mysql&gt; GRANT ALL PRIVILEGES ON databasename.* TO &#8220;username&#8221;@&#8221;hostname&#8221; IDENTIFIED BY &#8220;password&#8221;;<br />
Query OK, 0 rows affected (0.00 sec)<br />
mysql&gt; FLUSH PRIVILEGES;<br />
Query OK, 0 rows affected (0.01 sec)<br />
mysql&gt; EXIT<br />
Bye</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/28/create-a-new-mysql-database-from-the-command-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XHTML Validation Tip</title>
		<link>http://www.opencarolina.com/2008/03/27/xhtml-validation-tip/</link>
		<comments>http://www.opencarolina.com/2008/03/27/xhtml-validation-tip/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 20:44:16 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/27/xhtml-validation-tip/</guid>
		<description><![CDATA[Just a tip to all you aspiring web designers, please use lower case when creating web pages. I just had to clean up a bunch of HTML with a mix of UPPER and lower case tag names and it was not fun. The World Wide Web Consortium (W3C) had to say on the matter:
 Element [...]]]></description>
			<content:encoded><![CDATA[<p>Just a tip to all you aspiring web designers, please use lower case when creating web pages. I just had to clean up a bunch of HTML with a mix of UPPER and lower case tag names and it was not fun. The World Wide Web Consortium (W3C) had to say on the matter:</p>
<blockquote><p> <strong>Element and attribute names must be in lower case</strong><br />
XHTML documents must use lower case for all HTML element and attribute names. This difference is necessary because XML is case-sensitive e.g. &lt;li&gt; and &lt;LI&gt; are different tags.</p></blockquote>
<p>If you are unsure about your code, test it using these websites and save your fellow developers from having to clean up your mess:</p>
<p>HTML Validator: <a href="http://validator.w3.org/">http://validator.w3.org</a><br />
CSS Validator: <a href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/27/xhtml-validation-tip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bluetooth file transfer on Ubuntu</title>
		<link>http://www.opencarolina.com/2008/03/26/bluetooth-file-transfer-on-ubuntu/</link>
		<comments>http://www.opencarolina.com/2008/03/26/bluetooth-file-transfer-on-ubuntu/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 11:03:50 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bluetooth]]></category>

		<category><![CDATA[hardware]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/26/bluetooth-file-transfer-on-ubuntu/</guid>
		<description><![CDATA[Configuration
sudo apt-get install obexftp obexpushd gnome-bluetooth bluez-utils
sudo pico /etc/bluetooth/hcid.conf
change passkey from the default &#8220;1234&#8243; to your own passkey
sudo pico /etc/rc.local
Add the following on the line before &#8220;exit 0&#8243;
hciconfig hci0 inqmode 0
Restart the system
Sending Files from an Ubuntu PC to Another Device
The easiest way to send files from your PC to a Bluetooth device is to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Configuration</strong><br />
<code>sudo apt-get install obexftp obexpushd gnome-bluetooth bluez-utils</code><br />
<code>sudo pico /etc/bluetooth/hcid.conf</code><br />
change passkey from the default &#8220;1234&#8243; to your own passkey<br />
<code>sudo pico /etc/rc.local</code><br />
Add the following on the line before &#8220;exit 0&#8243;<br />
<code>hciconfig hci0 inqmode 0</code><br />
Restart the system</p>
<p><strong>Sending Files from an Ubuntu PC to Another Device</strong><br />
The easiest way to send files from your PC to a Bluetooth device is to create a desktop shortcut onto which you can drag and drop files. Follow these steps to create the shortcut:</p>
<ul>
<li>Right-click the desktop, and click Create Launcher.</li>
<li>In the Name field, type something like &#8220;Send file via Bluetooth&#8221;.</li>
<li>In the Command field, type &#8220;gnome-obex-send&#8221;.</li>
<li>You can also choose to give the new shortcut an appropriate icon. Click the No Icon button, and then type the following into the Path field: /usr/share/icons/gnome/48&#215;48/stock/io/stock_bluetooth.png</li>
<li>Click OK.</li>
</ul>
<p>After you’ve created the icon, you can send files as follows:</p>
<ul>
<li>Drag and drop a file onto the launcher (icon) you just created.</li>
<li>The Choose Bluetooth Device dialog box appears. Click Refresh to make the computer detect any nearby Bluetooth devices. This may take a minute or two. Remember that your device will need to be set to be “visible,” so that other Bluetooth devices can automatically detect it.</li>
<li>Select the device to which you want to transfer the file, and then click OK.</li>
<li>Check the device to see if the file transfer needs to be authorized. If the devices are paired, the transfer might take place automatically.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/26/bluetooth-file-transfer-on-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Connecting to an Oracle 8 database using PHP4 is not for mere mortals</title>
		<link>http://www.opencarolina.com/2008/03/24/connecting-to-an-oracle-8-database-using-php4-is-not-for-mere-mortals/</link>
		<comments>http://www.opencarolina.com/2008/03/24/connecting-to-an-oracle-8-database-using-php4-is-not-for-mere-mortals/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 14:02:54 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[oracle8]]></category>

		<category><![CDATA[oracle9]]></category>

		<category><![CDATA[php4]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/24/connecting-to-an-oracle-8-database-using-php4-is-not-for-mere-mortals/</guid>
		<description><![CDATA[Connecting to an Oracle 8 database using PHP4 is no simple task. Before calling me a moron for not using the most recent versions of these applications, you should know that I was attempting to create a mock production environment so I could deploy this solution on an existing server. Using a virtual machine to [...]]]></description>
			<content:encoded><![CDATA[<p>Connecting to an Oracle 8 database using PHP4 is no simple task. Before calling me a moron for not using the most recent versions of these applications, you should know that I was attempting to create a mock production environment so I could deploy this solution on an existing server. Using a virtual machine to test stuff like this would be a wise thing to do since you can roll the entire system back if you mess up, just a tip.</p>
<p>What you need:</p>
<ul>
<li>A crusty, old Oracle 8 database server (might also work with 8.x)</li>
<li>An equally crusty, old version of ApacheFriends <a href="http://sourceforge.net/project/showfiles.php?group_id=61776&amp;package_id=89552">XAMPP 1.4.4</a></li>
<li>A slightly less crusty, but almost as old <a href="http://www.oracle.com/technology/software/products/oracle9i/htdocs/winsoft.html">Oracle 9i Database Release 2 Client</a></li>
<li>Strongly Recommended - A fresh Windows XP virtual machine (VM)</li>
</ul>
<p>Honestly, it isn&#8217;t really that hard once you know which version of the Oracle client to use. Here is a rundown of each Oracle Client:</p>
<ul>
<li>Oracle 8 - PHP complains</li>
<li style="font-style: italic; font-weight: bold">Oracle 9 - The only one that none of the components bitch about</li>
<li>Oracle 10 - Oracle complains</li>
<li>Oracle 11 - Oracle complains</li>
</ul>
<p>Now for the steps:</p>
<ul>
<li>Fire up your Windows XP VM (Be sure to use &#8220;Bridged&#8221;, not &#8220;NAT&#8221; if you are using VMWare)</li>
<li>Install XAMPP</li>
<li>Install Oracle 9i R2 Client using the default install location settings (Be sure to select the &#8220;Runtime&#8221; installation type). I canceled the &#8220;Oracle Net Configuration Assistant&#8221; because I am not set up for that.</li>
<li>Reboot the computer to make sure the PHP _SERVER[&#8221;Path&#8221;] and _ENV[&#8221;Path&#8221;] variables get updated.</li>
<li>Create a tnsnames.ora file in the folder &#8220;C:\oracle\ora92\network\ADMIN&#8221; and include an entry for the server you want to access. Obviously, modify the information below to match your connection settings, here is an example:  db=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=PROTOCOL=TCP)(Host=hostname)(Port=1521)))(CONNECT_DATA=(SID=db)))</li>
<li>Open the Command Prompt and type: &#8220;tnsping db&#8221;  If you cannot use the tnsping command, make sure your Oracle 9 installation is listed at the beginning of the &#8220;Path&#8221; variable for Windows (Contol Panel &gt; System &gt; Environment Variables). Ensure you have something like &#8220;C:\oracle\ora92\bin&#8221;. Don&#8217;t proceed until tnsping returns something to the effect of &#8220;Blah Blah&#8230;OK (10 msec)&#8221;. If you get &#8220;TNS-03505: Failed to resolve name&#8221;, check your tnsnames.ora file for errors.</li>
<li>Now you need to edit the php.ini file. Make sure the line starting with extension_dir has the correct path to your extension directory. For example: <code>extension_dir = C:\xampp\php\extensions\</code></li>
<li>Also in the php.ini file,uncomment the line &#8220;extension=php_oci8.dll&#8221; (delete the semi-colon) to activate the Oracle extension in PHP. You might have multiple php.ini files on your system, just make sure you update all of them.</li>
<li>Start the Apache web server. If you get errors on start up, you might have missed a step.</li>
<li>Use the phpinfo link on your local ApacheFriends start page or create a phpinfo() script of your own to display the current php configuration. If Oracle is enabled you should see a section like this:<br />
oci8<br />
OCI8 Support     enabled<br />
Revision     $Revision: 1.183.2.12 $</li>
<li>The very last trick is that you have to use the deprecated php4 oci commands rather than the shiny new php5 ones. From what I have seen so far oci* commands work, oci_* commands aren&#8217;t compatible with php4.</li>
</ul>
<p>Try running this first to make sure everything is working:</p>
<p><code>&lt;?php<br />
$conn = OCILogon("username", "password", "db");<br />
if ($conn){<br />
print "Connection Established. ";<br />
}<br />
OCILogoff($conn);<br />
print "Connection Closed.";<br />
?&gt;</code></p>
<p>Here is a fancier example which outputs the results of a select statement into an html table:</p>
<p><code>&lt;?php<br />
$conn = OCILogon("username", "password", "db");<br />
$sql = "&lt;PUT A SELECT STATEMENT IN HERE&gt;";<br />
$stmt = OCIParse($conn, $sql);<br />
OCIExecute($stmt);<br />
$rows = OCIFetchstatement($stmt,$results);<br />
$keys = array_keys($results);<br />
$table =  "&lt;table&gt;\n &lt;TR&gt;\n";<br />
foreach($keys as $key)<br />
{<br />
$table .= "  &lt;TH&gt;$key&lt;/TH&gt;\n";<br />
}<br />
$table .= " &lt;/TR&gt;\n";<br />
for($i=0;$i&lt;$rows;$i++)<br />
{<br />
$table .= " &lt;TR&gt;";<br />
foreach($results as $spalte)<br />
{<br />
$data = $spalte[$i];<br />
$table .= "  &lt;TD&gt;$data&lt;/TD&gt;";<br />
}<br />
$table .=" &lt;/TR&gt;";<br />
}<br />
echo $table;<br />
OCILogoff($conn);<br />
?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/24/connecting-to-an-oracle-8-database-using-php4-is-not-for-mere-mortals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Making WordPress URLs pretty</title>
		<link>http://www.opencarolina.com/2008/03/23/making-wordpress-urls-pretty/</link>
		<comments>http://www.opencarolina.com/2008/03/23/making-wordpress-urls-pretty/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 12:19:47 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[apache2]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/23/making-wordpress-urls-pretty/</guid>
		<description><![CDATA[Are your hideous WordPress URLs frightening away your readers?  Here is how to tame those unruly URLs:

 Create a .htaccess file in your main wordpress folder (the same one as index.php)
Make the .htaccess file writeable
chmod 777 .htaccess
Ensure mod-rewrite is enabled for Apache2 (/etc/apache2/mods-enabled). There should be a symlink to /etc/apache2/mods-available/rewrite.load. If not, create it.
sudo [...]]]></description>
			<content:encoded><![CDATA[<p>Are your hideous WordPress URLs frightening away your readers?  Here is how to tame those unruly URLs:</p>
<ul>
<li> Create a .htaccess file in your main wordpress folder (the same one as index.php)</li>
<li>Make the .htaccess file writeable<br />
<code>chmod 777 .htaccess</code></li>
<li>Ensure mod-rewrite is enabled for Apache2 (/etc/apache2/mods-enabled). There should be a symlink to /etc/apache2/mods-available/rewrite.load. If not, create it.<br />
<code>sudo a2enmod rewrite</code></li>
<li>Restart Apache2<br />
<code>sudo apache2ctl restart</code></li>
<li><code></code>Login to your WordPress admin. Go to &#8220;Options&#8221; &gt; &#8220;Permalinks&#8221; &gt; select the one you want. (I chose &#8220;Date and name based&#8221; e.g. &#8220;http://www.example.com/2007/11/07/sample-post/&#8221;)</li>
<li>Reset the .htaccess file permissions<br />
<code>chmod 644 .htaccess</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/23/making-wordpress-urls-pretty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Extract a tar.gz file from the command line</title>
		<link>http://www.opencarolina.com/2008/03/22/extract-a-targz-file-from-the-command-line/</link>
		<comments>http://www.opencarolina.com/2008/03/22/extract-a-targz-file-from-the-command-line/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 17:08:33 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/22/extract-a-targz-file-from-the-command-line/</guid>
		<description><![CDATA[I only do this like once every six months, so I have not memorized the man page. Here is how to extract a tar.gz file from the Linux command line.
tar zxf important.tar.gz
]]></description>
			<content:encoded><![CDATA[<p>I only do this like once every six months, so I have not memorized the man page. Here is how to extract a tar.gz file from the Linux command line.</p>
<p><code>tar zxf important.tar.gz</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/22/extract-a-targz-file-from-the-command-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP Photo Changer</title>
		<link>http://www.opencarolina.com/2008/03/21/php-photo-changer/</link>
		<comments>http://www.opencarolina.com/2008/03/21/php-photo-changer/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 11:19:35 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/21/php-photo-changer/</guid>
		<description><![CDATA[The header picture on this website changes based on the time of day. You can change your website photo automagically throughout the day too. It isn&#8217;t very hard with a few photos and a bit of PHP. This is similar to what Google does on their customized home pages.
&#60;?php
// This neat piece of code changes [...]]]></description>
			<content:encoded><![CDATA[<p>The header picture on this website changes based on the time of day. You can change your website photo automagically throughout the day too. It isn&#8217;t very hard with a few photos and a bit of PHP. This is similar to what Google does on their customized home pages.</p>
<p><code>&lt;?php<br />
// This neat piece of code changes the header image<br />
// based on the the time of day, EST.<br />
date_default_timezone_set("America/New_York");<br />
$hour = date("G");<br />
if ($hour &lt; 6){<br />
$pic = "twentyfour.jpg";<br />
}elseif ($hour &lt; 9){<br />
$pic = "six.jpg";<br />
}elseif ($hour &lt; 12){<br />
$pic = "nine.jpg";<br />
}elseif ($hour &lt; 15){<br />
$pic = "twelve.jpg";<br />
}elseif ($hour &lt; 18){<br />
$pic = "fifteen.jpg";<br />
}elseif ($hour &lt; 21){<br />
$pic = "eighteen.jpg";<br />
}elseif ($hour &lt; 24){<br />
$pic = "twentyone.jpg";<br />
}<br />
?&gt;<br />
&lt;img src="./images/&lt;?php echo $pic; ?&gt;"/&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/21/php-photo-changer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL Workbench</title>
		<link>http://www.opencarolina.com/2008/03/20/mysql-workbench/</link>
		<comments>http://www.opencarolina.com/2008/03/20/mysql-workbench/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 14:28:06 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[mysql workbench]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/20/mysql-workbench/</guid>
		<description><![CDATA[So you have to design a MySQL database for your incredible new application. What tool do you use to do the initial diagramming? Pencil/Paper, whiteboard, Microsoft Visio?
Well the folks at MySQL would like you to consider a visual database design tool called MySQL Workbench. The first release candidate showed up on March 17, 2008 and [...]]]></description>
			<content:encoded><![CDATA[<p>So you have to design a MySQL database for your incredible new application. What tool do you use to do the initial diagramming? Pencil/Paper, whiteboard, Microsoft Visio?</p>
<p>Well the folks at MySQL would like you to consider a visual database design tool called <a href="http://dev.mysql.com/workbench/">MySQL Workbench</a>. The first release candidate showed up on March 17, 2008 and from what I have seen so far, it is the best tool available for designing MySQL databases. There are two editions Community Edition (OSS) and Standard Edition. I have been using the Community Edition for a project I am working on now and it is a great upgrade to MS Visio.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/20/mysql-workbench/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Need to put some HTML on a Joomla website?</title>
		<link>http://www.opencarolina.com/2008/03/19/need-to-put-some-html-on-a-joomla-website/</link>
		<comments>http://www.opencarolina.com/2008/03/19/need-to-put-some-html-on-a-joomla-website/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 01:36:42 +0000</pubDate>
		<dc:creator>blake</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://www.opencarolina.com/2008/03/19/need-to-put-some-html-on-a-joomla-website/</guid>
		<description><![CDATA[Maybe you want to add PayPal, some cool Google map, or vacation pics from flickr but Joomla is being a jerk and stripping out your custom code. Here is what to do:
Switch off the TinyMCE editor and write raw HTML (Site &#62; User Manager &#62; click on the user you want to change &#62; User [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe you want to add PayPal, some cool Google map, or vacation pics from flickr but Joomla is being a jerk and stripping out your custom code. Here is what to do:<br />
Switch off the TinyMCE editor and write raw HTML (Site &gt; User Manager &gt; click on the user you want to change &gt; User Editor &gt; select &#8220;No WYSIWYG Editor&#8221; &gt; Save)<br />
Now you can edit your content without annoying Joomla interfering. After adding your custom content you can turn TinyMCE back on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opencarolina.com/2008/03/19/need-to-put-some-html-on-a-joomla-website/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
