You may need to include php code in your script to get the error message 
to display in the client browser.  This is the code I use in perl to 
handle errors.  It is included in my main class that is called by each 
script.  See the link at the bottom of the page of something similar for 
php:

#----------------------------------------------------

sub BEGIN
{
      sub handle_errors
      {
            my $msg = shift;

            print qq
            ~
                  Content-type: text/html\n\n
            <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
            <html lang="en">
            <head>
            <title>Software - Master (TM) Shopping Cart</title>\n
            </head>
            <body>
            <center>
            <TABLE
                align       = "center}"
                cellspacing = "0"
                cellpadding = "15"
                BORDER      = "5"
                WIDTH       = "90%"
                style       =
                "
                    text-align       : left;
                    color            : white;
                    background-color : red;
                    font-family      : Arial, Garamond, Times New Roman, 
serif;
                    font-size        : 20px;
                    font-style       : normal;
                    font-weight      : 100;
                "
            >

            <tbody>

            <tr>
            <td align="center">
            Error
            </td>
            </tr>
            <tr>
            <td VALIGN="top">

            <TABLE
                align       = "center}"
                cellspacing = "0"
                cellpadding = "15"
                BORDER      = "0"
                WIDTH       = "100%"
                style       =
                "
                    text-align       : left;
                    color            : black;
                    background-color : white;
                    font-family      : Arial, Garamond, Times New Roman, 
serif;
                    font-size        : 20px;
                    font-style       : normal;
                    font-weight      : 100;
                "
            >
            <tr>
            <td>

                  Oh gosh, got an error:<br><br>
                  $msg
                  <br>
            <br>
            Please notify
                  <a href='mailto:[EMAIL PROTECTED]'>Leland 
Jackson, CPA</a>
                  and let him know.
            <br>
            <br>

            </td>
            </tr>

            </table>

            </td>
            </tr>

            </tbody>
            </table>
            </center>
            </body>
            </html>
            ~;
      }
      set_message( \&handle_errors );
}

http://www.zend.com/zend/spotlight/error.php

#-----------------------------------

Regards,

LelandJ

Kenneth Kixmoeller/fh wrote:
> Hey, folks -- - -
>
> Back from a great 2-week vacation -- I sit down at my computer ready  
> to get all programmy -- I find 2-week-old frustrations jumping right  
> back into the pit of my stomach.
>
> I have been on a quest to find a PHP development tool. I have all of  
> your recommendations safely tucked away for further consideration.
>
> Wondering what, if any, experience y'all have had with Zend, the  
> organization?
>
> Background: I tried the evaluation version of Zend Studio -- I really  
> like the UI of the product, generally -- autofilling keywords and  
> commands -- being able to create your own language expansions -- and  
> especially having allegedly-integrated debugging. What I don't like  
> about it is M$-like stuff -- having to install all kinds of stuff to  
> do PHP "their way," creating a lot of overhead, and feeling like to  
> do it right I have to buy this and that and the other thing from  
> them. Starts feeling like I am again on the "their way or the  
> highway" track we have all come to love.
>
> The biggest thing I'm wondering about is (what feels like) their  
> utter incompetence or indifference. I could not get (and mostly still  
> can't get) debugging working. I asked about debugging (carefully  
> including details of OS, versions, exact error messages and all  
> relevant details) to both their their technical support and on the  
> user forum. In the forum, I got nothing but a single "fan boy"  
> response (sounded like a press release) and it didn't address the  
> specifics of my question at all. Their technical support answers took  
> 3-5 days, even though I marked the question "high-priority," because  
> it was actually inhibiting me from getting anything done at all. The  
> responses were macro-generated, again not addressing any of my  
> specific questions. Mostly they asked for "more information," even  
> when I had *already supplied* that very information they requested.  
> IOW, it seems like they wanted to give pat answers, and really didn't  
> read the question at all.
>
> So, anybody have experience with Zend, the organization, that you  
> would share?
>
> Ken
>
>
[excessive quoting removed by server]

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to