Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-22 Thread Zeffie
top posting still sucks... There is SOME FILE on the webserver that has a permission error. The user that apache is running under doesn't have permission to access something local that it needs. Then I would look into what I think is your badly built versions of whatever you built around in /

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread httpd2
Amen Bill! Keith Roberts In theory, theory and practice are the same; in practice they are not. On Tue, 21 Mar 2006, William A. Rowe, Jr. wrote: > To: users@httpd.apache.org > From: "William A. Rowe, Jr." <[EMAIL PROTECTED]> > Subject: Re: [EMAIL PROTECTED] php cra

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread William A. Rowe, Jr.
Noah Silverman wrote: This was going to be a simple task of updating apache to 2.2. Noah - from the Apache side of this coin, if this is mission critical, why go with the bleeding edge / dot-zero release? Why not stay at something proven, and attempt to change gears at the last minute, which

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Thanks for the suggestion, but not that easy. We have an entire dynamic content system that interfaces with mysql. The problem is something internal with PHP, not our code. I wish it was that easy. -N On Mar 21, 2006, at 8:19 PM, Rod Macpherson wrote: I can tell it's important becaus

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Rod Macpherson
I can tell it's important because you offered a hundred bucks for a solution -- I hope the sarcasm is clear. You have a 100% reproducible problem that PHP will not let you debug? This sounds like a PHP problem. Replace the page with something that works and fix it later. On 3/21/06, Noah Silverman

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
William, I regret the accusations. i am an accomplished developer working for a major firm. This was going to be a simple task of updating apache to 2.2. Something along the way got screwed up. I've spent close to 24 hours on this with no sleep. We, of course, tried this on a test seve

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread William A. Rowe, Jr.
Noah Silverman wrote: Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. Noah - do this again and will simply unsub you from at least the apache.org lists, and I'm sure the

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Thanks, I'll try it now. if it works, paypal will be on the way. Thanks again, -N On Mar 21, 2006, at 7:43 PM, William A. Rowe, Jr. wrote: Noah Silverman wrote: Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread William A. Rowe, Jr.
Noah Silverman wrote: Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. You don't enable zts so I seriously doubt your php is threadsafe; you configure httpd without speci

[EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. Thanks, -N -- The issue: when I load a php file in a browser that references mysql, it crashes the a

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Nick, I'll happily pay a "professional" rate if someone wants to fix this. On Mar 21, 2006, at 6:39 PM, Nick Kew wrote: On Wednesday 22 March 2006 01:23, Noah Silverman wrote: Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypa

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Nick Kew
On Wednesday 22 March 2006 01:23, Noah Silverman wrote: > Hello, > > I have a mission critical problem that I cant seem to solve. Can > anyone help?? > > I'll even offer $100 paypal if someone gives me the answer to solve > this issue. If it's mission-critical, consider paying a professional rate

[EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. Thanks, -N -- The issue: when I load a php file in a browser that references mysql, it crashes the a

[EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. Thanks, -N -- The issue: when I load a php file in a browser that references mysql, it crashes the a

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Wrong permissions.The mysql box is fine. This isn't a database issue at all, but some kind of resource/permission error on the webserver.There is SOME FILE on the webserver that has a permission error.  The user that apache is running under doesn't have permission to access something local that it

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Kishore Jalleda
ok first try doing this on the mysql box ( giving liberal permissions initially) GRANT ALL ON *.* TO 'user'@'%' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; where user--- the mysql user with which your php on apache is accessing mysql. password-- the users password i am assuming you know the user/pa

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Kishore,I think you are very close!!Mysql is on a different box than the webserver.I can use the CLI from the same box as the webserver.  Works for the CLI, doesn't for for apache.The Crash is literally a segmentation fault of the apache thread.I tried doing a su to the apache user.  The CLI then s

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Kishore Jalleda
I am assuming this has to do with permissions on mysql So is the client machine (from which you are loading the php page through a browser) on a different box than the one on which mysql is installed???, if so check to make sure that this client is allowed to access the mysql server by giving

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Works fine. I can even call the SAME php file that the browser calls and IT WORKS FROM THE COMMAND LINE. It only fails when calling the php file through a browser (and apache.) -N On Mar 21, 2006, at 3:11 PM, Nick Jones wrote: --- Noah Silverman <[EMAIL PROTECTED]> wrote: Mike, Ca

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Nick Jones
--- Noah Silverman <[EMAIL PROTECTED]> wrote: > Mike, > > Can't seem to find more than one php.ini file > > The problem existed with php 4.4.2. > I then tried 5.1.2 to see if it would help. > > The problem is identical for either version... > > -N > Noah, What happens if you try to access

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Mike, Can't seem to find more than one php.ini file The problem existed with php 4.4.2. I then tried 5.1.2 to see if it would help. The problem is identical for either version... -N On Mar 21, 2006, at 2:57 PM, Michael Crute wrote: On 3/21/06, Noah Silverman <[EMAIL PROTECTED]> wrote: He

Re: [EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Michael Crute
On 3/21/06, Noah Silverman <[EMAIL PROTECTED]> wrote: > Hello, > > I have a mission critical problem that I cant seem to solve. Can > anyone help?? > > I'll even offer $100 paypal if someone gives me the answer to solve > this issue. > > Thanks, > > -N > > -- > > The issue: >

[EMAIL PROTECTED] php crashes with msyql

2006-03-21 Thread Noah Silverman
Hello, I have a mission critical problem that I cant seem to solve. Can anyone help?? I'll even offer $100 paypal if someone gives me the answer to solve this issue. Thanks, -N -- The issue: when I load a php file in a browser that references mysql, it crashes the a