Rrecently I started using NetBeans 6.7 beta for PHP development instead of Textmate and MacGDBp. I am rather amazed with it's feature set and most everything worked out of the box, or was easily configured to my liking.

I am having an issue with the code completion features though; they work for build-in functions, SPL and some of my code, but not all of my code, specifically, it never works for any methods in my classes, regardless of PHPDoc comments.

I can't seem to find any decent questions, let alone answers about this specific subject anywhere. It looks like everybody else who has problems with the code completion just hasn't enabled the auto-popup feature.

So the big question is:

Is there any way to influence the code completion cache, or something i have to add to my code to make it work? I'd really like to have code completion for the methods I write.

PS: i have tried several older versions of netbeans, they all exhibit the same problem.

edit: I've put a .zip up of my current test project. get it here. It's a very young project, think a day and a half.

edit2: Below is a screenshot of what i'm looking at. As you can see, it fails to complete pretty much anything, nor does it see the PHPDoc documentation.

alt text

link|improve this question

Can you provide a complete code+PHPDoc sample so we can try it out? – dr Hannibal Lecter May 16 '09 at 22:20
I'm using Netbeans 6.5 on Mac and it autocompletes for all of my code and classes - could it exclusively a 6.7 Beta thing? – karim79 May 16 '09 at 23:15
Afraid not, 6.1 and 6.5 did exactly the same, only looking slightly less attractive doing it. – Kris May 17 '09 at 1:06
feedback

5 Answers

up vote 20 down vote accepted

I've tried opening your project, and the completion seems to be working just fine for me.

The only thing I can think of is to try to delete your entire NB cache, which should be located in $HOME/.netbeans/$VERSION/var/cache/. This is a wild guess

Create a backup first, I didn't try this!

If that fails, maybe you should try creating a new project, maybe that will kick NB in the butt.

link|improve this answer
I was really hesistant to try this, but it did actually fix the problem. (rm -rf'ing the cache) – Kris May 17 '09 at 16:04
Kewl, now I know what to do if this ever happens to me :) Strange that it happened at all... – dr Hannibal Lecter May 17 '09 at 17:59
Worked for me, thanks! – Some Canuck Jul 8 '09 at 17:06
I've got a similar problem, in that the project only seems to be scanned when netbeans starts, so code completion doesn't work for variables/methods that were defined in this coding session. (The code navigator knows about though). Unfortunately deleting my netbeans home directory hasn't fixed this. For reference, this is on: NetBeans IDE 6.7 (Build 200906241340), Java: 1.6.0_14; Java HotSpot(TM) 64-Bit Server VM 14.0-b16, System: Linux version 2.6.28-14-generic running on amd64; UTF-8; en_GB (nb) – therefromhere Jul 29 '09 at 14:36
1  
had some odd issues with code completion in NB6.8 for python. Clearing the cache solved my problems. – David Jan 16 '10 at 15:54
show 1 more comment
feedback

What worked for me was deleting the old nbproject folder (that was created in windows) and recreating the PHP project from existing sources. This is on NB 7.0.1 Mac OS X. Clearing the cache did not work for me.

link|improve this answer
I haven't run into the same problem since netbeans 7.0 (though code completion can still be flaky from time to time) – Kris Aug 31 '11 at 6:24
feedback

What worked for me was clearing the cache, then explicitly including some key subdirectories in the Global include path. Appears that for some reason NB 6.7 wasn't recursing the directories.

Including at project level also worked Project->Properties->Include Path Netbeans 7.01 + Windows 7

link|improve this answer
feedback

Be aware of @property something syntax. If object something does not exists in your code anymore, NetBeans might have problems with proper code completion. Consider example:

/** in main file: **/

use ABC as _ ;

/** in file ABC: **/

/** 
  *  @property \Something $something
  */

If you do not use $something anymore, NetBeans will most likely generate an exception, thus failing to complete the code.

link|improve this answer
feedback

If, for instance, you open a php file with netbeans without being part of a project, code completion doesn't work at all. What you need to do is to create a project having that file in it.

Tested this on NetBeans 7.0.1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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