<?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: PHP (Wordpress) development using Eclipse and XAMPP</title>
	<atom:link href="http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/</link>
	<description>Self-proclaimed greatness is a hard thing to prove.</description>
	<lastBuildDate>Mon, 01 Mar 2010 19:05:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Teresa</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1179</link>
		<dc:creator>Teresa</dc:creator>
		<pubDate>Sat, 12 Dec 2009 04:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1179</guid>
		<description>Thank you!  I used codex&#039;s tips for installing my existing site but I kept having problems &#039;connecting&#039; to my imported dbase.  Your tip #3 to open the MySQL Query Browser and update the wp_options table solved it. Worked like a charm! :D</description>
		<content:encoded><![CDATA[<p>Thank you!  I used codex&#8217;s tips for installing my existing site but I kept having problems &#8216;connecting&#8217; to my imported dbase.  Your tip #3 to open the MySQL Query Browser and update the wp_options table solved it. Worked like a charm! <img src='http://greatwebguy.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webguy</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1142</link>
		<dc:creator>webguy</dc:creator>
		<pubDate>Thu, 15 Oct 2009 14:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1142</guid>
		<description>That sounds useful, going to have to check that out.

Thanks</description>
		<content:encoded><![CDATA[<p>That sounds useful, going to have to check that out.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eoan</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1141</link>
		<dc:creator>Eoan</dc:creator>
		<pubDate>Thu, 15 Oct 2009 14:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1141</guid>
		<description>Hi,

Just to let you know, I managed to do this using svn externals. :) I&#039;m a clearcase user normally, new to Subversion.

http://codex.wordpress.org/User:Hakre/define_SVN_externals

I defined a property at the project level directory,

svn:externals 
wordpress http://core.svn.wordpress.org/tags/2.8.4

then an svn update pulls wordpress into my repository.

Cheers,
Eoan</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Just to let you know, I managed to do this using svn externals. <img src='http://greatwebguy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;m a clearcase user normally, new to Subversion.</p>
<p><a href="http://codex.wordpress.org/User:Hakre/define_SVN_externals" rel="nofollow">http://codex.wordpress.org/User:Hakre/define_SVN_externals</a></p>
<p>I defined a property at the project level directory,</p>
<p>svn:externals<br />
wordpress <a href="http://core.svn.wordpress.org/tags/2.8.4" rel="nofollow">http://core.svn.wordpress.org/tags/2.8.4</a></p>
<p>then an svn update pulls wordpress into my repository.</p>
<p>Cheers,<br />
Eoan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eoan</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1138</link>
		<dc:creator>Eoan</dc:creator>
		<pubDate>Thu, 15 Oct 2009 09:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1138</guid>
		<description>Hi Webguy,

I setup Subclipse yesterday, a bit tricky getting it to work with svn+ssh, (works with password, but not liking keys ) this is working fine using TortoiseSVN. I&#039;ll keep trying with that.

I&#039;ve a setup question for you, and perhaps it&#039;ll be helpful to you to:

You copied wordpress into the Eclipse project. I was hoping to be able to make use of the wordpress subversion repository, rather than copying all the wordpress files into my own svn repository. At the moment, I have to export wordpress from the SVN rep and copy the files into the project, then I have to make sure these files are ignored when I am doing a commit for my own project.

What I have just now is:

Eclipse Project created, into which I checked out my own SVN repository:

C:/eclipse/workspace/website

at this level I have the wp-config.php and index.php files, and a wp-content directory for the site. The wp-config.php file has been modified to change the location of the Wordpress Content as follows:

&lt;code&gt;
/**
 * Change the location of the wordpress content directory.
 */
define( &#039;WP_CONTENT_DIR&#039;, $_SERVER[&#039;DOCUMENT_ROOT&#039;] . &#039;/wp-content&#039; );
define( &#039;WP_CONTENT_URL&#039;, &#039;http://localwebsite/wp-content&#039;);
&lt;/code&gt;

Then for wordpress relocation, I have modified the index.php file

&lt;code&gt;
/** Loads the WordPress Environment and Template */
require(&#039;./wordpress/wp-blog-header.php&#039;);
&lt;/code&gt;

So I end up with

C:/eclipse/workspace/website/wp-content
C:/eclipse/workspace/website/index.php
C:/eclipse/workspace/website/wp-config.php
C:/eclipse/workspace/website/wordpress

This isn&#039;t ideal, as it&#039;ll ask me to add this to my svn repository. What would be better is for Eclipse to allow me to have a dependency on a wordpress project.

I will most likely try and relocate wordpress so that it&#039;s outwith my svn repository.

Perhaps I should be writing some sort of build script that exports the wordpress repository as required, then when I want a new version I can modify the build script and rebuild the project.

Cheers,
Eoan</description>
		<content:encoded><![CDATA[<p>Hi Webguy,</p>
<p>I setup Subclipse yesterday, a bit tricky getting it to work with svn+ssh, (works with password, but not liking keys ) this is working fine using TortoiseSVN. I&#8217;ll keep trying with that.</p>
<p>I&#8217;ve a setup question for you, and perhaps it&#8217;ll be helpful to you to:</p>
<p>You copied wordpress into the Eclipse project. I was hoping to be able to make use of the wordpress subversion repository, rather than copying all the wordpress files into my own svn repository. At the moment, I have to export wordpress from the SVN rep and copy the files into the project, then I have to make sure these files are ignored when I am doing a commit for my own project.</p>
<p>What I have just now is:</p>
<p>Eclipse Project created, into which I checked out my own SVN repository:</p>
<p>C:/eclipse/workspace/website</p>
<p>at this level I have the wp-config.php and index.php files, and a wp-content directory for the site. The wp-config.php file has been modified to change the location of the Wordpress Content as follows:</p>
<p><code><br />
/**<br />
 * Change the location of the wordpress content directory.<br />
 */<br />
define( 'WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/wp-content' );<br />
define( 'WP_CONTENT_URL', 'http://localwebsite/wp-content');<br />
</code></p>
<p>Then for wordpress relocation, I have modified the index.php file</p>
<p><code><br />
/** Loads the WordPress Environment and Template */<br />
require('./wordpress/wp-blog-header.php');<br />
</code></p>
<p>So I end up with</p>
<p>C:/eclipse/workspace/website/wp-content<br />
C:/eclipse/workspace/website/index.php<br />
C:/eclipse/workspace/website/wp-config.php<br />
C:/eclipse/workspace/website/wordpress</p>
<p>This isn&#8217;t ideal, as it&#8217;ll ask me to add this to my svn repository. What would be better is for Eclipse to allow me to have a dependency on a wordpress project.</p>
<p>I will most likely try and relocate wordpress so that it&#8217;s outwith my svn repository.</p>
<p>Perhaps I should be writing some sort of build script that exports the wordpress repository as required, then when I want a new version I can modify the build script and rebuild the project.</p>
<p>Cheers,<br />
Eoan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webguy</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1137</link>
		<dc:creator>webguy</dc:creator>
		<pubDate>Wed, 14 Oct 2009 15:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1137</guid>
		<description>@eoan Check out Subclipse, works well with SVN</description>
		<content:encoded><![CDATA[<p>@eoan Check out Subclipse, works well with SVN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eoan</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1136</link>
		<dc:creator>Eoan</dc:creator>
		<pubDate>Wed, 14 Oct 2009 15:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1136</guid>
		<description>Hello,

Thanks for the pointers. The VirtualHost entries didn&#039;t work for me until I changed the directory line:



After that, it was fine.. Now I&#039;m off to try and get subversion working within Eclipse :)

Cheers,
Eoan</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thanks for the pointers. The VirtualHost entries didn&#8217;t work for me until I changed the directory line:</p>
<p>After that, it was fine.. Now I&#8217;m off to try and get subversion working within Eclipse <img src='http://greatwebguy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers,<br />
Eoan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viji</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1074</link>
		<dc:creator>viji</dc:creator>
		<pubDate>Wed, 10 Jun 2009 22:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1074</guid>
		<description>Ok the problem is solved. I changed my workspace as xampp/htdocs

Thanks</description>
		<content:encoded><![CDATA[<p>Ok the problem is solved. I changed my workspace as xampp/htdocs</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viji</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1073</link>
		<dc:creator>viji</dc:creator>
		<pubDate>Wed, 10 Jun 2009 22:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1073</guid>
		<description>Hi,
Thanks for the tutorial. I created a new project called MyFirstPHP and in that created test.php. But when I run the php file http://localhost/test I am getting the error:
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.  

Please help me.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the tutorial. I created a new project called MyFirstPHP and in that created test.php. But when I run the php file <a href="http://localhost/test" rel="nofollow">http://localhost/test</a> I am getting the error:<br />
Object not found!<br />
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.  </p>
<p>Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Why Code Websites Locally? &#124; techempire.net</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-1062</link>
		<dc:creator>Why Code Websites Locally? &#124; techempire.net</dc:creator>
		<pubDate>Fri, 29 May 2009 05:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-1062</guid>
		<description>[...] PHP (Wordpress) development using Eclipse and XAMPP - GreatWebGuy [...]</description>
		<content:encoded><![CDATA[<p>[...] PHP (Wordpress) development using Eclipse and XAMPP &#8211; GreatWebGuy [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asad</title>
		<link>http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/comment-page-1/#comment-997</link>
		<dc:creator>Asad</dc:creator>
		<pubDate>Mon, 20 Apr 2009 14:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://greatwebguy.com/programming/eclipse/php-development-using-eclipse/#comment-997</guid>
		<description>Hey. thanks for that tutorial. I was looking for same stuff. cuz i wanted to start running a clean wordpess project with CMS and ecommerce stuff. NOOOOW... to make everything reallyyy clear is the way to use a SCM (Subversion) and make a build via ftp on the hosting server... if there is a howto on that it would be great. thankx!</description>
		<content:encoded><![CDATA[<p>Hey. thanks for that tutorial. I was looking for same stuff. cuz i wanted to start running a clean wordpess project with CMS and ecommerce stuff. NOOOOW&#8230; to make everything reallyyy clear is the way to use a SCM (Subversion) and make a build via ftp on the hosting server&#8230; if there is a howto on that it would be great. thankx!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
