<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Thinking of upgrading from Plesk 7.5 to Plesk 8.0 (or Plesk 8.0.1)?</title>
	<atom:link href="http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/feed/" rel="self" type="application/rss+xml" />
	<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/</link>
	<description>Rants on business, science, technology, society, politics, police, and justice, plus life hacks and tricks, since 2003.</description>
	<lastBuildDate>Thu, 19 Apr 2012 16:40:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Time to ditch GoDaddy?</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-10791</link>
		<dc:creator>Time to ditch GoDaddy?</dc:creator>
		<pubDate>Thu, 13 Mar 2008 05:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-10791</guid>
		<description>[...] a GoDaddy VPS customer, and amateur tutorial author and reviewer, this upset me, so I wrote a note on GoDaddy&#8217;s public relations feedback [...]</description>
		<content:encoded><![CDATA[<p>[...] a GoDaddy VPS customer, and amateur tutorial author and reviewer, this upset me, so I wrote a note on GoDaddy&#8217;s public relations feedback [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: INeedAttention.com &#187; How-to: Upgrade a GoDaddy VPS from Fedora Core 4 to Fedora Core 6</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-8369</link>
		<dc:creator>INeedAttention.com &#187; How-to: Upgrade a GoDaddy VPS from Fedora Core 4 to Fedora Core 6</dc:creator>
		<pubDate>Mon, 26 Nov 2007 04:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-8369</guid>
		<description>[...] than the last time I had to upgrade my GoDaddy virtual private server, although last time I was upgrading the Plesk interface, and not the operating system. I figured if anything, it would be more of a hassle to upgrade the [...]</description>
		<content:encoded><![CDATA[<p>[...] than the last time I had to upgrade my GoDaddy virtual private server, although last time I was upgrading the Plesk interface, and not the operating system. I figured if anything, it would be more of a hassle to upgrade the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Nakakihara</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-6173</link>
		<dc:creator>James Nakakihara</dc:creator>
		<pubDate>Mon, 06 Aug 2007 19:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-6173</guid>
		<description>Thanks for posting this fix. I wanted Spam Assassin so I paid, waited, was told to upgrade, then was told they would not support the fact that all my domains now didn&#039;t work. Gotta love those guys.

James</description>
		<content:encoded><![CDATA[<p>Thanks for posting this fix. I wanted Spam Assassin so I paid, waited, was told to upgrade, then was told they would not support the fact that all my domains now didn&#8217;t work. Gotta love those guys.</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kyle</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-373</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Tue, 28 Nov 2006 23:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-373</guid>
		<description>here is a quick sypnosis since i had to this as well:

TO FIX:
1) login to psa database in Plesk:
Server -&gt; Database Servers -&gt; Local MySQL Server -&gt; Databases tab -&gt; DB WebAdmin

2) load the &quot;psa&quot; database in the database drop down on the left. 

3) collect a list of domains by running the following SQL query
SELECT &#039;name&#039; FROM &#039;domains&#039; WHERE 1

You will get something like:

domain1.com 
domain2.com 

4) recreate each zone for each domain listed in step 3:

INSERT INTO dns_zone (name, displayName) VALUES (&#039;domain1.com&#039;,&#039;domain1.com&#039;) ;

INSERT INTO dns_zone (name, displayName) VALUES (&#039;domain2.com&#039;,&#039;domain2.com&#039;) ;

5) collect a list of the &quot;id&quot; numbers for newly created dns_zone, you can run the following SQL query:

SELECT id,name FROM &#039;dns_zone&#039; WHERE 1 ;

you&#039;ll get something like:
7 domain1.com
8 domain2.com

6) update dns_recs table with new id numbers you just collected, set &quot;dns_zone_id&quot; in the following SQL queries to the coinciding id number from step 5

UPDATE dns_recs SET time_stamp = now() , dns_zone_id = &#039;7&#039; WHERE dns_zone_id=0 AND (host LIKE &quot;%domain1.com%&quot; OR val LIKE &quot;%domain1.com%&quot;) LIMIT 20;

UPDATE dns_recs SET time_stamp = now() , dns_zone_id = &#039;8&#039; WHERE dns_zone_id=0 AND (host LIKE &quot;%domain2.com%&quot; OR val LIKE &quot;%domain2.com%&quot;) LIMIT 20;

7) update the domain records to link the new DNS zones and their associated DNS records to the domains themselves.

UPDATE domains SET dns_zone_id = &#039;7&#039; WHERE name = &quot;domain1.com&quot; LIMIT 1 ;
UPDATE domains SET dns_zone_id = &#039;8&#039; WHERE name = &quot;domain2.com&quot; LIMIT 1 ;


8) the www. sub domain will probably not work. we need to fix this.

