I have Eclipse 3.3.2 with PDT doing PHP development. All projects that I create, even SVN projects have code completion. Now I just opened another SVN project and it has no code completion or PHP templates (CTRL-space does nothing in that project). However, I can open the other projects and code completion all work in them.

Why would code completion and templates be "off" in just one project and how can I turn it back on?

link|improve this question

80% accept rate
feedback

18 Answers

up vote 26 down vote accepted

Maybe Eclipse doesn't understand the project has a "PHP nature". Try comparing the .project file on both projects to look for differences. It should contain something like:

 <natures>
  <nature>org.eclipse.php.core.PHPNature</nature>
 </natures>

The .project file will be in your workspace under the project directories.

link|improve this answer
Because the repository had a .project file in it, it did not give me the chance to open it with the PHP project wizard, we deleted the .project file, rechecked it out and all is fine now, thanks! – Edward Tanguay Oct 7 '08 at 8:58
This still does not show the autocomplete for PHP built-in functions. – bruno.braga Jan 31 at 1:23
feedback

Thank you! I spent all day long to figure out why I did not have code completion...

The problem is that if you create a SVN project the .project is a basic file without codecompletion reference. You have to create a basic PHP project and compare the two files and replacing the missing part in the SVN project one.

Now I have code completion for every file in the project, even for Zend Framework library

link|improve this answer
feedback

Look out for the file .buildpath in your project... put this line between the tag:

<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>

Save it and restart eclipse. Now everything should be OK... This worked for me. :)

link|improve this answer
This, with the .project change, is the missing part to make Eclipse properly display the autocomplete functionality of both built-in functions and project's stuff. – bruno.braga Jan 31 at 1:24
feedback

It is just one line to add in the .project file and then restarting eclipse to get codecompletion: Where it says

---
 <natures>
 </natures>
---

after the change has to be

---
 <natures>
  <nature>org.eclipse.php.core.PHPNature</nature>
 </natures>
---

That should do.

link|improve this answer
feedback

I have the same issue sometimes. For me it works to rebuild the PHP project with "Project" -> "Clean".

link|improve this answer
feedback

Right click in the edit screen, goto Java -> Editor -> Content Assist -> Advanced ...select proposals accordingly

link|improve this answer
feedback

@Guido PHPNature does not fix this.

@Edward Tanguay Yes, that's because when you create new PHP project, eclipse adds .buildpath file with

<?xml version="1.0" encoding="UTF-8"?><buildpath>
<buildpathentry kind="src" path=""/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/></buildpath>

when you import existing project you eclipse does not generates .buildpath file, but you can add it by hand or create new PHP project with existin source (you can choose in wizard).

link|improve this answer
I've been just dealing with this problem (code completion for my classes but not PHP core) for almost a year now, and I finally broke down and fixed it, thanks to your tip about .buildpath - thanks! – SteveK Feb 25 at 20:20
feedback

Be sure the file opens with the "PHP editor". Right-click the file, and select open with to select the right editor.

If it turns out you've been using the wrong editor, you can change the association under Preferences » General » Content Types

link|improve this answer
feedback

One solution could be to include a dummy php file wich requires all your PHP classes. So that the PHP parser recognizes these classes too. Example dummy file:

if(false) {
     require_once 'class/one.php';
     require_once 'class/two.php';
     require_once 'class/three.php';
}
link|improve this answer
feedback

I've noticed sometimes when you checkout a project from svn in eclipse (subversive or subsclipe "checkout a project as") and even though you check it out as a php project it will either delete the .project file or it would be a generic project. I've found to just go in that directory and delete the .project .settings/ and .cach/

Then create a new php project and point the directory where you checked out the files. And you should have code completion and svn should be link to your repo.

link|improve this answer
feedback

I had a problem that build path was empty, so no code completion for any of the files i tried to edit. Make sure you setup properly your build path, especially if you're linking the source from some other location than the workspace.

Like the apache htdocs folder for example.

link|improve this answer
feedback

I have solved this by enabling the Full C/C++ indexer (Windows-> properties -> C/C++ -> Indexer), and also hit the radio button "Use active button configuration". After that Clean, and Build all.

That worked on Eclipse CDT 3.4

link|improve this answer
feedback

If you came here looking for code completion in php eclipse not working, make sure your project is being supported as a php project. Right click on the project and then go to configure -> Add php support. If you have the right settings for code assist it should work instantaneously. Sometimes newbies as me tweak around with the projects or start projects as clean and not as php so eclipse doesn't know how to treat the project.

link|improve this answer
feedback

ATTENTION

Besides the already mentioned solutions to get the whole autocomplete help to work, there is another quirk: it might not be enabled.

Go to Window > Properties and then to PHP > Editor > Code Assist (JAVA has a similar option) and set "Enable auto activation", preferably with a delay that you see comfortable (0ms). If you are bothered by the program suddenly deciding to do things for you without prompt (and doing it wrong), deselect "Insert single proposals automatically" and you should be fine.

link|improve this answer
feedback

If you have this problem, follow these steps :

  • Select "PHP Include Path" in your project tree
  • Right click on it then click "Build Path>Configure Build Path"
  • On the opening window,add folder that you want to build, so it can do code assist.

Thats all :) I hope it resolves your problem, I solved my one :)

link|improve this answer
it works for the eclipse project ,but when i open individual php files of using eclipse ,code completion does not work ,how to make it – Vinay Jul 5 '11 at 4:35
feedback

This helped me: link text

link|improve this answer
feedback

I had to right click the project in the PHP Explorer, go to "PHP Build Path". This was empty. I clicked "Add Folder", selected the checkbox next to the root folder of my project and clicked "OK", then "OK" again.

After that code completion seemed to work. Should just work out of the box if you ask me, but whatever.

link|improve this answer
feedback

Check the lib of your project. It may be that you have include two such jar files in which same class is available or say one class in code can be refrenced in two jar files. In such case also eclipse stops assisting code as it is totally confused.

Better way to check this is go to the file where assist is not working and comment all imports there, than add imports one by one and check at each import if code-assist is working or not.You can easily find the class with duplicate refrences.

link|improve this answer
feedback

protected by Community Oct 17 '11 at 21:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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