vote up 5 vote down star
1

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 (STRG-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?

flag

9 Answers

vote up 4 vote down check

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

link|flag
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
vote up 3 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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