php-windows Digest 30 Oct 2003 09:10:23 -0000 Issue 1978
Topics (messages 21922 through 21929):
Re: recommendations - php/mysql discussion board / forum
21922 by: Shannon Eric Peevey
21923 by: Croskerry, Dan
Re: Problems with TCP/IP and PHP
21924 by: Robert Duda
Re: PEAR and PHP 4.3.3 installer
21925 by: Brandon
output caching
21926 by: Brandon
21928 by: Manuel Lemos
PHP not outputting HTML
21927 by: Steve Sobol
wddx problem
21929 by: Helke Schröder
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 ---
Croskerry, Dan wrote:
Hi List,
Can anyone recommend a good, free php/mysql discussion board / message board
/ forum, whatever you want to call it? I'm just looking for a simple one
that is easy to configure and even modify slightly. I know there are loads
out there but I just wanted to know if any of you like one in particular.
Thanks in advance,
_____
Dan
I'm sure this has been mentioned before, but phpbb2 is a powerful
message board that we recommend to everyone on our campus. Check it out at:
http://www.phpbb.com
speeves
cws
--- End Message ---
--- Begin Message ---
Sorry if this topic has been discussed before; I know that this is annoying
to people on the list. I did search the list archives first and could not
really find anything though so that is why I posted it. Thanks for the
advice on phpbb2, I'll check it out.
Dan
-----Original Message-----
From: Shannon Eric Peevey [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 29, 2003 9:49 AM
To: Croskerry, Dan
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] recommendations - php/mysql discussion board / forum
Croskerry, Dan wrote:
>Hi List,
>
>Can anyone recommend a good, free php/mysql discussion board / message
>board / forum, whatever you want to call it? I'm just looking for a
>simple one that is easy to configure and even modify slightly. I know
>there are loads out there but I just wanted to know if any of you like
>one in particular.
>
>Thanks in advance,
>
> _____
>
>Dan
>
>
>
I'm sure this has been mentioned before, but phpbb2 is a powerful
message board that we recommend to everyone on our campus. Check it out at:
http://www.phpbb.com
speeves
cws
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I have figured out what the problem was. Roxen has an option in the CGI
module to send all environment variables to CGI scripts, not only those
defined in the CGI/1.1 standard. By default this option is off. This
prevents PHP from obtaining your path which it needs to find various Windows
dll's.
Rob
"Robert Duda" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am running the following:
>
> PHP Version 4.3.4RC2, I tried 4.3.3 with the same results.
> MySql Version 4.0.16-nt
> Windows XP Professional
>
> Using PHP as cgi with Roxen.
>
> Anytime I try to connect to anything over TCP/IP I get an error. Below is
> the error that I get if I try to connect to an IMAP source:
>
> Warning: imap_open(): Couldn't open stream {mydomain.com:143}INBOX in
> F:\projects\phpgroupware\email\inc\class.mail_dcom_imap.inc.php on line
214
>
> Warning: imap_open(): Couldn't open stream
> {mydomain.com:143/imap/notls}INBOX in
> F:\projects\phpgroupware\email\inc\class.mail_dcom_imap.inc.php on line
214
> (the code comes from phpgroupware version 0.9.14.007)
>
> And if I try to connect to Mysql I get the following error unless I use
> named-pipes:
>
> #2004 - Can't create TCP/IP socket (10106)
> (This error comes from phpmyadmin during log in, if I change the host
entry
> to '.' instead of 'localhost' the login succeeds.)
>
> I have the IMAP extension uncommented and the path to the extensions
> directory is correct. I can get to the IMAP server from Pike running on
the
> same box so the proble is not the IMAP server. In fact when I look at the
> IMAP logs the connection never gets to the server. This appears to be some
> disconnect between the C-client library and the windows TCP/IP library
under
> XP. Has anyone else had the same problem and if so how did you fix it?
>
> Any help with this would be greatly appreciated.
>
> Thanks,
>
> Rob
--- End Message ---
--- Begin Message ---
I just sumbled upon this http://sourceforge.net/projects/universal-auth/
:)
----- Original Message -----
From: "Frank M. Kromann" <[EMAIL PROTECTED]>
To: "Brandon" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Tuesday, October 28, 2003 11:42 PM
Subject: Re: [PHP-WIN] PEAR and PHP 4.3.3 installer
> Hi,
>
> Take a look at http://go-pear.org/
>
> - Frank
>
> > Hello
> >
> > I installed PHP 4.3.3 on Windows 200 server. I opted to install PHP via
> the
> > installer.
> >
> > I noticed I have no support for PEAR. Is it possible to add PEAR
> support, or
> > am I going to have ot uninstall, and go with the .ZIP package instead of
> the
> > installer?
> >
> > Brandon
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--- End Message ---
--- Begin Message ---
Hi All
What is the best way to implement output chaching with PHP?
I've only done a small amount of PHP work, I'm coming from a mostly
ASP/ASP.NET background. In ASP.NET you can set a directive at the top of
each script if the page should cache or not, how many seconds it shoudl be
cached, and which combination of QueryString or HTTP Post variables it
should consider when caching. Once cached, clients get served the output of
the requested script, and the script is only executed once its expiration is
reached.
Is there a similar mechanism with PHP, or any sort of add-on?
Thansk
Brandon
--- End Message ---
--- Begin Message ---
Hello,
On 10/29/2003 01:48 PM, Brandon wrote:
What is the best way to implement output chaching with PHP?
I've only done a small amount of PHP work, I'm coming from a mostly
ASP/ASP.NET background. In ASP.NET you can set a directive at the top of
each script if the page should cache or not, how many seconds it shoudl be
cached, and which combination of QueryString or HTTP Post variables it
should consider when caching. Once cached, clients get served the output of
the requested script, and the script is only executed once its expiration is
reached.
Is there a similar mechanism with PHP, or any sort of add-on?
You may want to try this caching class that lets you cache whole pages
or excerpts for a given period of time, until a given hour and just forever.
The cache timeout is defined by your application. It should define it to
last until the content that changed it is updated.
If you do not know when the content will be updated next time, you can
tell this class to cache the content forever, and in the code that
updates the content, you can call the class voidcache() function to
invalidate the force it to be regenerated next time your application
outputs that content.
http://www.phpclasses.org/filecacheclass
--
Regards,
Manuel Lemos
Free ready to use OOP components written in PHP
http://www.phpclasses.org/
--- End Message ---
--- Begin Message ---
IIS 5, Windows 2000, PHP 4.3.3 ISAPI (manually installed) - but I'm not
sure the ISAPI module is being called because when I go to
http://fci.es.temp.roisupply.com/x.php - which contains a single call
to phpinfo() - my browser tries to download the file and the mime type
is apparently not being sent...
Help... please :>
--
JustThe.net Internet & New Media Services
22674 Motnocab Road * Apple Valley, CA 92307-1950
Steve Sobol, Proprietor
888.480.4NET (4638) * 248.724.4NET * [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Hi all,
I'm trying the wddx-examples but the results are not what I'm expecting.
When I call phpinfo it says that wddx is enabled
And at phpbuilder I found the comment:
"The WDDX functions do not need any external library, and implement methods
to generate, serialize and deserialize information into WDDX packets."
So I put in the example inside my php-code:
print wddx_serialize_value("PHP to WDDX packet example", "PHP packet");
And the result is NOT
<wddxPacket version='1.0'><header comment='PHP packet'/><data>
<string>PHP to WDDX packet example</string></data></wddxPacket>
but only the string:
PHP to WDDX packet example
So there are no xml-tags at all.
The other way - deserialize something is going well.
Does anybody know about?
Every help would be appreciated
thanks, Helke
--- End Message ---