vote up 4 vote down star
3

Hi folks,

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

flag

71% accept rate
Can you provide a complete code+PHPDoc sample so we can try it out? – dr Hannibal Lecter May 16 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 at 23:15
Afraid not, 6.1 and 6.5 did exactly the same, only looking slightly less attractive doing it. – Kris May 17 at 1:06

3 Answers

vote up 3 vote down check

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|flag
I was really hesistant to try this, but it did actually fix the problem. (rm -rf'ing the cache) – Kris May 17 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 at 17:59
Worked for me, thanks! – Some Canuck Jul 8 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 at 14:36
I've worked out a trigger for the bug I'm seeing - it's something to do with adding folders to the PHP include path within netbeans. If I add the project root to the path (actually duplicating what's set in the include_path), then I get code completion for stuff from my other projects, but it won't update without a restart. If I don't add it then I only get code completion for the current project, but it will update for new code. Frustrating! – therefromhere Jul 29 at 14:59
vote up 1 vote down

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.

link|flag
vote up -2 vote down

the problem is taht sometimes it ork, sometimes not :s

link|flag
How does this help? Please give useful answers. – Dr. Hfuhruhurr Dec 4 at 12:07

Your Answer

Get an OpenID
or

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