Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » What kind of deployment is usually used and what is possible?
What kind of deployment is usually used and what is possible? [message #34046] Fri, 06 July 2007 08:20 Go to next message
Eclipse UserFriend
Originally posted by: newsgroup.elferen.nl

As many I think I am switching from Zend/Dreamweaver to Eclipse PDT.
I've used Eclipse a lot for Java development and love it.
But there is one feature that is still missing that i think is possible
to solve, but sadly all my googling and searching hasn't solved it.

Auto upload on save.
Currently I have an Ant script that needs 2 more things before i can
work comfy.

1. Auto upload on saving my file
2. Only upload the changed files


My current script is:
<project name="testProject" default="upload">

<target name="upload" description="upload the files to the server">

<ftp server="domain.nl"
depends="yes"
port="21"
remotedir="/var/www/test"
userid="user"
password="password"
passive="yes">
<fileset dir="">
<exclude name="**/*.project*" />
<exclude name=".externalToolBuilders/" />
<include name="**/*.*" />
</fileset>
</ftp>

</target>
</project>

I've got the upload working, but only when i manually execute the script.

thanks in advance
Re: What kind of deployment is usually used and what is possible? [message #34079 is a reply to message #34046] Fri, 06 July 2007 11:00 Go to previous message
Bruno Vernay is currently offline Bruno VernayFriend
Messages: 8
Registered: July 2009
Junior Member
I guess that it should be possible to configure a project builder for this.
Right clic your project, properties / builders ; new then you should be
able to select "ant build" ...
and I hope it will be usefull, I can't help you more on this.
Previous Topic:best method for deploying/uploading project
Next Topic:PDT not working in 3.3 Europa
Goto Forum:
  


Current Time: Fri Apr 19 14:30:16 GMT 2024

Powered by FUDForum. Page generated in 0.01572 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top