weblogic server Stopped, Error connecting to WebLogic domain

I was setting up my first workspace in Eclipse and Weblogic 10.3.6 server, I started the Weblogic server and I am getting the below error in Server’s Tab of eclipse. Oracle WebLogic server 11gR1 (10.3.6) base_domain [Stopped, Error connecting to WebLogic domain] When I hopped on to the console tab of eclipse It says that … Read more

How to use xdebug with eclipse IDE for PHP?

Hi my PHP project is set up on a remote test machine. I need to debug it using eclipse IDE. How shall I progress. I came to know i should prefer Xdebug rather than zend debugger. Please clarify my doubt. Answer Here is a great guide: http://devzone.zend.com/article/2930 When you get to this bit: xdebug.remote_enable=On xdebug.remote_host=”localhost” … Read more

FTP automate download process not working on windows

I have my script as following: <?xml version=”1.0″ encoding=”UTF-8″?> <project name=”Getting from FTP” default=”info” basedir=”.”> <target name=”info”> <property name=”testfolder” value=”My\Test\Folder\Path” /> <echo>Hello World – Welcome to Apache Ant!</echo> <echo>Java version: ${ant.java.version}</echo> <echo>Ant Version: ${ant.version}</echo> <echo>Base Dir: “${basedir}”</echo> <mkdir dir=”${testfolder}\ant-test”/> <classpath> <fileset dir=”${basedir}” includes=”*.jar” /> </classpath> <ftp action=”get” server=”my.server.location.somewhere” userid=”username” password=”password” remotedir=”/path/on/my/server” verbose=”yes” > <fileset dir=”${testfolder}\ant-test”> … Read more

Windows firewall blocking inbound port 9000 (xdebug), even though inbound rule created

I have been trying to allow computer A (LAMP with xdebug configured) connect to computer B (Eclipse IDE with xdebug) via port 9000. Both are on running on my local network. I created an inbound rule to allow connections to port 9000, but connections are still blocked. The blocked connections to port 9000 appear to … Read more

Where should I place external stylesheets for servlets using Tomcat and Eclipse?

I have a website project in Eclipse using servlets which is running on Tomcat. In one of the servlets I reference an external stylesheet as such: <link rel=”stylesheet” type=”text/css” href=”style.css” /> Where would I put this style.css for it to work? I have tried almost every folder in the project directory and in the site … Read more

Eclipse Workspace Configuration Save Directory

I’m trying to make a shared copy of Eclipse be used by several users but I can’t get the Eclipse installation to use separate workspace definitions for different users: Instead this configuration is saved and loaded somewhere under the shared Eclipse installation directory, which is bad. Where do I change the setting about where the … Read more

svn: Can’t open file ‘/var/www/svn/repo/db/txn-current-lock’: Permission denied

On Fedora os, I have problem to access SVN Repo and commit via HTTP. Here is my config file /etc/httpd/conf.d/subversion.conf LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so LoadModule dontdothat_module modules/mod_dontdothat.so <Location /svn> DAV svn SVNParentPath /var/www/svn SVNListParentPath On SVNPathAuthz Off AuthType Basic AuthName “myRepos” AuthUserFile /etc/svn-pass AuthzSVNAccessFile /etc/svn-authz Require valid-user </Location> Error: Share project was failed. … Read more