|
Posted by Jerry Stuckle on 09/15/07 13:37
Siv Hansen wrote:
> I'm currently working with a server with error reporting level 0,
> which is good if this was purely a production server. It's not. I have
> fourty students trying to learn php programming on this server and
> displaying errors will be a good thing in a learning situation.
>
> Is there any way to override the error reporing level set by the
> server admin? I do not have access to php.ini and server admin will
> never agree upon changing error reporting level for the server.
>
> I tried error_reporting(E_ALL) and ini_set('display_errors', 1)
> without success.
>
>
> What to do?
>
If this server is used for training, it should not be used as a
production server, also. There are too many things students can do to
bring it down. Plus, often you want to be able to change settings on a
training server for training purposes.
I always keep my training servers separate from production. Servers
aren't that expensive, and you really don't need the biggest and fastest.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|