[PHP-WIN] DocGuru - PHP Documentation Tool 1.0 Released

2005-02-07 Thread [EMAIL PROTECTED]
Cerauno proudly announces the release of DocGuru Professional 1.0. DocGuru is our brand new source code documentation system. It helps you generate documentation right from your source code, understanding naturally formed in-source comments, thereby making the entire documentation process a lot s

[PHP-WIN] $_SESSION

2005-02-07 Thread Dale Attree
Is there anyway to spoof the $_SESSION array?

[PHP-WIN] Re: $_SESSION

2005-02-07 Thread Jason Barnett
Dale Attree wrote: Is there anyway to spoof the $_SESSION array? For what purpose? -- Teach a man to fish... NEW? | http://www.catb.org/~esr/faqs/smart-questions.html STFA | http://marc.theaimsgroup.com/?l=php-general&w=2 STFM | http://www.php.net/manual/en/index.php STFW | http://www.google.com/se

[PHP-WIN] Re: DocGuru - PHP Documentation Tool 1.0 Released

2005-02-07 Thread Jason Barnett
[EMAIL PROTECTED] wrote: Cerauno proudly announces the release of DocGuru Professional 1.0. No offense intended to you sir... but if you're going to try to sell this product on the list you could at least make comparisons to some of the other (open source / free) projects out there and explain why

RE: [PHP-WIN] $_SESSION

2005-02-07 Thread Mikey
> Is there anyway to spoof the $_SESSION array? Well, depending on your server setup then possibly yes, but generally no. Mikey -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] outlook calendar

2005-02-07 Thread ludovic
Good morning, Is it possible to reach the data of the outlook calendar (on a server exchange) with php? Thank you for advance -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] outlook calendar

2005-02-07 Thread tg-php
= = = Original message = = = > Good morning, > > Is it possible to reach the data of the outlook calendar (on a server > exchange) with php? > > Thank you for advance I've never tried using PHP to connect to an Exchange server directly, but I've done some stuff with using PHP to connect via CO

[PHP-WIN] New Windows user having trouble with Apache and PHP

2005-02-07 Thread Sunburned Surveyor
Windows/PHP Users, I'm new to PHP and I had a question about getting PHP and Apache set up on Windows. I've installed both PHP and Apache on my computer per the install instructions. I have successfully started the Apache server, after I changed the port from 80 to 8080. However, when I try to t

Re: [PHP-WIN] New Windows user having trouble with Apache and PHP

2005-02-07 Thread Patrick Roane
Do a search for you phpinfo.php on the 'C:' drive. Make sure that its in your 'www' folder or in your apach/htdocs folder. Once you've determined this, go to www.php.net and review the section on 'installing php on windows'. If all else fails, go to www.wamp.com and instal the bundle. --- Sun

Re: [PHP-WIN] outlook calendar

2005-02-07 Thread Jason Barnett
[EMAIL PROTECTED] wrote: = = = Original message = = = Good morning, Is it possible to reach the data of the outlook calendar (on a server exchange) with php? Thank you for advance I've never tried using PHP to connect to an Exchange server directly, but I've done some stuff with using PHP to con

Re: [PHP-WIN] New Windows user having trouble with Apache and PHP

2005-02-07 Thread Armando
You said you changed the port to 8080 but you didn't specify that in the browser URL. By default all web browsers connect to port 80 unless you specify otherwise. You need to use the address: http://localhost:8080/phpinfo.php Cheers. Armando Sunburned Surveyor wrote: Windows/PHP Users, I'm new t

Re: [PHP-WIN] outlook calendar

2005-02-07 Thread tg-php
You know, I forgot but I think that depending on the version of Outlook, you might have to replace the "outlook.application" with something else. Maybe not.. hmm.. I can't find any examples where something other than 'outlook.application' is used. Maybe I'm wrong there. At any rate, I'd check

Re: [PHP-WIN] New Windows user having trouble with Apache and PHP

2005-02-07 Thread Jennifer S.
If you are pointing your browser to http://localhost/phpinfo.php you are probably looking at IIS since you said a few line up that you changed the Apache port ot 8080. Maybe you should try http://localhost:8080/phpinfo.php, if, indeed, you have a file called phpinfo.php in your web server root. Ch

[PHP-WIN] File upload maximum execution time error

2005-02-07 Thread Vladimir Iahnenco
Hi All, We have web IIS5 (web+ftp)+php4 installed on the same server. It takes about 5-6 min to upload 20MB file to our ftp server. But we cannot upload it through http php upload. I set parameters == upload_max_filesize =40M post_max_size=40M max_execution_time=920 and then set it to zero == but a

RE: [PHP-WIN] File upload maximum execution time error

2005-02-07 Thread Mike
Remember that when you're working in Windows that PHP has a timeout but so doesn't IIS - so if you don't raise the IIS timeout then you run the risk of hitting that limit as well. I don't think it's difficult to find the timeout location in IIS, but I don't have it installed on this machine to tes