Eclipse: Could not load the Tomcat server configuration at \Servers\Tomcat v7.0 Server at localhost-config

I followed the article of installing Eclipse Web Tool Platform (WTP) from these two links: Servlet and JSP development with Eclipse WTP Setup Eclipse and Tomcat 7 on Linux Now, while running my project in Eclipse, I get the following error message: Could not load the Tomcat server configuration at \Servers\Tomcat v7.0 Server at localhost-config … Read more

Eclipse JSP: java.lang.UnsupportedClassVersionError: com/mysql/jdbc/Driver : Unsupported major.minor version 51.0

My JSP project was running fine on Eclipse. However, I got the following error when I tried to add some value to database through my project data insert form. org.apache.jasper.JasperException: javax.servlet.ServletException: java.lang.UnsupportedClassVersionError: com/mysql/jdbc/Driver : Unsupported major.minor version 51.0 After googling about the error, I found out that there was mismatch in the JVM version that … Read more

Tomcat Eclipse Error: Multiple contexts having same path

I got the following error while working on a JSP project on Eclipse IDE. I have been using Tomcat server version 7. Here is the error message: ‘Publishing to Tomcat v7.0 Server at localhost…’ has encountered a problem. Could not publish server configuration for Tomcat v7.0 Server at localhost. Multiple Contexts have a path of … Read more

Tomcat Eclipse Error: Starting Tomcat v7.0 Server at localhost has encountered a problem

I have been using Tomcat server version 7. I get the following error message when I try to run the JSP application from Eclipse IDE. Starting Tomcat v7.0 Server at localhost has encountered a problem. Several ports (8005, 8080) required by Tomcat v7.0 Server at localhost are already in use. The server may already be … Read more

Windows: How to install and setup XDebug in PHP Eclipse?

PHPEclipse is a PHP development plugin for the Eclipse IDE Framework. And, XDebug is a PHP extension which provides debugging and profiling capabilities. I am using Windows 7 Operating System and WAMP Server. Install XDebug in Windows – Create a php file with the code phpinfo(). – Open the newly created file in a browser. … Read more

Ubuntu Linux: How to install and setup XDebug in PHP Eclipse? [IMAGES]

PHPEclipse is a PHP development plugin for the Eclipse IDE Framework. And, XDebug is a PHP extension which provides debugging and profiling capabilities. I am using Ubuntu Operating System. This article provides a step-by-step guide on installing and setting up XDebug in PHP Eclipse in Ubuntu. Install XDebug in Ubuntu Open terminal and type the … Read more