php-windows Digest 26 Jul 2001 13:34:18 -0000 Issue 669 Topics (messages 8511 through 8517): apache/php troubles (installation) 8511 by: Ben Bleything Make file.php look like file.htm ??? 8512 by: Rick S 8514 by: G Schneider 8515 by: Svein Bennæs Re: php on W2K server 8513 by: Phil Driscoll Re: Problem in funcition COM 8516 by: Luiz Fernando \(Tuca\) script timeout problem 8517 by: BlackLord Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post to the list, e-mail: [EMAIL PROTECTED] ----------------------------------------------------------------------
Hello all! I've downloaded and installed the win32 version of apache 1.3.20 and php = 4.0.6. I downloaded the zip file with all the modules and such for PHP. The problem I'm having is that when I try to load httpd, it's = complaining about not being able to find/load the php4apache.dll file... = It's exactly where I'm telling apache it is, but it can't find it. Any ideas? Thanks, Ben
Hello, Anyone know how to make the URL look like a basic HTML link? I would like PHP to be transparent to the user and not displaying the .php extention in the browser's address window. Is there a way to do this? Thanks, Rick S.
You could put the php file inside a frameset. Other than that, I'm stumped. But allowing the user to see the .php extension might be quite good advertising, really. There are loads of sites that have no shame in making every page end with .asp - so we might as well fight back with the .php extension!:-) Good luck, Jefferrs ++++++++++++++++++++++++++++++++++++++++ http://www.webmastersdog.com where website owners go. and talk about stuff. ++++++++++++++++++++++++++++++++++++++++ "Rick S" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > Anyone know how to make the URL look like a basic HTML link? I would like > PHP to be transparent to the user and not displaying the .php extention in > the browser's address window. Is there a way to do this? > > Thanks, > Rick S. > >
Add your preferred file extension in in httpd.conf as shown below (assuming you're using Apache), and all .htm-files will be parsed through PHP. AddType application/x-httpd-php .php .phtml .htm SoB -----Opprinnelig melding----- Fra: G Schneider [mailto:[EMAIL PROTECTED]] Sendt: 26. mai 2001 11:18 Til: [EMAIL PROTECTED] Emne: [PHP-WIN] Re: Make file.php look like file.htm ??? You could put the php file inside a frameset. Other than that, I'm stumped. But allowing the user to see the .php extension might be quite good advertising, really. There are loads of sites that have no shame in making every page end with .asp - so we might as well fight back with the .php extension!:-) Good luck, Jefferrs ++++++++++++++++++++++++++++++++++++++++ http://www.webmastersdog.com where website owners go. and talk about stuff. ++++++++++++++++++++++++++++++++++++++++ "Rick S" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > Anyone know how to make the URL look like a basic HTML link? I would like > PHP to be transparent to the user and not displaying the .php extention in > the browser's address window. Is there a way to do this? > > Thanks, > Rick S. > > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
On Wednesday 25 July 2001 19:07, Frank M. Kromann wrote: > Hi, > > IIS is the same on Windows 2000 server and Pro. The only difference is on > the Pro version you can only have one web site. > > I use PHP on both types (doing only manual install though). > > - Frank > Frank Is there any difference in the manual configuration between 2K and 2KPro that we need to mention in the installation notes in order to avoid confusion in the future? Cheers -- Phil Driscoll
Ok... it's only a test. Luiz Fernando Alain Samoun <[EMAIL PROTECTED]> escreveu nas notícias de mensagem:[EMAIL PROTECTED] > Fernando: > Your script is fine, it should work on your server but, of course, do not > expect to open word on the client side.... > Alain > > On Tue, Jul 24, 2001 at 11:49:04AM +0100, Luiz Fernando Tuca" wrote: > > A take a sample of function COM. > > > > $word = new COM("word.application") or die("Unable to instanciate Word"); > > print "Loaded Word, version {$word->Version}\n"; > > $word->Visible = 1; // command that show window > > $word->Documents->Add(); > > $word->Selection->TypeText("This is a test..."); > > $word->Documents[1]->SaveAs("Useless test.doc"); > > > > The commands execute, but the window of word don't appears. > > > > I make a test with Autocad too, but the window don't appears. > > When a had a ohter version PHP, don't remember, the window appeared. > > > > thanks > > > > Luiz Fernando > > > > > > > > > > -- > > PHP Windows Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED]
Hello, I am trying to develop a scrpit which emails my email to my 800,000 recipients(yes, too much). Appr. it takes min. 15hrs to send to all these recipients. I wanted to do this task with a php script automatically. But, i have a problem: My script is being terminated x hours later. I don't know why? I have disabled php's timeout. Is there any other configuration which terminates my script? Can not i develop a script to send email to my 800,000 recipients? Please help, thanks....