<?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"
	>
<channel>
	<title>Comments on: Install phpPgAdmin on Ubuntu&#160;7.10</title>
	<atom:link href="http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/feed/" rel="self" type="application/rss+xml" />
	<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10</link>
	<description>the life and times of a code monkey</description>
	<pubDate>Mon, 01 Dec 2008 16:39:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: ring0</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-518</link>
		<dc:creator>ring0</dc:creator>
		<pubDate>Mon, 10 Nov 2008 02:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-518</guid>
		<description>Great manual! Thanks a lot, I'm a newbie in posgresql.</description>
		<content:encoded><![CDATA[<p>Great manual! Thanks a lot, I&#8217;m a newbie in posgresql.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matrix</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-474</link>
		<dc:creator>matrix</dc:creator>
		<pubDate>Sun, 19 Oct 2008 20:17:56 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-474</guid>
		<description>i have have followed ur steps and able to install phppgadmin and apache2. however i cannot access http://localhost/. can anyone explain me why?

thanks</description>
		<content:encoded><![CDATA[<p>i have have followed ur steps and able to install phppgadmin and apache2. however i cannot access <a href="http://localhost/" >http://localhost/</a>. can anyone explain me why?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Switching Rails to PostgreSQL &#171; OLM On Rails</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-416</link>
		<dc:creator>Switching Rails to PostgreSQL &#171; OLM On Rails</dc:creator>
		<pubDate>Tue, 12 Aug 2008 14:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-416</guid>
		<description>[...] but phppgadmin is better than nothing at all. Assuming you have PHP and apache2 installed, install phppgadmin by [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] but phppgadmin is better than nothing at all. Assuming you have PHP and apache2 installed, install phppgadmin by [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daz</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-371</link>
		<dc:creator>Daz</dc:creator>
		<pubDate>Sat, 14 Jun 2008 08:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-371</guid>
		<description>&lt;blockquote&gt;Hi, I’m trying to do this now on Hardy and having a problem. I’m new to all this so there’s a fine chance I’ve stuffed it up.&lt;/blockquote&gt;

Hi Dylan, this sounds quite strange...  Let's check a couple of things...

&lt;blockquote&gt;When I freshly install phppgadmin the only file inside /etc/phppgadmin/ is config.inc.php — there is no apache.conf.&lt;/blockquote&gt;

Wierd...  Okay, try installing again (you did install via `apt-get`?), if you don't get the `/etc/phppgadmin/apache.conf` file this time, here's a copy of the one off my install - create the file yourself and paste this into it:

&lt;pre&gt;Alias /phppgadmin /usr/share/phppgadmin/

&lt;DirectoryMatch /usr/share/phppgadmin/&gt;

DirectoryIndex index.php

Options +FollowSymLinks
AllowOverride None

order deny,allow
deny from all
allow from 127.0.0.0/255.0.0.0
# allow from all

&lt;IfModule mod_php4.c&gt;
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_flag register_globals On
  php_value include_path .
&lt;/IfModule&gt;

&lt;IfModule mod_php5.c&gt;
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_flag register_globals On
  php_value include_path .
&lt;/IfModule&gt;



&lt;/DirectoryMatch&gt;&lt;/pre&gt;

Finally, delete and re-create the symlink, fingers crossed this should kick things into life for you:

&lt;pre&gt;sudo rm /etc/apache2/conf.d/phppgadmin.conf
sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf&lt;/pre&gt;

Let me know how you get on. :)</description>
		<content:encoded><![CDATA[<blockquote><p>Hi, I’m trying to do this now on Hardy and having a problem. I’m new to all this so there’s a fine chance I’ve stuffed it up.</p></blockquote>
<p>Hi Dylan, this sounds quite strange&#8230;  Let&#8217;s check a couple of things&#8230;</p>
<blockquote><p>When I freshly install phppgadmin the only file inside /etc/phppgadmin/ is config.inc.php — there is no apache.conf.</p></blockquote>
<p>Wierd&#8230;  Okay, try installing again (you did install via `apt-get`?), if you don&#8217;t get the `/etc/phppgadmin/apache.conf` file this time, here&#8217;s a copy of the one off my install - create the file yourself and paste this into it:</p>
<pre>Alias /phppgadmin /usr/share/phppgadmin/

<directorymatch /usr/share/phppgadmin/>

DirectoryIndex index.php

Options +FollowSymLinks
AllowOverride None

order deny,allow
deny from all
allow from 127.0.0.0/255.0.0.0
# allow from all

<ifmodule mod_php4.c>
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_flag register_globals On
  php_value include_path .
</ifmodule>

<ifmodule mod_php5.c>
  php_flag magic_quotes_gpc Off
  php_flag track_vars On
  php_flag register_globals On
  php_value include_path .
</ifmodule>
</pre>
<p>Finally, delete and re-create the symlink, fingers crossed this should kick things into life for you:</p>
<pre>sudo rm /etc/apache2/conf.d/phppgadmin.conf
sudo ln -s /etc/phppgadmin/apache.conf /etc/apache2/conf.d/phppgadmin.conf</pre>
<p>Let me know how you get on. <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dylan</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-369</link>
		<dc:creator>Dylan</dc:creator>
		<pubDate>Thu, 12 Jun 2008 07:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-369</guid>
		<description>Hi, I'm trying to do this now on Hardy and having a problem. I'm new to all this so there's a fine chance I've stuffed it up.

This is what's happening:

sudo /etc/init.d/apache2 reload
apache2: Syntax error on line 295 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/conf.d/phppgadmin.conf: No such file or directory
   ...fail!

When I freshly install phppgadmin the only file inside /etc/phppgadmin/ is config.inc.php -- there is no apache.conf.
I've set up postgres with your most recent tutorial.
Some guidance will be much appreciated! Thanks.

Also, it's a Slicehost box which has been set up with their various instructions (starting at the very beginning with http://articles.slicehost.com/2008/4/25/ubuntu-hardy-setup-page-1).</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m trying to do this now on Hardy and having a problem. I&#8217;m new to all this so there&#8217;s a fine chance I&#8217;ve stuffed it up.</p>
<p>This is what&#8217;s happening:</p>
<p>sudo /etc/init.d/apache2 reload<br />
apache2: Syntax error on line 295 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/conf.d/phppgadmin.conf: No such file or directory<br />
   &#8230;fail!</p>
<p>When I freshly install phppgadmin the only file inside /etc/phppgadmin/ is config.inc.php &#8212; there is no apache.conf.<br />
I&#8217;ve set up postgres with your most recent tutorial.<br />
Some guidance will be much appreciated! Thanks.</p>
<p>Also, it&#8217;s a Slicehost box which has been set up with their various instructions (starting at the very beginning with <a href="http://articles.slicehost.com/2008/4/25/ubuntu-hardy-setup-page-1" >http://articles.slicehost.com/2008/4/25/ubuntu-hardy-setup-page-1</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daz</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-244</link>
		<dc:creator>Daz</dc:creator>
		<pubDate>Thu, 10 Apr 2008 07:49:09 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-244</guid>
		<description>&lt;blockquote&gt;You need of course, php5-pgsql&lt;/blockquote&gt;

That should be installed already - it's a &lt;a href="http://packages.ubuntu.com/gutsy/web/phppgadmin"&gt;dependency of phppgadmin&lt;/a&gt;.

For more info on account creation, see &lt;a href="/2007/11/05/creating-new-accounts-in-postgresql/"&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<blockquote><p>You need of course, php5-pgsql</p></blockquote>
<p>That should be installed already - it&#8217;s a <a href="http://packages.ubuntu.com/gutsy/web/phppgadmin">dependency of phppgadmin</a>.</p>
<p>For more info on account creation, see <a href="/2007/11/05/creating-new-accounts-in-postgresql/">here</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bezprym</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-235</link>
		<dc:creator>bezprym</dc:creator>
		<pubDate>Mon, 07 Apr 2008 21:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-235</guid>
		<description>&lt;code&gt;su -c 'createuser -P admin' postgres
Enter password for new role: 
Enter it again:  
Shall the new role be a superuser? (y/n) y
CREATE ROLE&lt;/code&gt;

You need of course, php5-pgsql</description>
		<content:encoded><![CDATA[<p><code>su -c 'createuser -P admin' postgres<br />
Enter password for new role:<br />
Enter it again:<br />
Shall the new role be a superuser? (y/n) y<br />
CREATE ROLE</code></p>
<p>You need of course, php5-pgsql</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nando</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-177</link>
		<dc:creator>nando</dc:creator>
		<pubDate>Mon, 03 Mar 2008 19:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-177</guid>
		<description>GREAT MANUAL!</description>
		<content:encoded><![CDATA[<p>GREAT MANUAL!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kjelle</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-131</link>
		<dc:creator>Kjelle</dc:creator>
		<pubDate>Fri, 21 Dec 2007 23:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-131</guid>
		<description>Heya,
I followed your instructions but I cannot login on phppgadmin, not with postgres, not with my account. Do you have any hints on how I can debug this? Thanks!</description>
		<content:encoded><![CDATA[<p>Heya,<br />
I followed your instructions but I cannot login on phppgadmin, not with postgres, not with my account. Do you have any hints on how I can debug this? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daz</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2F14%2Finstall-phppgadmin-on-ubuntu-710%2F&amp;seed_title=Install+phpPgAdmin+on+Ubuntu%26%23160%3B7.10#comment-130</link>
		<dc:creator>daz</dc:creator>
		<pubDate>Fri, 21 Dec 2007 17:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/install-phppgadmin-on-ubuntu-710/#comment-130</guid>
		<description>Great tip, thanks!  This also has the added benefit of working nicely with virtual hosts (as the original setup would barf if you started to use virtual hosts).

Will add this to the above. :)</description>
		<content:encoded><![CDATA[<p>Great tip, thanks!  This also has the added benefit of working nicely with virtual hosts (as the original setup would barf if you started to use virtual hosts).</p>
<p>Will add this to the above. <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.485 seconds -->
