Is there a php compiler to let me know of specific errors rather then just the line #? is there something I can config in the ini? Right now I have the errors logged to a txt file, but that is not very detailed. any ideas?
as with most programming languages, the compiler isn't your best friend when it comes to fixing a problem. the compiler is probably not going to give you any more information that what is in the log.
sry
You probably mean debugger rather than compiler.
I dont know of any though.
Some PHP-IDE's have "debuggers". I haven't seen a good one yet though.
The best debugger is experience ..... Part of the learning curve is being able to decipher what error messages mean.
GM