[studs-user] Re: studs.taglib.html.HtmlFormTag
Status: Beta
Brought to you by:
mojavelinux
|
From: Maarten S. <mgs...@wa...> - 2004-09-06 20:29:34
|
Hi Dan,
> I got Studs 0.9.2 to run on your server fine (though I know of a few small
> outstanding glishes, likely to be the same reference bug error). Go give it a
> whirl. I wasn't about to use .htaccess though as it would always give me an
> error page which I could not read ;) I am interested how you have that
> configured on your server.
The error was problem a Dutch version of the Internal Server Error :)
My current (Apache 1.3.x) .htaccess for Studs looks something like this:
<FilesMatch "^.*$">
deny from all
</FilesMatch>
# /bla/ is the same as /bla/index.php, so allow it as well
<FilesMatch "$">
allow from all
</FilesMatch>
<FilesMatch "index\.php$">
allow from all
</FilesMatch>
<FilesMatch "^.*\.(gif|jpeg|jpg|png|css|js|pdf|doc)$">
allow from all
</FilesMatch>
# Not necessary for Apache 1.3.x
#AcceptPathInfo On
php_value error_reporting 2047
php_value register_globals 0
php_value magic_quotes_gpc 0
php_value include_path WEB-INF/lib:WEB-INF/classes
php_value html_errors 0
php_value allow_call_time_pass_reference 1
That should help getting rid of the Internal Server Error!
Maarten
P.S. My apologies for taking so long to reply!
--
"The greatest mistake you can make in life
is to be continually fearing you will make one."
- Elbert Hubbard
|