[PHP-WIN] loading php_gd2.dll

2003-11-19 Thread brent
Hi. I'm having difficulty getting the php_gd2.dll to load. Running W2K server, IIS 5.0, PHP 4.3.1. I've modified the php.ini file and set my extensions directory to C:\PHP and I've uncommented extension=php_gd2.dll. When I do this, and attempt to load the php test page, my browser attempts to

php-windows Digest 19 Nov 2003 13:45:18 -0000 Issue 2007

2003-11-19 Thread php-windows-digest-help
php-windows Digest 19 Nov 2003 13:45:18 - Issue 2007 Topics (messages 22137 through 22138): =sessions= [J. Meloni Textbook] 22137 by: Anthony Ritter loading php_gd2.dll 22138 by: brent Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubs

[PHP-WIN] Reading files from different user's

2003-11-19 Thread Gerardo Rojas
I am running IIS with PHP. I want to be able to take a user's input (a file) and process it and write back generated files to the users' pc. Currently the script works fine but only on the actual server. Any help would be appreciated. How do I open or pass a file from a user to the webserver?

RE: [PHP-WIN] loading php_gd2.dll

2003-11-19 Thread David Felton
try copying the dlls it needs to the winnt/system32 directory -Original Message- From: brent [mailto:[EMAIL PROTECTED] Sent: 19 November 2003 1:41 To: [EMAIL PROTECTED] Subject: [PHP-WIN] loading php_gd2.dll Hi. I'm having difficulty getting the php_gd2.dll to load. Running W2K server

Re: [PHP-WIN] Reading files from different user's

2003-11-19 Thread Dave Gardner
try using http file upload. there is a lot on this in the php manual. then you can send the file back by sending headers first and then sending the data (it will prompt user with "save file as..." dialogue). --- Gerardo Rojas <[EMAIL PROTECTED]> wrote: > I am running IIS with PHP. I want to

RE: [PHP-WIN] Reading files from different user's

2003-11-19 Thread Gerardo Rojas
ok, thanks. I'm uploading the file. I check all variables in $_FILES[ ] and everything is alright, but the file does not appear in my upload dir = c:\program files\php\uploadtemp what gives? -- Gerardo S. Rojas mailto: [EMAIL PROTECTED] -Original Message- From: Dave Gardner [mailt

[PHP-WIN] Help with xslt on windows

2003-11-19 Thread Myles Parker
an someone help me out with xslt on windows? I have copied the 3 dll's in to the c:\WINDOWS\SYSTEM32 directory (sablot.dll, expat.dll, iconv.dll) I have a very simple php page.. $xh = xslt_create(); // Process the document, returning the result into the $sDXML variable $sDXML = xslt_pr

[PHP-WIN] Using PHP to reload a page w/variable.

2003-11-19 Thread Roderick Martin
I'm finding it hard to believe this is as difficult as it appears, but everywhere I search indicates that what I want to do is not an easy task. How do you code this? You have a user signup page and the user fills it out, filling out two password fields to ensure they typed it in properly and

[PHP-WIN] Re: Help with xslt on windows

2003-11-19 Thread hubo
Well, you must change your php.ini file to indicate that you do want to use the module php_xslt. "Myles Parker" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > an someone help me out with xslt on windows? > I have copied the 3 dll's in to the c:\WINDOWS\SYSTEM32 directory > (sa

[PHP-WIN] Re: Help with xslt on windows

2003-11-19 Thread Myles Parker
ah, thank you! Hubo wrote: Well, you must change your php.ini file to indicate that you do want to use the module php_xslt. "Myles Parker" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] an someone help me out with xslt on windows? I have copied the 3 dll's in to the c:\WINDOWS\S

[PHP-WIN] Re: Using PHP to reload a page w/variable.

2003-11-19 Thread Tao Z
You can use header() function to redirect You can write a function as: function Redirect($rPath) { header("Location: http://".$_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/" . $rPath); exit; } $rPath is the relative path to the page that's calling the function. say you are o

[PHP-WIN] Re: loading php_gd2.dll

2003-11-19 Thread DvDmanDT
extension_dir (or is it path?) should be C:\PHP\extensions I think, unless you did something wierd with it.. :s -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out mo

Re: [PHP-WIN] Using PHP to reload a page w/variable.

2003-11-19 Thread Ignatius Reilly
Investigate the PEAR Quickform package. http://pear.php.net/manual/en/package.html.html-quickform.php _ - Original Message - From: "Roderick Martin" <[EMAIL PROTECTED]> To: "'PHP Help Desk'" <[EMAIL PROTECTED]> Sent: Wednesday, November 19, 2003 20:37 Subject: [PHP