Search found 25 matches

by Flash05
Wed Aug 18, 2004 9:40 am
Forum: Installation and Configuration
Topic: PHP.exe or the ISAPI?
Replies: 0
Views: 2464

PHP.exe or the ISAPI?

What's the difference between the two? Isapi and the php.exe? Thanks
by Flash05
Sun Feb 08, 2004 8:43 pm
Forum: PHP - Code
Topic: Functions
Replies: 7
Views: 704

Functions

Why can't i run functions? Is there a setting on php.ini? thanks!
by Flash05
Wed Jan 21, 2004 12:05 am
Forum: PHP - Code
Topic: MSSQL PHP
Replies: 3
Views: 456

I let them access .htm page that calls a .php file. After pressing the submit button (that calls .php) the window popped asking for password. How can i solve this so that they can view my pages? tnX!
by Flash05
Tue Jan 20, 2004 11:59 pm
Forum: PHP - Code
Topic: MSSQL PHP
Replies: 3
Views: 456

page cannot be displayed and a window pops asking for password. though it seems that all .php can't execute. i let them access .htm and was able to see it.
by Flash05
Tue Jan 20, 2004 11:30 pm
Forum: PHP - Code
Topic: MSSQL PHP
Replies: 3
Views: 456

MSSQL PHP

Help... I made a script that access MS SQL using PHP. When I view it on my pc "http://localhost/mssql.php" it works fine. But others try to view it "http://192.168.0.21/mssql.php", it won't appear on their browser, an error html appears instead. The script uses "sa" acc...
by Flash05
Tue Jan 20, 2004 4:36 am
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

Configuring my IIS/SMTP for mail()

Newbie here... Can somebody walk me through the process of configuring my IIS's SMTP so that I can test my mail form. Im using Windows XP Pro, IIS 5.01, PHP... Thanks in advance... :D
by Flash05
Mon Jan 19, 2004 7:57 pm
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

On-line. Im using XP/iis5.01. I was able to send mail and was happy about it. Turned off my pc, then when I got back to try again my script for sending email, it won't send... Strange... btw, here's d script: <?php $mail_to = "testing@yahoo.com"; $mail_subject = "Testing"; $mail_...
by Flash05
Mon Jan 19, 2004 6:31 pm
Forum: PHP - Code
Topic: Editing of PHP.iNi
Replies: 7
Views: 1272

I am using XP/iiS5.01 and was testing mail(). I was able to send some email to my inbox. The value of SMTP on my php.ini was localhost and i commented out the mail_from. Then when I got back again to test my script, i no longer works. Is there a setting in php.ini or iis or smtp to be able for me se...
by Flash05
Mon Jan 19, 2004 6:10 am
Forum: PHP - Code
Topic: Editing of PHP.iNi
Replies: 7
Views: 1272

Follow up: i was able to use localhost iis/smtp server in mail(). Unfortunately, when i got back to my pc i can no longer send. Im sure with my code. Is there a setting on how I can send again using my iis' default smtp? Tnx!
by Flash05
Mon Jan 19, 2004 2:38 am
Forum: PHP - Code
Topic: Editing of PHP.iNi
Replies: 7
Views: 1272

Editing of PHP.iNi

In Windows XP/iiS, if you edit the php.ini; let us say error_reporting turn on from off. Will take effect immediately? Incase not, should I restart the whole pc or the service only? Tnx for help... :D
by Flash05
Mon Jan 19, 2004 2:30 am
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

What maybe the reason behind this? I'm not sure if I made some changes yesterday to my iiS? Can someone here help me setup my iiS/smtp serveR? tnx! Thankyou also for the help in the script... :D
by Flash05
Sun Jan 18, 2004 9:55 pm
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

TNx for reply. Your suggested code works, the result is "DOH!" It wasn't able to send the mail. Actaully i got the code from a book and modified it. It works fine yesterday morning. When I tried it later, it no longer worked. I'm not sure what's the problem but I think it's not the code (m...
by Flash05
Sun Jan 18, 2004 9:14 pm
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

Tnx for the reply. <?php $mail_to = "testing@yahoo.com"; $mail_subject = "Testing"; $mail_body = "Test body..."; $mail_from = "From:Testing@PHP.com"; if(mail($mail_to, $mail_subject, $mail_body, $mail_from)) echo "Successfully sent the e-mail \"$mail...
by Flash05
Sun Jan 18, 2004 7:57 pm
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

Btw, is there special configuration or setting for iiS or smtp to be able to send again emails?
by Flash05
Sun Jan 18, 2004 6:59 pm
Forum: PHP - Code
Topic: Mail() in IIS5/SMTP
Replies: 10
Views: 837

Mail() in IIS5/SMTP

Question regarding PHP/iiS5/SMTP. I'm testing my script for my mail form: <?php $mail_to = "testing@yahoo.com"; $mail_subject = "Testing"; $mail_body = "Test body..."; $mail_from = "Testing@PHP.com"; if(mail($mail_to, $mail_subject, $mail_body, $mail_from)) ec...