• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Trying to run php eclipse

 
Ranch Hand
Posts: 243
Python
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there

I created a new php project for I get the following when I try to open the editor in a php file.

I'm kinda stuck here any advice would be great
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The "internal" packages in Eclipse (like the org/eclipse/core/internal/runtime package in the error message here) are supposed to be private to the Eclipse platform itself, and extensions and plugins are not supposed to use them. That's because they change or even disappear quite regularly with new Eclipse releases. It looks like what happened here is that your PHP plugin authors did a naughty thing and used an internal class that is not present in the version of Eclipse that you have, so their editor is failing to load. What you need to do is check the documentation or website for the PHP plugin and see if you can figure out what version of Eclipse it works with, then try to find and install that version instead of whatever you have now. You could also report this to them as a bug, if the plugin is still being developed.
 
Nikos Stavros
Ranch Hand
Posts: 243
Python
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thankyou very much. I thought the problem was with me. I just down loaded the PDT all in one and I'm de-bugging well.

Always a pleasure Ernest
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic