[PHP-WIN] Re: Getting The Name Of A Form Within A Script

2001-10-10 Thread _lallous
as far as I know there is no way to do that. therefore create a hidden field in the form that holds the form name, ie: . . . <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > When you set up a form in HTML whose action is a .php script (ie: ), is there some wa

Re: [PHP-WIN] php_mcrypt.dll

2001-10-10 Thread mates
hi, i'm not sure whether this'll help or not, but you may give it a try. i struggle to compile a dll myself (freetype). i downloaded mingw in order to do that. in the documentation you'll find the following: *** The third file needed for DLL creation is the library file that programs will link w

[PHP-WIN] Re: upload files problem

2001-10-10 Thread Steve Yates
"Camelia Moldovan" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Unable to create '/img//tmp/php7C2cMh': No such file You have two //'s here. Also you weren't clear if this was hosting by you or at a hosting service. They may need the true path, in othe

[PHP-WIN] Re: crash on shutdown in php4ts.dll

2001-10-10 Thread Steve Yates
"Steve Yates" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a problem that has been nagging me for a while. If I load > any php page from my machine, when I shut down Windows I get an error in > php4ts.dll. If I have not loaded any php pages then

Re: [PHP-WIN] Help with Php4.06 installation

2001-10-10 Thread Steve Yates
MB> Error:"The specified CGI application misbehaved by not returning a MB> complete MB> set of HTTP headers. The headers it did return are:" I do remember encountering this at one point, but unfortunately don't recall my solution. :-/ Make sure that you have modified the registry so PWS wil

Re: [PHP-WIN] php_mcrypt.dll

2001-10-10 Thread Brian Gleason
No cigar. It was not compiled in that release. I tried to compile the dll myself and got as far as just needing "libmcrypt.lib". I can not find that file anywhere on the net, so i can't compile the php_mcrypt.dll. Thanks though. If anyone knows where I can get php_mcrypt.dll or libmcrypt.lib s

Re: [PHP-WIN] Help with Php4.06 installation

2001-10-10 Thread Chen Wei, Lian
Hi Mihail, I believe it's ur script problem. Can you show us what ur script is doing? -- regards, chen wei (http://www.cw213.net) === Solutions Developer of Earth9.com === Thursday, October 11, 2001, 3:00:50 AM, you wrote: MB>

Re: [PHP-WIN] Exec() again

2001-10-10 Thread CJD
exec() will execute the app as the system, not a user, so cannot interact with the desktop. One way of getting around this would be (for NT) to use the exec() command to create an AT schedule for 1 min in the future and set it to /interactive which would cause the app to load and interact with th

[PHP-WIN] Re: windows compile - tsrm.lib error

