RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Alice Wei
> From: ak...@telkomsa.net > To: aj...@alumni.iu.edu; php-windows@lists.php.net > Subject: RE: [PHP-WIN] PHP Debugger for Windows? > Date: Tue, 3 Aug 2010 16:53:23 +0200 > > -Original Message----- > From: Alice Wei [mailto:aj...@alumni.iu.edu] > Sent: 03 Augu

RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Alice Wei
> From: ak...@telkomsa.net > To: aj...@alumni.iu.edu; php-windows@lists.php.net > Subject: RE: [PHP-WIN] PHP Debugger for Windows? > Date: Tue, 3 Aug 2010 13:38:21 +0200 > > -Original Message----- > From: Alice Wei [mailto:aj...@alumni.iu.edu] > Sent: 03 August

[PHP-WIN] RE: R: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Alice Wei
> From: ph...@andrioli.com > To: aj...@alumni.iu.edu > Subject: R: [PHP-WIN] PHP Debugger for Windows? > Date: Tue, 3 Aug 2010 09:14:28 +0200 > > > > -Messaggio originale- > > Da: Alice Wei [mailto:aj...@alumni.iu.edu] > > > > Hi, > >

[PHP-WIN] PHP Debugger for Windows?

2010-08-02 Thread Alice Wei
Hi, I am exploring some of the possible tools that I could use for PHP debugging purposes on Windows operating system. Before, I always use a Linux system on the side by connecting it remotely to debug my PHP when it crashes, or if it does not display the desired output. Does anyone know an

RE: [PHP-WIN] PHP Installation Problem

2010-06-07 Thread Alice Wei
m Installer, and now it is working! Alice > -Original Message- > From: Venkat Raman Don [mailto:don.ra...@microsoft.com] > Sent: Monday, June 07, 2010 10:49 AM > To: Alice Wei; harlequ...@gmx.de; php-windows@lists.php.net > Subject: RE: [PHP-WIN] PHP Installation Prob

RE: [PHP-WIN] PHP Installation Problem

2010-06-07 Thread Alice Wei
> Date: Mon, 7 Jun 2010 17:47:31 +0200 > From: harlequ...@gmx.de > Subject: Re: [PHP-WIN] PHP Installation Problem > To: aj...@alumni.iu.edu; php-windows@lists.php.net > > Hi Alice, > > Alice wrote: > > I have installed PHP from using PHP > > 5.2.13 installer [20,929Kb] - 25 February 2010, an

[PHP-WIN] PHP Installation Problem

2010-06-07 Thread Alice Wei
Hi, I have installed PHP from using PHP 5.2.13 installer [20,929Kb] - 25 February 2010, and for some reason, the PHP folder did not show up on my Windows C:\ folder. When I tried to execute a PHP script from my IIS, it tells me HTTP Error 404.3 - Not Found The page you are requesting

[PHP-WIN] PHP Page on IIS 7.5 Not Found

2010-06-06 Thread Alice Wei
Hi, Just installed IIS on my Windows 7 system, and everything seems great until I tried to execute a PHP script. I am sure that the code itself works, because the same code works on LAMP. This is the error I get: HTTP Error 404.3 - Not Found The page you are requesting cannot be s

RE: [PHP-WIN] Send Mail from PHP Using SMTP Authentication

2010-04-13 Thread Alice Wei
Date: Tue, 13 Apr 2010 16:05:31 +0200 Subject: Re: [PHP-WIN] Send Mail from PHP Using SMTP Authentication From: tyr...@gmail.com To: aj...@alumni.iu.edu CC: php-windows@lists.php.net On Tue, Apr 13, 2010 at 3:54 PM, Alice Wei wrote: Date: Tue, 13 Apr 2010 15:42:29 +0200 Subject: Re

RE: [PHP-WIN] Send Mail from PHP Using SMTP Authentication

