RE: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Luis Moreira (ESI-GSQP)
I am not familiar with IIS or 2003, but if the PHP file runs fine, my suggestion is for you to check the logs. Both system and IIS. Maybe there is a permission issue we are not aware of, that prevents files from being read or executed. From: Simeon Goranov [mailto:[EMAIL PROTECTED] Sent:

Re: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Simeon Goranov
What you mean with "opening", something like .. include("other_file.php"); .. If yes .. Yep - I include files within index.php and I think that they exist, because the same project it's running well under apache on the same machine. It's strange beacuse the first time , when I

RE: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Luis Moreira (ESI-GSQP)
Are you opening a file within INDEX.PHP ? Does that file exist ? -Original Message- From: Simeon Goranov [mailto:[EMAIL PROTECTED] Sent: segunda-feira, 30 de Abril de 2007 12:30 To: Jeremy O'Connor Cc: php-windows@lists.php.net Subject: Re: [PHP-WIN] Re: php win2003 - No input file specif

RE: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Luis Moreira (ESI-GSQP)
It seems to me that you are opening a file within INDEX.PHP Does that file exist ? -Original Message- From: Simeon Goranov [mailto:[EMAIL PROTECTED] Sent: segunda-feira, 30 de Abril de 2007 12:54 To: [EMAIL PROTECTED] Cc: php-windows@lists.php.net Subject: Re: [PHP-WIN] Re: php win2003 -

Re: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Simeon Goranov
I have only one file into the directory and it's index.php Greetings, s.g. Mikael Gro"n <[EMAIL PROTECTED]>" написа: It sounds like your index file isn't index.php but some other file. Mike Simeon Goranov skrev: I'm sorry, I made a typo in mail writing. Actually: First time I'm opening m

Re: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread n <[EMAIL PROTECTED]>
It sounds like your index file isn't index.php but some other file. Mike Simeon Goranov skrev: I'm sorry, I made a typo in mail writing. Actually: First time I'm opening myproject.com/subproject/ .. and it shows the index page Second time I just append index.php on the end so the url is:

Re: [PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Simeon Goranov
I'm sorry, I made a typo in mail writing. Actually: First time I'm opening myproject.com/subproject/ .. and it shows the index page Second time I just append index.php on the end so the url is: myproject.com/subproject/index.php and the result is "No input file specified." Greetings, s.g.

Re: [PHP-WIN] php win2003 - No input file specified.

2007-04-30 Thread bedul
are u sure index.php are the file? probably other file? fyi that a suggestion only - Original Message - From: "Simeon Goranov" <[EMAIL PROTECTED]> To: Sent: Monday, April 30, 2007 2:32 PM Subject: [PHP-WIN] php win2003 - No input file specified. > I have a strange problem with php , run

[PHP-WIN] Re: php win2003 - No input file specified.

2007-04-30 Thread Jeremy O'Connor
You can't expect to leave out part of the URL (.com) and expect it to work. You have to specify the entire URL as: myproject.com/subproject (with the .com) or else http://localhost/subproject if you are opening the browser on the server. -- Jeremy "Simeon Goranov" <[EMAIL PROTECTED]> wrote in

[PHP-WIN] php win2003 - No input file specified.

2007-04-30 Thread Simeon Goranov
I have a strange problem with php , running on windows2003 with IIS. PHP is installed like ISAPI and phpinfo runs well. The structure of the site is as well: new site with document root: c:\web\project and url myproject.com virtual directory with url myproject.com/subproject and index.php pag

Re: [PHP-WIN] Referring URL

2007-04-30 Thread Mikael Grön
In your situation the iframe php page can find the loading page url in $_SERVER['HTTP_REFERER']; Note that this doesn't work if the user has disabled referrers, as can be done with the Web Developer Toolbar for Firefox amongst others. Mike Dale Attree skrev: Hi, Does anyone know how to g