Re: [PHP-WIN] Question Regarding Local Host SubDirectory

2003-06-23 Thread Douglas Pollock
Melih thanks for responding. I should have copied the names of the .PHP files instead of the .HTM files. C:\Inetpub\wwwroot\php02.php C:\Inetpub\wwwroot\PHP\php02.php These were accessed as http://localhost/php02.php http://localhost/PHP/php02.php However, the .PHP files give the same result. W

[PHP-WIN] php with Exchange server

2003-06-23 Thread Robin Baxter
I am having problems setting up mail. Our network uses Exchange Server for emails, and I am running PHP under Abyss Web Server. Unfortunately, due to legacy issues, our Exchange server is configured for X400 mail does this mean that the normal mail() function in php will not work, or is there

Re: [PHP-WIN] Question Regarding Local Host SubDirectory

2003-06-23 Thread Melih Onvural
How is the script working if you have a .htm extension instead of a .php extension. could this be the problem? melih > > From: "Douglas Pollock" <[EMAIL PROTECTED]> > Date: 2003/06/23 Mon PM 05:16:52 EDT > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] Question Regarding Local Host SubDirectory > >

[PHP-WIN] Question Regarding Local Host SubDirectory

2003-06-23 Thread Douglas Pollock
I have installed PHP4 on Windows XP Professional. I have a C:\Inetpub\wwwroot and a C:\Inetpub\wwwroot\PHP directory. When I use IE6 with a URL of http://localhost/php02.htm the script php02.htm works fine. When I use IE6 with a URL of http://localhost/php/php02.htm I get a "The page cannot be foun

php-windows Digest 23 Jun 2003 19:03:05 -0000 Issue 1791

2003-06-23 Thread php-windows-digest-help
php-windows Digest 23 Jun 2003 19:03:05 - Issue 1791 Topics (messages 20507 through 20524): Re: Apache acts weird I think it's because of PHP 20507 by: Cristian MARIN Re: Using PHP4 20508 by: Cristian MARIN Re: php.ini values ignored? 20509 by: Cristian MARIN

Re: [PHP-WIN] php.ini values ignored?

2003-06-23 Thread Kit DeKat
At 01:14 PM 6/23/2003, you wrote: maybe is not the good php.ini you are using ... You are modifing a php.ini and php use another one. First of all look in the phpinfo() and see what file is it used. Second add a dummy line in the php.ini like: lkjasdlaksdj;alskdas;ldkajsd and you should be prompted

Re: [PHP-WIN] Opening a file

2003-06-23 Thread Melih Onvural
the fopen function does a really good job of opening files and also allows you to limit what the user can do. However, if you wanted to simply open up a word file then just make it a link using and it will open the file for you melih > > From: "Seth Buntin" <[EMAIL PROTECTED]> > Date: 2003/06

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Melih Onvural
Actually the super global variable that were accepted before PHP 4 have all been depreciated. if you're using get then there's a new server variable _SERVER[formTagName] that passes variables across pages. melih > > From: "Cristian MARIN" <[EMAIL PROTECTED]> > Date: 2003/06/23 Mon PM 01:17:34 E

Re: [PHP-WIN] Phpinfo.php

2003-06-23 Thread Stuart Felenstein
Oh sorry, no I was just responding to Mathias...my php is working. Thanks though Stuart sven <[EMAIL PROTECTED]> wrote: hi stuart, try this: move php.ini to \winnt leave php4ts.dll and php4apache2.dll in \winnt\system32 in httpd.conf change the loadmodule line to: LoadModule php4_module /PATH_TO

Re: [PHP-WIN] Phpinfo.php

2003-06-23 Thread sven
hi stuart, try this: move php.ini to \winnt leave php4ts.dll and php4apache2.dll in \winnt\system32 in httpd.conf change the loadmodule line to: LoadModule php4_module /PATH_TO/php/sapi/php4apache2.dll (note the apache2!) and tell me if this worked for you. ciao SVEN Stuart Felenstein wrote: >

[PHP-WIN] Opening a file

2003-06-23 Thread Seth Buntin
I need a little bit of help. I have created a program that will list all the files in a directory I just need to know how to make a link to these files so that when you click on them it opens them up... Thanks, Seth -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-WIN] Re: Parsing Error: Short just a few lines of code, please look

