<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.pedroposada.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Pedro Posada&#039;s Blog</title>
 <link>http://www.pedroposada.com/category/blog/internalservererror500</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Upload large image files to drupal</title>
 <link>http://www.pedroposada.com/blog/upload-large-image-files-drupal.html</link>
 <description>&lt;p&gt;I am building a website for a photographer. I want the photographer to be able to do bulk or mass image uploads. Usually the images are very big files around 3MB to 5Mb each. I figured the best way to do this was by using image and image_pub modules. This way the photographer can use the Gallery Remote Java Client to create galleries and preview bulk uploads.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.pedroposada.com/blog/upload-large-image-files-drupal.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.pedroposada.com/blog/upload-large-image-files-drupal.html#comments</comments>
 <category domain="http://www.pedroposada.com/category/blog/drupal-recipe">drupal recipe</category>
 <category domain="http://www.pedroposada.com/category/blog/internalservererror500">internal server error 500</category>
 <pubDate>Fri, 07 Aug 2009 14:48:05 -0400</pubDate>
 <dc:creator>pedro</dc:creator>
 <guid isPermaLink="false">383 at http://www.pedroposada.com</guid>
</item>
<item>
 <title>Clean URLs was causing Error 500 - Internal server error</title>
 <link>http://www.pedroposada.com/blog/clean-urls-was-causing-error-500-internal-server-error.html</link>
 <description>&lt;p&gt;I was getting the anoying &lt;strong&gt;Error 500 - Internal server error&lt;/strong&gt; on my 1and1 home shared hosting again.&lt;/p&gt;
&lt;p&gt;I tried all the fixes on this site but still not getting passed the error page.&lt;/p&gt;
&lt;p&gt;Then I realized that the front page of my site was working fine but the resto of the pages weren&#039;t. So I figured that there might be a problem with the clean URLs. I checked my &lt;strong&gt;.htaccess&lt;/strong&gt; file and there it was.&lt;/p&gt;
&lt;pre&gt;
# RewriteBase /
&lt;/pre&gt;&lt;p&gt;I uncommented that line.&lt;/p&gt;
&lt;pre&gt;
RewriteBase /
&lt;/pre&gt;&lt;p&gt;This solved the problem.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
</description>
 <comments>http://www.pedroposada.com/blog/clean-urls-was-causing-error-500-internal-server-error.html#comments</comments>
 <category domain="http://www.pedroposada.com/category/blog/.htaccess">.htaccess</category>
 <category domain="http://www.pedroposada.com/category/blog/internalservererror500">internal server error 500</category>
 <pubDate>Fri, 03 Apr 2009 17:20:48 -0400</pubDate>
 <dc:creator>pedro</dc:creator>
 <guid isPermaLink="false">60 at http://www.pedroposada.com</guid>
</item>
<item>
 <title>php.ini directives</title>
 <link>http://www.pedroposada.com/blog/php.ini-directives.html</link>
 <description>&lt;p&gt;These are some of the directive you can use to have your website work a bit better in terms of uploading files and showing really long pages like modules page and blocks page in the admin section of drupal.&lt;/p&gt;
&lt;p&gt;Create a &lt;code&gt;php.ini&lt;/code&gt; file in your site&#039;s root folder and copy and paste this code into it.&lt;/p&gt;
&lt;pre&gt;
register_globals = Off
memory_limit = 96M
post_max_size = 100M
upload_max_filesize = 100M
max_execution_time = 1000
max_input_time = 1000 &lt;/pre&gt;&lt;p&gt;You can also check this link for more good info on how to fix server memory problems. &lt;a href=&quot;http://drupal.org/node/76156&quot; title=&quot;http://drupal.org/node/76156&quot;&gt;http://drupal.org/node/76156&lt;/a&gt;&lt;/p&gt;
</description>
 <comments>http://www.pedroposada.com/blog/php.ini-directives.html#comments</comments>
 <category domain="http://www.pedroposada.com/category/blog/internalservererror500">internal server error 500</category>
 <category domain="http://www.pedroposada.com/category/blog/phpscripts">php scripts</category>
 <pubDate>Sun, 26 Oct 2008 20:05:33 -0400</pubDate>
 <dc:creator>pedro</dc:creator>
 <guid isPermaLink="false">46 at http://www.pedroposada.com</guid>
</item>
<item>
 <title>Error 500 - Internal server error (1and1 hosting)</title>
 <link>http://www.pedroposada.com/blog/error-500-internal-server-error-%281and1-hosting%29.html</link>
 <description>&lt;p&gt;Copy and paste the following line at the beginning of your .htaccess file:&lt;/p&gt;
&lt;pre&gt;
##
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
##&lt;/pre&gt;&lt;p&gt;go to &lt;a href=&quot;http://drupal.org/node/232773&quot; title=&quot;http://drupal.org/node/232773&quot;&gt;http://drupal.org/node/232773&lt;/a&gt; for the complete drupal forum post.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ADDITIONAL IMPORTANT INFORMATION  &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.pedroposada.com/blog/error-500-internal-server-error-%281and1-hosting%29.html&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.pedroposada.com/blog/error-500-internal-server-error-%281and1-hosting%29.html#comments</comments>
 <category domain="http://www.pedroposada.com/category/blog/.htaccess">.htaccess</category>
 <category domain="http://www.pedroposada.com/category/blog/links">interesting links</category>
 <category domain="http://www.pedroposada.com/category/blog/internalservererror500">internal server error 500</category>
 <pubDate>Mon, 12 May 2008 17:18:41 -0400</pubDate>
 <dc:creator>pedro</dc:creator>
 <guid isPermaLink="false">33 at http://www.pedroposada.com</guid>
</item>
</channel>
</rss>
