Using Aptana Studio 3. Does anyone know if Aptana Studio formats or changes files when it does an "auto deploy"?

Didn't make any changes to files while I ported over a Wordpress site to Aptana Studio. When I set up an SFTP connection and enabled auto deploy, it did what looked like a sync and suddenly the server crashed with a 500 error.

PHP Fatal error: Call to undefined function get_header()

Given the error above, it looks like Aptana deleted something. Is there a local history like IntelliJ?

I'm hoping someone can explain if Aptana formats files or deletes them when it does a sync.

Thanks.

link|improve this question

I think its not an Aptana issue. Its more like an FTP connection issue. May be some bytes or some files is missed while uploading. – shiplu.mokadd.im Jan 8 at 5:43
Use SVN or GIT. – shiplu.mokadd.im Jan 8 at 5:44
Agreed I wish I had version control on this. It's a side project LOL. Thanks for pointing out some files may be missing. – DeLongey Jan 8 at 5:48
feedback

2 Answers

up vote 0 down vote accepted

Aptana won't delete anything during a sync...but it does do a "safe" upload. It uploads the new file to a temporary file on the server, deletes the original file, and then renames the new one to the old one. The main reason this fails is if there is a mismatch in server permissions such that it can't perform the rename or delete. Fixing those permissions fixes the issue.

As to Local History...try this: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2FgettingStarted%2Fqs-55.htm

link|improve this answer
Ah interesting so there is a local history. I'll be honest it was impossible to find. It turned out it wasn't a permissions issue though but I'll accept this answer since it does prevent future headaches ;) – DeLongey Jan 8 at 23:35
feedback

I found a very strange result after the Aptana "auto deploy". Essentially, all of the files in the folder under editing were copied and overwritten to the root.

Given the circumstances it looks like an Aptana bug. I double-checked connection settings and folders were set correctly. Perhaps a sign to abandon Aptana.

link|improve this answer
So you are editing file /a/b/c.txt (assume /a is the root of the site) and c.txt is saved to /a/c.txt? – Ingo Muschenetz Jan 8 at 13:55
Exactly, and after looking into it I figured out why. The connection manager was ignoring my project root and was instead assuming the root was the folder I was editing. A terrible feature since it created a huge headache. Not sure why it does that. – DeLongey Jan 8 at 23:37
Hi DeLonge, I tested on the latest 3.0.7 release, followed the steps to set up the connection and allow it to auto-deploy any changes, then edit a local file under a subfolder of the project, and it's uploaded correctly. Could you check what version of Studio do you have? Also are there any other plugins you have installed? Want to see what difference we have in your scenario where the problem occurs. Thanks. – Michael Jan 9 at 20:02
More than happy to help. It's a fresh install v3.0.7 and the exact steps were this: 1) created a new project 2) right-clicked on the folder I wanted to deploy 3) created a new SFTP connection and defined the project root on the server 4) chose autodeploy and "1-way computer to server" – DeLongey Jan 9 at 21:55
It seems that Aptana chose the folder as the root of the connection. Maybe a bug or a "feature". Either way it wasn't the expected behaviour. This did occur twice with two folders on separate occasions until I defined the connection using the deploy icon instead of the context menu. Thanks for looking into it. – DeLongey Jan 9 at 21:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.