2003-06-23 Thread sven
hi stuart, Stuart Felenstein wrote: > //create short variable names > $LastName = $HTTP_POST_VARS['LastName']; > $Address1 = $HTTP_POST_VARS['Address1']; > $City = $HTTP_POST_VARS['City']; > $State = $HTTP_POST_VARS['State']; > $Zip = $HTTP_POST_VARS['Zip']; > $HTele = $HTTP_POST_VARS['HTele']; >

[PHP-WIN] Search Engine Friendly URL's

2003-06-23 Thread Gary Holyoak
Hi, Recently read an article about search engine friendly urls. (http://www.zend.com/zend/spotlight/searchengine.php?days=1&f_id=searche ngine&mode=&kind=sl&article=searchengine) Seems good but for the life of me I cant get it to work on my IIS server. I've tried all the suggestions in the

[PHP-WIN] Printing functions

2003-06-23 Thread Luis Moreira
Hi       Can someone tell me why on earth the following script writes one line per page (besides a blank page between pages 1 and 2) ?     And this only if I specify a default printer on PHP.INI, otherwise the printer_open function fails ...       Thanks     $handle = printer_open();

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Cristian MARIN
Then try: Any of this will work for the moment. -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel: +4021 312.53.12 Tel/Fax: +4021 312.51.91 [EMAIL PROTECTED] "Stephen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL P

Re: [PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Stephen
$HTTP_GET_VARS - This is an example of the old style super globals. However, php is now moving over to a simpler method... $HTTP_GET_VARS is becoming $_GET['x'] Post variables all arrvie as $_POST['x'] Session variables are $_SESSION['x'] Cookie variables are $_COOKIE['x'] and so on. I strongly su

[PHP-WIN] Re: PHP Sub Routine II

2003-06-23 Thread Cristian MARIN
I already answered you at the first post. -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel: +4021 312.53.12 Tel/Fax: +4021 312.51.91 [EMAIL PROTECTED] "Hermann" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED

[PHP-WIN] Re: multiple mails problem

2003-06-23 Thread Cristian MARIN
Better then that is to send the mail to everyone in the list. This way no other user can see the others mail (if you are using the bcc the user can still see all the adresses by looking into the mime of that e-mail) and you may even personalize them in your script ... -- -

[PHP-WIN] Re: PHP Sub-Routine

2003-06-23 Thread Cristian MARIN
You cannot call a php file index.html. If they are called with the html extension apache it will think that this is a html file so he don't have to parse the page and it will send the page as is to the explorer which cannot understend php. You should call your page index.php. Also make a index.htm

[PHP-WIN] Re: Problem on passing value.

2003-06-23 Thread Cristian MARIN
Of corse: The code should look like this : Now if you type the http://localhost/show.php?a=1 you'll have 'true' otherwise 'false' -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel: +4021 312.53.12 Tel/Fax: +4021 31

Re: [PHP-WIN] php.ini values ignored?

2003-06-23 Thread Cristian MARIN
maybe is not the good php.ini you are using ... You are modifing a php.ini and php use another one. First of all look in the phpinfo() and see what file is it used. Second add a dummy line in the php.ini like: lkjasdlaksdj;alskdas;ldkajsd and you should be prompted with an error when the apache res

[PHP-WIN] Re: Using PHP4

2003-06-23 Thread Cristian MARIN
Because of your apache - php configuration, because of the rights that the file has, because contain an error which make the file to be ignored ... and many, many other reason ... -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel

[PHP-WIN] Re: Apache acts weird I think it's because of PHP

2003-06-23 Thread Cristian MARIN
It could be the pages fault ... if this happen on the same page could be an infinit loop or a very big loop on the page. -- - Cristian MARIN - Developer InterAKT Online (www.interakt.ro) Tel: +4021 312.53.12 Tel/Fax: +4021 312.51.91 [EMAIL

php-windows Digest 23 Jun 2003 07:02:02 -0000 Issue 1790

2003-06-23 Thread php-windows-digest-help
php-windows Digest 23 Jun 2003 07:02:02 - Issue 1790 Topics (messages 20496 through 20506): Re: Using PHP4 20496 by: Stephen Re: Subject: Parse errorwhat's this, what to do? 20497 by: Dave Malen Apache acts weird I think it's because of PHP 20498 by: MoroSwitie

[PHP-WIN] Re: Fatal error: main(): Failed opening required..... Dreamweaver MX

2003-06-23 Thread Cristian MARIN
One of two : - You don't have permission to open the Connection file. - The path to the Connection is wrong (maybe you have moved the file or the directory else where). It's less probably to be the read wrights because you are using the Dreamweaver MX which put the files to the remote fold