[PHP-WIN] Re: Compiling PHP code

2002-02-01 Thread John Lim
Visit http://zend.com They have an Encoder product that does this. Regards, John Nicole Amashta <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > OK, this may sound far fetched, or maybe not. By any chance would it be > possible to "compile" php code into some s

[PHP-WIN] Help needed on point system

2002-02-01 Thread Jerry Leonard
Hi all, I am relatively new to php and mysql and would appreciate any help you can provide. Here is the task: I need to have a point system added to my site. What I would like is when a user logs in they will get 1000 points. But they only get it once per day. I am the kind of person that cannot

[PHP-WIN] cURL on Windows

2002-02-01 Thread Zackary Wilson
I have installed the cURL module on windows, and now I'm ready to try it out. I can get this code to work, http://www.php.net/";); $fp = fopen ("php_homepage.txt", "w"); curl_setopt ($ch, CURLOPT_FILE, $fp); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_exec ($ch); curl_close ($ch); fclose

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
sorry to be a pest but, not necessarilyfor example: two different "sites" hosted on the same server in the same domain http://www.mydomain.com/dir1/login.php http://www.mydomain.com/dir2/login.php do not necessarily share the same cookies.if the domain(url) is set to "www.mydomain.

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
another solution: since they changed their code for you already, you might try to get them to add your domain to the list of valid domains in the cookie that they set, therefore, your scripts would be able to pick them upjust a thought. -- PHP Windows Mailing List (http://www.php.net/)

Re: [PHP-WIN] Cookies

2002-02-01 Thread Angie Tollerson
Sorry everyone, I had a brain spasm or something. I was reminded that cookies only work on the same domain, and since the webspeed scripts were creating the cookie on out test server and php was on the production server it was a no go. Thanks! Angie >>> "Angie Tollerson" <[EMAIL PROTECTED]> 02/

[PHP-WIN] Php extensions

2002-02-01 Thread Mauricio Lairet P.
Hi! I wanted to know somehting. If my hosting provider does not inlude PEAR in their PHP installation, am I able to do it myself? I mean like you do with some Perl modules that are not installed and you use use lib 'path_to_lib' in Perl. Is there a way to do something similar with Php extension

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
I might not understand what you mean by "Webspeed page that is passing to my php page". Is your browser requesting the Webspeed page, or is your php script connecting to webspeed directly via a call to fopen? What domain(url) was the original cookie made valid for? If you are requesting your sc

[PHP-WIN] Cookies

2002-02-01 Thread Angie Tollerson
I have a WebSpeed page that is passing to my php page. They are using session cookies to test for login status. I didn't think there was anyway for me to test for a session cookie set by another language using php. So I had them create an additional client cookie for me to test by. Not only di

Re: [PHP-WIN] DLL problems

2002-02-01 Thread Mike Maltese
In the folder that you unzipped your php distribution to, there is a folder named dlls. Just copy or move the contents of this folder to C:\WINDOWS\system. Post back with the result. Mike - Original Message - From: "Dave" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, Februar

RE: [PHP-WIN] DLL problems

2002-02-01 Thread alain samoun
1) Did you enable the dll in php.ini (make sure that there is only one copy of php.ini in path)? 2) Did the dll have been compiled for your PHP version? 3) Some other reasons ;) A+ Alain -Original Message- From: Dave [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 9:39 AM To:

[PHP-WIN] DLL problems

2002-02-01 Thread Dave
Hi, I'm using win 98, php 4.04, and apache 1.3.19. Have had no problems executing simple scripts, including some with mySql access. HVR, when I uncomment any of the php dll's in the php.ini file I get the following message (one for each dll): "unable to load dynamic library 'c:\windows\system\ph

RE: [PHP-WIN] Compiling PHP code

2002-02-01 Thread Shrock, Court
Nicole, It is called Zend Encoder and is located at http://www.zend.com/zend/products.php#encoder. The only catch, is that it is not always without cost. I haven't actually used it so I would be interested in your opinion if you decide to go ahead with it. Court > -Original Message- >

RE: [PHP-WIN] Plot Graphs by PHP...

2002-02-01 Thread Shrock, Court
Actually, there is a complete graphing suite written in OO PHP that already does all the hard work. It is called jpgraph and located at http://www.aditus.nu/jpgraph/. A bit of forewarning, you need to make sure you have zlib, libpng, libjpeg, and gd installed and setup. Of course, php needs to b

[PHP-WIN] Event Viewer Entries

2002-02-01 Thread Gary Pullis
When I use the syslog() function under Win2K, I get the following from Event Viewer: "The description for Event ID ( 2000 ) in Source ( c-client ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer.

[PHP-WIN] Compiling PHP code

2002-02-01 Thread Nicole Amashta
OK, this may sound far fetched, or maybe not. By any chance would it be possible to "compile" php code into some sort of executable, or similiar form, so that way when I distribute code to customers, they aren't able to view the code? This was suggested by a co-worker in case it is possible. Does

php-windows Digest 1 Feb 2002 17:10:11 -0000 Issue 980

2002-02-01 Thread php-windows-digest-help
php-windows Digest 1 Feb 2002 17:10:11 - Issue 980 Topics (messages 11762 through 11775): Re: PHP INSTALL FILES 11762 by: Oliver Cronk 11763 by: Oliver Cronk 11764 by: Oliver Cronk 11765 by: Oliver Cronk gethostbyname renvoie... un nom! 11766 by: Séb

[PHP-WIN] Re: Re:[PHP-WIN] UNC path as a link

2002-02-01 Thread Nicole Amashta
Thanks for the tip. I hadn't thought of it like that. Thanks and I'll try that in case it works. Nicole A. www.aeontrek.com "Michel Laine" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I don't have any solution to your proble, but as i look at this code my

[PHP-WIN] Re:[PHP-WIN] UNC path as a link

2002-02-01 Thread Michel Laine
I don't have any solution to your proble, but as i look at this code my first reaction is: Isn't it possible to use the ' ' character to encapsulate strings in some places - so you don't have to escape all slashes? If you don't have any variables or code inside the " " that needs to be parsed it s

[PHP-WIN] Thanks for the help. It works now!

2002-02-01 Thread Sébastien Thüler
Woohoo! It's working now! Thanks for your help! -Séb -- 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] Plot Graphs by PHP...

2002-02-01 Thread Kjartan Mannes
Wednesday, January 31, 2001, 7:16:23 AM, GreatKent wrote: > Hi all, I wonder if PHP4 can plot graphs based on input formulas? Should be possible using the gd lib functions: http://www.php.net/manual/en/ref.image.php -- Kjartan <[EMAIL PROTECTED]> (http://natrak.net/) :: "Scandisk is now checki

Re: [PHP-WIN] Sorry. It seems I need to sleep more ;)

