php-windows Digest 21 Jul 2003 12:58:55 -0000 Issue 1833

Topics (messages 20840 through 20843):

dynamic html pages
        20840 by: lordpuma
        20841 by: Luis Ferro

Re: PHP and windows Server 2003
        20842 by: DeKa

XmlRPC Extension in Apache 4.2.3
        20843 by: Donald Tyler

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]


----------------------------------------------------------------------
--- Begin Message ---
I am fairly new to php and am having an issue with creating pages "on the
fly" that is not loading an html page but creating them from under php. what
I need to do is  this:

function createpage1(){
//make page here
}
return();

function createpage2(){
//make page here
}
return;

//main loop
createpage1();
//delay for 10 secs
createpage2();
exit;
what I need is for page 1 to show up then after the time out the window
clear and have page 2 show up. I can get them to both show up at the same
time in the same window but how do I make it look like it has loaded 2
pages.

Jon



--- End Message ---
--- Begin Message --- You can't archieve this with PHP alone... PHP runs in the web server, what the user see runs on the web browser (after the web server serves it).

You can't expect to have that kind if interactivity between the browser and the web server without further programming in some sort of conduit between the two...

The conduit can be programmed in tons of ways, but the more simple would be to have php just generate the pages and add javascript in the page to control what the user see at each time. Of course, some alternative mean must be assembled for the case where javascript is turned off...

Cheers,
Luis Ferro

lordpuma wrote:

I am fairly new to php and am having an issue with creating pages "on the
fly" that is not loading an html page but creating them from under php. what
I need to do is  this:

function createpage1(){
//make page here
}
return();

function createpage2(){
//make page here
}
return;

//main loop
createpage1();
//delay for 10 secs
createpage2();
exit;
what I need is for page 1 to show up then after the time out the window
clear and have page 2 show up. I can get them to both show up at the same
time in the same window but how do I make it look like it has loaded 2
pages.

Jon








--- End Message ---
--- Begin Message ---
"Ronald Forster" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
news:[EMAIL PROTECTED]
> I am having problems bringing php to work on a Windows server 2003.
> Done all the same as on server 2000 but I get always a 404 error.
> Can anyone help ?

You have to allow php.exe to be executed, explicitely. The menuentry for
this security option is called "webserviceextensions" in IIS control
manager.

Deka



--- End Message ---
--- Begin Message ---
Hi Everyone,

 

I posted this on the PHP install list but didn't get a reply. I hope you
guys/gals can be more helpful.

 

I am having trouble getting the XmlRpc extension working with PnP 4.2.3.

 

SYSTEM:

Windows XP Pro

PHP 4.2.3 (Running as Apache module)

Apache 2.0.44

 

When Apache starts I get the following error:

 

Unknown(): Unable to load dynamic link library 'c:\program files\apache
group\php\extensions\php_xmlrpc.dll' - The specified module could not be
found.

 

The error.log after a clean start:

 

[Fri Jul 18 17:08:29 2003] [notice] Parent: Created child process 3420 PHP
Warning:  Unknown(): Unable to load dynamic library 'c:\program files\apache
group\php\extensions\php_xmlrpc.dll' - The specified module could not be
found.  in Unknown on line 0 [Fri Jul 18 17:08:32 2003] [notice] Child 3420:
Child process is running [Fri Jul 18 17:08:32 2003] [notice] Child 3420:
Acquired the start mutex. [Fri Jul 18 17:08:32 2003] [notice] Child 3420:
Starting 250 worker threads.

 

I know the dll exists in the correct location and the extension path is
specified correctly in the php.ini file because other extensions load fine.

 

Anyone have any suggestions?

 

Thanks.

 

 

 


--- End Message ---

Reply via email to