Hi i am using php eclipse neon 3 and tfs as source controller .
My problem is I cannot view the file difference in source control explorer change set. When I click on details getting this error
Please help
I tested at my side, everything works as expected.
Eclipse for PHP Developers
Version: Neon.3 Release (4.6.3)
Build id: 20170314-1500
Please check if you have the hsqldb.jar under
C:\eclipse\plugins\com.microsoft.tfs.core_14.123.1.201709051449\libs\hsqldb-1.8.0.10-ebcdic
If not just try to download from here and copy it there.
If that still not work, just try to uninstall then re-install the Eclipse and the TFS Plugin.
Related
I just created an empty HTML5 project and could not run it through the new Chrome netbeans Connector feature. I have added the netbeans connector extension to my chrome browser, but I keep getting this warning "Could not access Url through external browser. Check browser configuration."
I have the latest netbeans version 7.3 and jdk 7u17. Chrome browser Version 25.0.1364.172 m.
Anyone with some suggestions?
I got the same error using OpenSUSE 12.3 x86_64.
My solution was this: go to Netbeans Menu > Tools > Options. In the General tab press Edit and then edit the command for Chrome browser to:
/opt/google/chrome/google-chrome
Hope it works for you.
I'm having the same issues with Netbeans 7.3.1 and Chromium 29.0; editing the "Chrome" browser executable in the "Tools>Options>General" section to point to the "chromium" exec location didn't seem to make a difference at first.
Open the project properties, you can further edit the application with which the file will open/execute. The default browser is "Chrome with NetBeans integration". So far, changing that "Browser" field in the
project properties to point to the edited Chrome exec runs the file in the Chromium browser. However, I'm not sure how well--if at all--it integrates with NetBeans itself.
Try running it in the embedded browser. Does it work?
In this case it's probably best to file a bug report at http://netbeans.org/community/issues.html. Where/when does the warning appear? If you file a bug, please attach the IDE log and a screenshot of the error. Thanks.
I have Eclipse running on Windows 7, and am trying to work out how to get PHP support in my projects. Highlighting and intellisense seems to be working quite alright, but when I right-click my project and go to "Configure", the option "Add PHP Support" is grayed out.
Would anyone know how I could get that to be enabled, please?
Thanks in advance!
Are you sure that's what you want to do? I just tested in my Eclipse install, and everything that is already a PHP project has that option greyed out. The only project I can choose that option on is a Java project.
If you create a project by File -> New -> PHP Project then you don't need to do anything else to enable PHP support.
I've installed Eclipse PDT Helios SR1 GTK for 64bit Linux (Ubuntu Maverick clean install).
I added the Subversive plugin for using Subversion, and installed the SVNKit 1.3.2 connector.
I'm using Sun's java and not the OpenJDK version.
When I synchronize a php project, and double click a php file for comparing the differences I made compared to the base revision - it opens a window of a compared file, but the window is empty - I see the gray background as if no file is opened.
When I open files which are not set as a PHP file, it works fine.
(If I'll take a file with a .module extension and define it as a php file in the Content Types preferences pane, it will act badly as described above. If I'll remove this definition, it will work [as if I compared a plain text file]).
Anybody has any idea why is this happening ?
If I missed any important information that will help diagnose or solve this issue, lemme know and I'll add it.
Thank you.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=326194
There's a fix that you can install, although it's on a non-release update site.
Unbelievably, they still haven't fixed it in the main update site.
if I run my updated Eclipse Helios including PDT it will not show the options for the PHP perspective.
I run Eclipse under Windows 7 and Java 1.6.0_21. I tried to run the "-clean" option and already reinstalled PDT, but no success.
What could be the problem?
Thank you,
-lony
First, please check the Java build you are using. There's a reported issue with Windows 7 and Java 1.6.0_21 with builds prior to b07. See this message for more details and solutions.
If this is not the problem, look at the workspace log (Windows → Show View → Error Log) and see if there are any related errors. The errors could be related to the installation as well. If you find anything, add it to your question.
You might also want to download the prepackaged Eclipse PDT package from the eclipse.org site and see if it works OK on your machine.
I have a project that's intended to use some PHP as well as Java and Javascript, so I installed the PDT PHP plug-in for Eclipse, using the Install New Software menu option. Now Eclipse agrees PDT is installed, but no PHP features like creating or editing PHP files are appearing anywhere. Is there something else I need to do to activate PDT? (I did restart Eclipse like it said I needed to.)
Right click on your project, Configure (it's at the bottom of the list)->Add PHP Support...
After it's done, you should see a little P symbol in the project's icon.
Just create new project using the wizard, and choose PHP one. After Eclipse will know that your project is actually based on PHP, it will show you all the features.
In case if you have existing project, just open the PHP perspective.
I've once had a similar problem. Eclipse was running with the JRE 1.4, and it seems the JRE 1.5 or later is required to run the PDT. I switched to Java 1.6 and that solved the problem.
I run into this sometimes with eclipse plugins.
Have you tried uninstalling it, removing the jar and files it from eclipse/plugins and eclipse/features, then installing it again?
If you don't feel like doing that. Try installing it in a clean eclipse instance and if it works then it's just a config issue with eclipse.
You might have not installed all of the tools too.
The solution I eventually came up with was to just install Aptana Studio, a PHP IDE based on Eclipse, whose standalone version can coexist happily with the regular Eclipse on the same machine.
In order to have PHP support in eclipse project, you need to add PHPNature to the project. It's a kind of configuration paramter of eclipse project. When you craete a new PHP project using a wizard, check the .project file in a new project directory. There is a PHPNature line. Copy this line into .project of your java project.
Another solution is to separate java and php code in a different projects, each one craeted by right wizard.