Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [stp-dev] using XAMPP for web site development

Hi Oisin,

I have set it up using XAMPP and PHPEclipse, the only thing that I can think of right now is that I had to modify the httpd.conf from xampp/etc in order to create the proper DocumentRoot (by replacing the existing one there) and the alias to /eclipse
I see an "Allow from all" line here set for my eclipse project directory containing the WWW project. Below I just listed the lines corresponding to the changes made above, not sure if this helps. Good luck!

DocumentRoot "/Users/adrianmos/objectweb/workspaces/stp/WWW"

...

Alias /eclipse "/Users/adrianmos/objectweb/workspaces/stp/WWW/"
<Directory "/Users/adrianmos/objectweb/workspaces/stp/WWW/">
  Options Indexes MultiViews
  AllowOverride None
  Order allow,deny
  Allow from all
</Directory>

cheers,
Adrian.

On Jan 14, 2008, at 8:20 PM, Oisin Hurley wrote:

I had forgotten what a nightmare Eclipse website development is :]
I've set up xampp from scratch again, and can't get the thing to
run correctly at all -- there seems to be some forward motion when
I use the https URL on port 443, but the plain old HTTP piece
is troublesome, I can't seem to get the permissions right!

Adrian (Mos) - you managed to get set up correctly recently, did
you have permissions issues when using XAMPP and PHPEclipse from
Eclipse? Or did you set it up another way?

cheers
 --oh

----------------------------
IONA Technologies PLC (registered in Ireland)
Registered Number: 171387
Registered Address: The IONA Building, Shelbourne Road, Dublin 4, Ireland
_______________________________________________
stp-dev mailing list
stp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/stp-dev



Back to the top