in plesk â€œDomainsâ€ -&gt; domain.com -&gt; â€œDomain Administratorâ€, 
uncheck the â€œWWWâ€ box at the very top of the page, and click OK to save. Then go back and recheck it and save again. 

NOTE: you have to do this step for every domain otherwise apache wont restart successfully.

9) restart apache and bind: â€œServerâ€ -&gt; â€œService Managementâ€, and then restart Apache and the DNS service.</description>
		<content:encoded><![CDATA[<p>here is a quick sypnosis since i had to this as well:</p>
<p>TO FIX:<br />
1) login to psa database in Plesk:<br />
Server -&gt; Database Servers -&gt; Local MySQL Server -&gt; Databases tab -&gt; DB WebAdmin</p>
<p>2) load the &#8220;psa&#8221; database in the database drop down on the left. </p>
<p>3) collect a list of domains by running the following SQL query<br />
SELECT &#8216;name&#8217; FROM &#8216;domains&#8217; WHERE 1</p>
<p>You will get something like:</p>
<p>domain1.com<br />
domain2.com </p>
<p>4) recreate each zone for each domain listed in step 3:</p>
<p>INSERT INTO dns_zone (name, displayName) VALUES (&#8216;domain1.com&#8217;,'domain1.com&#8217;) ;</p>
<p>INSERT INTO dns_zone (name, displayName) VALUES (&#8216;domain2.com&#8217;,'domain2.com&#8217;) ;</p>
<p>5) collect a list of the &#8220;id&#8221; numbers for newly created dns_zone, you can run the following SQL query:</p>
<p>SELECT id,name FROM &#8216;dns_zone&#8217; WHERE 1 ;</p>
<p>you&#8217;ll get something like:<br />
7 domain1.com<br />
8 domain2.com</p>
<p>6) update dns_recs table with new id numbers you just collected, set &#8220;dns_zone_id&#8221; in the following SQL queries to the coinciding id number from step 5</p>
<p>UPDATE dns_recs SET time_stamp = now() , dns_zone_id = &#8217;7&#8242; WHERE dns_zone_id=0 AND (host LIKE &#8220;%domain1.com%&#8221; OR val LIKE &#8220;%domain1.com%&#8221;) LIMIT 20;</p>
<p>UPDATE dns_recs SET time_stamp = now() , dns_zone_id = &#8217;8&#8242; WHERE dns_zone_id=0 AND (host LIKE &#8220;%domain2.com%&#8221; OR val LIKE &#8220;%domain2.com%&#8221;) LIMIT 20;</p>
<p>7) update the domain records to link the new DNS zones and their associated DNS records to the domains themselves.</p>
<p>UPDATE domains SET dns_zone_id = &#8217;7&#8242; WHERE name = &#8220;domain1.com&#8221; LIMIT 1 ;<br />
UPDATE domains SET dns_zone_id = &#8217;8&#8242; WHERE name = &#8220;domain2.com&#8221; LIMIT 1 ;</p>
<p> <img src='http://ineedattention.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> the www. sub domain will probably not work. we need to fix this.</p>
<p>in plesk â€œDomainsâ€ -&gt; domain.com -&gt; â€œDomain Administratorâ€,<br />
uncheck the â€œWWWâ€ box at the very top of the page, and click OK to save. Then go back and recheck it and save again. </p>
<p>NOTE: you have to do this step for every domain otherwise apache wont restart successfully.</p>
<p>9) restart apache and bind: â€œServerâ€ -&gt; â€œService Managementâ€, and then restart Apache and the DNS service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peteru</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-175</link>
		<dc:creator>peteru</dc:creator>
		<pubDate>Tue, 07 Nov 2006 02:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-175</guid>
		<description>Jeol,