2001-10-10 Thread Simon Benjamin
> I following the build instructions: > ( http://www.php.net/manual/en/install-windows.php#install.windows.build ) > > When loading php4ts workspace (.dsw) or project (.dsp) > PHP 4.0.5 or 4.0.6 compile i get error message: > > 'LINK : fatal error LNK1104: cannot open file "TSRM.lib"' I download

RE: [PHP-WIN] Data from local PC MySQL (or MSAccess) to remote UNIX ISP MySQL

2001-10-10 Thread Corn Vollney-R7019C
What you need to do is download DBTools for windows at http://dbtools.vila.bol.com.br . You can then connect to your ISP's Mysql server and transfer you access database. Voll -Original Message- From: Tome [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 10, 2001 10:11 PM To: [EMAIL

php-windows Digest 10 Oct 2001 21:12:03 -0000 Issue 798

2001-10-10 Thread php-windows-digest-help
php-windows Digest 10 Oct 2001 21:12:03 - Issue 798 Topics (messages 9775 through 9792): Re: session open failed and header() don't redirect 9775 by: Michel Laine 9788 by: Mike Flynn Guest Book version 2 released 9776 by: Gaylen Fraley Exec() again 9777 by:

[PHP-WIN] Data from local PC MySQL (or MSAccess) to remote UNIX ISP MySQL

2001-10-10 Thread Tome
How to get the data from my local PC MySQL database (or MSAccess) to the remote UNIX ISP MySQL database. There must be a simple method for this? I am new to OpenSource and programming. I have been an NT administrator, and made the jump to OpenSource. Some of the simple things to do in SQLServe

[PHP-WIN] Help with Php4.06 installation

2001-10-10 Thread Mihail Bota
Hello, I am trying to install php4.06 on windows98 machine with PWS and I ran into difficulties. I installed the php using the binary php4.06 installer from the php website, in the directory c:/PHP. I made all the necessary adjustments (I think) as described in the online documentation. The whole

[PHP-WIN] windows compile - tsrm.lib error

2001-10-10 Thread Simon Benjamin
Hi! I following the build instructions: ( http://www.php.net/manual/en/install-windows.php#install.windows.build ) When loading php4ts workspace (.dsw) or project (.dsp) PHP 4.0.5 or 4.0.6 compile i get error message: 'LINK : fatal error LNK1104: cannot open file "TSRM.lib"' bye, Benjamin -

[PHP-WIN] freetype library

2001-10-10 Thread mates
hi, could anyone give me a hint how to get this dll? i've been having trouble compiling the library myself, so i'd appreciate a ready to use dll. thanks a lot. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-WIN] Re: session open failed and header() don't redirect

2001-10-10 Thread Mike Flynn
At 09:21 AM 10/10/2001 +0200, Michel Laine wrote: >"Warning: Cannot add header information - headers already sent by (output >started at c:\program files\apache group\apache\htdocs\web1\1.php:2) in >c:\program files\apache group\apache\htdocs\web1\1.php on line 6" > >Seems to me that you have some

[PHP-WIN] php_mcrypt.dll

2001-10-10 Thread Brian Gleason
Does anyone know where to find the php_mcrypt.dll or how to setup libmcrypt for a apache installation on a windows machine. I have looked all over the web and have not been able to find anything on it TIA -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL P

RE: [PHP-WIN] Getting The Name Of A Form Within A Script

2001-10-10 Thread Christian Sandfeld
Not to my knowledge. However what you could do is ad a hidden field to your form, parsing the name of your form to the script. I.e.: . . . . etc. Then you would always have the name of your form in $form. I know it's probably not what you're looking for, but it should work. /Christian -

Re: [PHP-WIN] Exec() again

2001-10-10 Thread Ross Fleming
Sorry mate, I assumed that's what you were doing, sorry!! There was a message similar to this a while ago where someone wanted to exec something on the users PC. exec('c:\program files\winamp\winamp.exe > empty.file'); Should do the trick. I take it winamp was loading but the page would hang?

[PHP-WIN] Getting The Name Of A Form Within A Script

2001-10-10 Thread epankoke
When you set up a form in HTML whose action is a .php script (ie: ), is there some way to get the name of the form within the .php script? Eric ___ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP-WIN] Exec() again

2001-10-10 Thread Yaroukh
This works: Exec("mkdir myDirectory"); ... this doesn't: Exec("C:\\Program Files\\WinAmp\\winamp.exe"); -- 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: [EM

Re: [PHP-WIN] Exec() again

2001-10-10 Thread Yaroukh
I haven't wrote I want to execute anything on user's PC. /:o) Where did you read this? -- 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]

RE: [PHP-WIN] Exec() again

2001-10-10 Thread Ross Fleming
Again, you can't do this. You can certainly make winamp execute on the server PC. To what end you'd want to do this I don't know. What u seem to want to do is force winamp to run on a users PC whenever they visit your webpage. This may seem harmless, but this ability would be a nightmare. Give

[PHP-WIN] Windows Registry

2001-10-10 Thread ToAoM
We've been runninf PHP 4.06 on a windows NT 4 server. Soem time ago I reapplied the security settings to the registry so that "guest/IIS" users could not read the regirty (if you don't disable this setting people can read your registry from a remote system). But now PHP crashes with a "memory

[PHP-WIN] upload files problem

2001-10-10 Thread Camelia Moldovan
I use a form to upload an image on a server. The problem is after I submit the information , I receive an error message Unable to create '/img//tmp/php7C2cMh': No such file or directory in /var/www/domains/mydom.com/_/form.php on line 127 I created img directory in order to keep images in

Re: [PHP-WIN] InstallShield coulnd't find OCX control...

2001-10-10 Thread Phil Driscoll
On Tuesday 09 October 2001 6:46 pm, Jon Grover wrote: > I'm sure a bunch of people here have seen this issue before; at the end of > the InstallShield wizard, I get a message saying that IIS couldn't be > configured because it failed to find an OCX control. I know that I can > download the binari

[PHP-WIN] Exec() again

2001-10-10 Thread Yaroukh
Hi there Is anybody able to run an external application from PHP? (under Win32) I mean to run WinAmp for example? (or new explorer window) Have a nice day [EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands