<?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>Ryan Coughlin &#124; Web and Graphic Designer &#187; WordPress</title>
	<atom:link href="http://www.ryancoughlin.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryancoughlin.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Mar 2010 00:07:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>NextGEN Gallery not loading CSS/Javascript</title>
		<link>http://www.ryancoughlin.com/2009/10/01/nextgen-gallery-not-loading-cssjavascript/</link>
		<comments>http://www.ryancoughlin.com/2009/10/01/nextgen-gallery-not-loading-cssjavascript/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 20:02:34 +0000</pubDate>
		<dc:creator>Ryan Coughlin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[nextgen]]></category>

		<guid isPermaLink="false">http://www.ryancoughlin.com/?p=550</guid>
		<description><![CDATA[Is your NextGEN Gallery showing images? But not loading the CSS and Javascript? Find the solution below.
I have been working on this project where the client wanted to be able to upload and install image galleries, so I have worked with this one and I love it: mhttp://alexrabe.de/wordpress-plugins/nextgen-gallery/
All was smooth and working until, I removed [...]


Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/09/16/wordpress-login-page-blank/' rel='bookmark' title='Permanent Link: WordPress Login Page Blank'>WordPress Login Page Blank</a> <small>Trying to login to your WordPress blog and after submit...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Is your NextGEN Gallery showing images? But not loading the CSS and Javascript? Find the solution below.</p>
<p>I have been working on this project where the client wanted to be able to upload and install image galleries, so I have worked with this one and I love it: mhttp://alexrabe.de/wordpress-plugins/nextgen-gallery/</p>
<p>All was smooth and working until, I removed this one line of code from my header.php in my WordPress theme directory.</p>
<pre class="php" title="code">&lt;?php wp_head() ?&gt;</pre>
<p>Without this function in your header.php the gallery does not know where to insert the CSS/JavaScript files to create a fully functioned gallery. <strong>Be sure that it is placed before your closing tag.</strong></p>
<p>To find out more information on the  function check out <a rel="external" href="http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head">this</a></p>
<p>All in all, be sure if you are running any type of plugin where they need to insert code upon plugin creation that you have that line within your head element of the page.</p>


<p>Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/09/16/wordpress-login-page-blank/' rel='bookmark' title='Permanent Link: WordPress Login Page Blank'>WordPress Login Page Blank</a> <small>Trying to login to your WordPress blog and after submit...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ryancoughlin.com/2009/10/01/nextgen-gallery-not-loading-cssjavascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Login Page Blank</title>
		<link>http://www.ryancoughlin.com/2009/09/16/wordpress-login-page-blank/</link>
		<comments>http://www.ryancoughlin.com/2009/09/16/wordpress-login-page-blank/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:17:19 +0000</pubDate>
		<dc:creator>Ryan Coughlin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[blank]]></category>
		<category><![CDATA[login]]></category>

		<guid isPermaLink="false">http://www.ryancoughlin.com/?p=520</guid>
		<description><![CDATA[Trying to login to your WordPress blog and after submit you get a blank login page? Also trying to access the wp-admin area with a blank screen and no errors?
This problem has happened to me many times with my personal site as well as client sites. After trying different things and looking at other articles [...]


Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/09/14/display-wordpress-posts-on-a-page/' rel='bookmark' title='Permanent Link: Display wordpress posts on a page'>Display wordpress posts on a page</a> <small>I have been searching for various articles and help to...</small></li>
<li><a href='http://www.ryancoughlin.com/2009/10/01/nextgen-gallery-not-loading-cssjavascript/' rel='bookmark' title='Permanent Link: NextGEN Gallery not loading CSS/Javascript'>NextGEN Gallery not loading CSS/Javascript</a> <small>Is your NextGEN Gallery showing images? But not loading the...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Trying to login to your WordPress blog and after submit you get a blank login page? Also trying to access the wp-admin area with a blank screen and no errors?</p>
<p>This problem has happened to me many times with my personal site as well as client sites. After trying different things and looking at other articles what worked for me was to:</p>
<ul>
<li>First log out using this url: http://www.yourdomain.com/wp-login.php?loggedout=true</li>
<li>Rename your plugins folder to &#8220;_plugins&#8221; to back them up and create a new folder called &#8220;plugins&#8221; &#8211; this insures that there is on conflict with any plugins that are being run</li>
<li>Replace your current wp-login.php file with a new one</li>
<li>NOTE: You might get a header php error, and if you do follow this <a href="http://codex.wordpress.org/FAQ_Troubleshooting#How_do_I_solve_the_Headers_already_sent_warning_problem.3F" target="_blank">article</a> posted at WordPress</li>
</ul>
<p>Hopefully those steps can fix this problem for you. If something else works for you, feel free to post the results.</p>


<p>Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/09/14/display-wordpress-posts-on-a-page/' rel='bookmark' title='Permanent Link: Display wordpress posts on a page'>Display wordpress posts on a page</a> <small>I have been searching for various articles and help to...</small></li>
<li><a href='http://www.ryancoughlin.com/2009/10/01/nextgen-gallery-not-loading-cssjavascript/' rel='bookmark' title='Permanent Link: NextGEN Gallery not loading CSS/Javascript'>NextGEN Gallery not loading CSS/Javascript</a> <small>Is your NextGEN Gallery showing images? But not loading the...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ryancoughlin.com/2009/09/16/wordpress-login-page-blank/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
