When I add PHP support to a project with Project->Properties->Project Natures a PHP Builder is automatically added to the Builders list.

What is the purpose of this builder ?

I don't compile or build anything in PHP, do I still need this builder then?

link|improve this question

48% accept rate
2  
sounds like an application support question not a programming one. – Dagon Jan 23 at 20:40
feedback

closed as off topic by Dagon, casperOne Jan 24 at 21:34

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

In the Studio case, the builder is required for the 'Clean' operation (Project -> Clean).

The 'Clean' is in charge of deletion and re-indexing of the index files the studio creates for your PHP projects, and you can use that in case you have some issues with the code-assist.

Without this builder, a 'Clean' is not possible.

link|improve this answer
I disabled the PHP Builder, and restarted Aptana, but now I can't even get the PHP Builder back! I still get the very slow 'Indexing new PHP Modules' at at every startup though... really annoying.... – Dylan Jan 24 at 12:19
Why did you disable it? How did you remove it? Was there a problem with the indexing before? With indexing issues (such as with a long indexing on every startup), you can start by doing to Project -> Clean -> Clean All option. I don't recommend messing with the builders/natures. In case there is an indexing issue, messing with those will not help. – sgibly Jan 24 at 16:41
The indexing is way too slow and starts over and over again, with some big frameworks like PEAR or ZEND it takes forever... But what is the purpose of PHP Builder in the first place? I don't build or compile my PHP... – Dylan Jan 24 at 18:11
As I mentioned above, the builder for PHP only deals with 'Clean' builds (or 'Full' builds). See - github.com/aptana/studio3-php/blob/development/plugins/… It's not in-charge of the indexing, but can request to clean and re-build the index. In case you just start-up, a full build will happen anyway, since the index is not complete. Deleting the builder from the .project file will not help since the indexer will be called anyway when the PHP plugin is loaded. – sgibly Jan 25 at 20:01
Thanks, i'm beginning to hate Eclipse/Aptana for not being able to make a simple PHP editor...programming on my old Commodore 64 is even faster than this... Is there no way to stop this constant indexing and still be able to get php code assist?! – Dylan Jan 28 at 14:37
show 1 more comment
feedback

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