Just to warn you, a lot of virtual dedicated server hosts will offer similar support because of the cost of supporting specific configurations of a VPS.  Many shared hosts will only upgrade for &quot;critical&quot; updates in the first place, namely because they don&#039;t want to break anything!  Anyway, you might be interested to know that GoDaddy has changed their VPS offering and is now giving Plesk 8.0 by default, on Fedora Core 4 systems running MySQL 4 and PHP 5.  I&#039;m much more impressed with their current offering.  I actually am in the process of using a new GoDaddy VPS to transition content from my old VPS, and use the newer solution for performance and security reasons.  However, one thing I would *not* recommend is using GoDaddy VPS for their PostgreSQL support when buying the Plesk Power Pack at $9.99 per month.  The PostgreSQL PHP module wasn&#039;t installed when the server was provisioned, and I didn&#039;t have the time to figure out how to install it (and worse, I couldn&#039;t find directions on the Postgres PHP module).  But to make things more strange, the Plesk panel itself ran a custom web server that used phpPgAdmin to administer the database server.  So somehow, the PHP PostgreSQL module was on the system, except it was only in the control panel&#039;s installation of PHP.  I was bummed, and confused.  Anyway, despite this experience I&#039;d say GoDaddy&#039;s service is still competitive, so don&#039;t give up hope.</description>
		<content:encoded><![CDATA[<p>Jeol,</p>
<p>Just to warn you, a lot of virtual dedicated server hosts will offer similar support because of the cost of supporting specific configurations of a VPS.  Many shared hosts will only upgrade for &#8220;critical&#8221; updates in the first place, namely because they don&#8217;t want to break anything!  Anyway, you might be interested to know that GoDaddy has changed their VPS offering and is now giving Plesk 8.0 by default, on Fedora Core 4 systems running MySQL 4 and PHP 5.  I&#8217;m much more impressed with their current offering.  I actually am in the process of using a new GoDaddy VPS to transition content from my old VPS, and use the newer solution for performance and security reasons.  However, one thing I would *not* recommend is using GoDaddy VPS for their PostgreSQL support when buying the Plesk Power Pack at $9.99 per month.  The PostgreSQL PHP module wasn&#8217;t installed when the server was provisioned, and I didn&#8217;t have the time to figure out how to install it (and worse, I couldn&#8217;t find directions on the Postgres PHP module).  But to make things more strange, the Plesk panel itself ran a custom web server that used phpPgAdmin to administer the database server.  So somehow, the PHP PostgreSQL module was on the system, except it was only in the control panel&#8217;s installation of PHP.  I was bummed, and confused.  Anyway, despite this experience I&#8217;d say GoDaddy&#8217;s service is still competitive, so don&#8217;t give up hope.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeol Mellon</title>
		<link>http://ineedattention.com/technology/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/comment-page-1/#comment-174</link>
		<dc:creator>jeol Mellon</dc:creator>
		<pubDate>Tue, 07 Nov 2006 01:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://ineedattention.com/my-thoughts/2006/10/12/thinking-of-upgrading-from-plesk-75-to-plesk-80-or-plesk-801/#comment-174</guid>
		<description>I just upgraded.  I am dissappointed with the Godaddy experience.  First the &quot;Team&quot; does not work third shift, so I had to wait 8 hours (no server) to get my new key.  Now I have discovered that the formating on the blogs that are hosted has been altered.  No columns.  I am agreement.  Godaddy is lame in the upgrade department.  Time to start a transiton search.</description>
		<content:encoded><![CDATA[<p>I just upgraded.  I am dissappointed with the Godaddy experience.  First the &#8220;Team&#8221; does not work third shift, so I had to wait 8 hours (no server) to get my new key.  Now I have discovered that the formating on the blogs that are hosted has been altered.  No columns.  I am agreement.  Godaddy is lame in the upgrade department.  Time to start a transiton search.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