2002-02-01 Thread Kjartan Mannes
Friday, February 1, 2002, 3:46:20 PM, Sébastien Thüler wrote: > Woops, sorry! I didn't even notice that ;) > My problem is concerning gethostbyname() function. The PHP manual (French > version ;) states that function "returns IP address of host". > So I tried the following : > $adresse = gethos

[PHP-WIN] Sorry. It seems I need to sleep more ;)

2002-02-01 Thread Sébastien Thüler
Woops, sorry! I didn't even notice that ;) My problem is concerning gethostbyname() function. The PHP manual (French version ;) states that function "returns IP address of host". So I tried the following : $adresse = gethostbyname("http://www.blizzard.com";); to get the IP address of http://ww

Re: [PHP-WIN] gethostbyname renvoie... un nom!

2002-02-01 Thread Piotr Pluciennik
English please... :-) --- Sébastien Thüler <[EMAIL PROTECTED]> wrote: > Salut à tous! > > Le manuel indique sous gethostbyname() : "Retourne > l'adresse IP > correspondant à un hôte" > Mon but est d'obtenir l'adresse IP depuis le nom > d'hôte, donc j'ai naïvement > décidé de tenter ceci : > $ad

[PHP-WIN] Loading TTF

2002-02-01 Thread Sichta Daniel
Hi, cfg: w2k, apache 1.3.20. php 4.0.6, gd version 2.0 or higher (that's what phpinfo() say's !!) Here is my problem: test.php 1

[PHP-WIN] Plot Graphs by PHP...

2002-02-01 Thread GreatKent
Hi all, I wonder if PHP4 can plot graphs based on input formulas? -- 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]

[PHP-WIN] gethostbyname renvoie... un nom!

2002-02-01 Thread Sébastien Thüler
Salut à tous! Le manuel indique sous gethostbyname() : "Retourne l'adresse IP correspondant à un hôte" Mon but est d'obtenir l'adresse IP depuis le nom d'hôte, donc j'ai naïvement décidé de tenter ceci : $adresse = gethostbyname("http://www.blizzard.com";); Et $adresse contient, bien évidemment

RE: [PHP-WIN] RE: PHP INSTALL FILES

2002-02-01 Thread Oliver Cronk
It HAS to be an IIS thing (as I actually set this functionality up for an intranet server - i.e. security abstracted from the application via the NT domain - very neat for an intranet but VERY annoying for you right now go to the IIS management console (my quick way is to right click on the m