2010-04-13 Thread Alice Wei
Date: Tue, 13 Apr 2010 15:42:29 +0200 Subject: Re: [PHP-WIN] Send Mail from PHP Using SMTP Authentication From: tyr...@gmail.com To: aj...@alumni.iu.edu CC: php-windows@lists.php.net On Tue, Apr 13, 2010 at 2:24 PM, Alice Wei wrote: Date: Mon, 12 Apr 2010 22:13:10 +0200 Subject: Re: [PHP

RE: [PHP-WIN] Send Mail from PHP Using SMTP Authentication

2010-04-13 Thread Alice Wei
il->send($to, $headers, $body); if (PEAR::isError($mail)) echo "" . $mail->getMessage() . ""; This is what I get: Fatal error: Class 'Mail' not found in C:\xampp\htdocs\Alice.Wei\web\mail.php on line 30 Do I need to move the Mail PEAR class to the same

[PHP-WIN] Send Mail from PHP Using SMTP Authentication

2010-04-12 Thread Alice Wei
Hi, Just as I am exploring some of my alternatives for using the mail() in PHP, I came across a web page that one of the users on the list has provided me: http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm. Does anyone know what the Mail.php is referring to

RE: [PHP-WIN] Mail Function Not Working

2010-04-12 Thread Alice Wei
cally as the authentication? I am getting confused. Alice > -Original Message- > From: Sascha Meyer [mailto:harlequ...@gmx.de] > Sent: Monday, April 12, 2010 9:19 AM > To: Alice Wei; php-windows@lists.php.net > Subject: Re: [PHP-WIN] Mail Function Not Working > >

RE: [PHP-WIN] Mail Function Not Working

2010-04-12 Thread Alice Wei
y are you using Live's SMTP servers? Is this hosted on live.com? If it > > is not, I am sure they will require authentication, if thy allow for > > this at all. If it is hosted there, probably needs to be localhost as > > the smtp server. > > > > Keith Davis (214) 9

[PHP-WIN] Mail Function Not Working

2010-04-12 Thread Alice Wei
Hi, I have an issue here where I see no PHP errors on my mail function usage, and yet I am not getting the mail in the desired account. Here is what I have for my PHP code: $headers = "From: aj...@alumni.iu.edu" ; $to = $email; $subject = "Comments Regarding My Site"; $body = "From: $y

FW: [PHP-WIN] Math Operator Problem?

2009-02-09 Thread Alice Wei
> From: ja...@ultratans.com > To: aj...@alumni.iu.edu > CC: php-windows@lists.php.net > Date: Mon, 9 Feb 2009 10:34:45 -0500 > Subject: Re: [PHP-WIN] Math Operator Problem? > > On Mon, 2009-02-09 at 07:32 -0500, Alice Wei wrote: > > Hi, > > > &

[PHP-WIN] Math Operator Problem?

2009-02-09 Thread Alice Wei
Hi, I have a snippet of code as follows: while (!feof($fh2)) { $total_time=0; $lines= fgets($fh2); $count= strlen($lines); if ($count == 0) { //There are no lines } else { $total_time += $lines; } } What I am trying to do here is to increment the tot

RE: [PHP-WIN] Mail Function Error

2009-02-09 Thread Alice Wei
Date: Sun, 8 Feb 2009 17:01:32 + > From: n...@chance.now > To: php-windows@lists.php.net > Subject: Re: [PHP-WIN] Mail Function Error > > > > > > > Hi, > > > > > > > > I am one of those people whose mail server is not on the local > > > > machine. It is on http://www.hotmail.com and t

RE: [PHP-WIN] Mail Function Error

2009-02-07 Thread Alice Wei
> > Hi, > > > > I am one of those people whose mail server is not on the local machine. > > It is on http://www.hotmail.com and the address is this email address. I > > currently constantly get this on my error log: > > > > [07-Feb-2009 06:39:15] PHP Warning: mail() [ > href='function.mai

[PHP-WIN] Mail Function Error

2009-02-07 Thread Alice Wei
Hi, I am one of those people whose mail server is not on the local machine. It is on http://www.hotmail.com and the address is this email address. I currently constantly get this on my error log: [07-Feb-2009 06:39:15] PHP Warning: mail() [function.mail]: Failed to connect to mailserver a

RE: [PHP-WIN] Re: Executing .exe files Issues

2009-01-23 Thread Alice Wei
> From: george.pitc...@ingenta.com> To: php-windows@lists.php.net> Date: Fri, > 23 Jan 2009 07:39:47 +> Subject: RE: [PHP-WIN] Re: Executing .exe files > Issues> > >| "Alice Wei" wrote in message> >| > news:snt101-w180f682380dc32dbf85bf9f0

[PHP-WIN] Executing .exe files Issues

2009-01-22 Thread Alice Wei
Hi, PHP Window Users: I have a snippet of code as in the following: The hello.exe was written in C and is meant to produce 6 files. The issue here is that when I tried to run the PHP here, I keep on seeing "Failed". Am I not supposed to execute exe files with this method? Any tip on th

RE: [PHP-WIN] An Unhandled Win32 Exception Occurred When Executing PHP From Windows

2008-10-31 Thread Alice Wei
When Executing > PHP From Windows > > Alice Wei wrote: > >> Alice Wei wrote: > >>> Hi, > >> To answer your question, the exe file is written in C and creates > > several output files that calculates various variables based on the > > user input (wh

RE: [PHP-WIN] An Unhandled Win32 Exception Occurred When Executing PHP From Windows

2008-10-31 Thread Alice Wei
> > Alice Wei wrote: > > Hi, > > To answer your question, the exe file is written in C and creates several output files that calculates various variables based on the user input (which the PHP handles). > > What I am surprised about is that when I run the exe file by i

RE: [PHP-WIN] An Unhandled Win32 Exception Occurred When Executing PHP From Windows

2008-10-31 Thread Alice Wei
2 Exception Occurred When Executing > PHP From Windows > > On 31 Oct 2008, at 12:25, Alice Wei wrote: > > I have been looking around for documents on http:// > > www.microsoft.com on the generation of win32 exception errors, but I > > am not exactly sure what >

[PHP-WIN] An Unhandled Win32 Exception Occurred When Executing PHP From Windows

2008-10-31 Thread Alice Wei
Hi, I have been looking around for documents on http://www.microsoft.com on the generation of win32 exception errors, but I am not exactly sure what steps I should take when the debugger is triggered by either a Shockwave file application, or from an HTTP Request. Here is the code snippet:

[PHP-WIN] Executing Exe File From PHP Errors

2008-10-30 Thread Alice Wei
Hi, I am wondering if anyone on this list has seen anything like this. I have a snippet of code that calls an exe file before it starts processing anything else from the php file. The code is called as follows: //execute program shell_exec("C:\Inetpub\wwwroot\incidence\my-man