Re: [PHP] fsockopen problems

2007-06-22 Thread Ray
On Friday 22 June 2007 10:59 am, Tijnema wrote: On 6/22/07, Ray [EMAIL PROTECTED] wrote: hello, I'm having some problems with fsockopen and was hopping for some help. I try to connect to a host via fsockopen and I get getaddrinfo failed errors, but if I try fsockopen with google

[PHP] fsockopen problems

2007-06-22 Thread Ray
hello, I'm having some problems with fsockopen and was hopping for some help. I try to connect to a host via fsockopen and I get getaddrinfo failed errors, but if I try fsockopen with google, everything works. sample test code

Re: [PHP] Display paragraphs from a mysql db

2007-06-24 Thread Ray
. Also browsers don't deal with white space the way a word processor does. Very roughly speaking, your browser will display only one space for one or more whitespace characters. if you want spaces, use css, nbsp; or br HTH Ray snip code -- PHP General Mailing List (http://www.php.net

[PHP] simple OCR in php

2007-06-29 Thread Ray
this? Thanks, Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] simple OCR in php

2007-06-29 Thread Ray
suppose you could write an OCR application in PHP, but that sounds like an awful lot of work.) Thanks Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] simple OCR in php

2007-07-04 Thread Ray
On Tuesday 03 July 2007 12:03 am, Richard Lynch wrote: On Sat, June 30, 2007 12:12 pm, Jay Blanchard wrote: [snip] In short PHP cannot perform OCR functions. Why? PHP provides all requisite functions/features so if someone was sadistic enough and talented enough there's nothing to

Re: [PHP] Unlink file older then 7 days

2007-07-14 Thread Ray
at these functions (and also related functions, the bar on the right hand side): http://ca3.php.net/manual/en/function.opendir.php http://ca3.php.net/manual/en/function.fileatime.php http://ca3.php.net/manual/en/function.unlink.php HTH Ray Thanks Chris -- PHP General Mailing List (http://www.php.net

Re: [PHP] Unlink file older then 7 days

2007-07-16 Thread Ray
\to\file);//assuming windows server if ((time()-$access)(7*24*60*60)){ do whatever with old files } off the top of my head. There are other ways to do it. Ray I have a directory with .txt and .txt.asc files. What I want to do is.. Check the age of all files ending in .txt.asc

[PHP] get and post together

2007-08-08 Thread Ray
Hi all, I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want and $_GET['foo']=='bar'. I freely admit it's an ugly kludge, but is it bad? Ray -- PHP General Mailing

Re: [PHP] get and post together

2007-08-08 Thread Ray
On Wednesday 08 August 2007 10:29:33 pm Richard Lynch wrote: On Wed, August 8, 2007 10:18 pm, Ray wrote: I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want

Re: [PHP] MAX_FILE_SIZE not working with file uploads

2007-09-22 Thread Ray
then issue warnings? (Remember the php mantra: PHP is a server side language ) As noted in the php.net documentation you quoted, and as mentioned previously, MAX_FILE_SIZE is a _hint_ to the browser. some browsers just don't take hints. Ray -- PHP General Mailing List (http://www.php.net

Re: [PHP] MAX_FILE_SIZE not working with file uploads

2007-09-22 Thread Ray
On Saturday 22 September 2007 7:39:01 pm Dan Parry wrote: -Original Message- From: Ray [mailto:[EMAIL PROTECTED] Sent: 23 September 2007 02:25 To: php-general@lists.php.net Subject: Re: [PHP] MAX_FILE_SIZE not working with file uploads On Saturday 22 September 2007 7:44:55 pm

[PHP] problems with exec()

2006-11-29 Thread Ray
' (the username correctly returned from whoami) also files aren't changed. any suggestions, pointers, log files to check would be appreciated as I have spent several hours on google, in manuals, etc. haven't tried the ougi board, but that's about it ;-) tia Ray -- PHP General Mailing List (http://www.php.net

Re: [PHP] problems with exec()

2006-11-30 Thread Ray
the command line. as for safe_mode, it's off. Also the whoami in the previous line works as expected. Any pointers would be appreciared. Tia Ray -Original Message- From: Jan Schröter [EMAIL PROTECTED] To: php-general@lists.php.net Date: Thu, 30 Nov 2006 09:09:49 +0100 Subject: Re: [PHP

Re: [PHP] problems with exec() SOLVED

2006-12-01 Thread Ray
/shellscript_howto.html again thanks. Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] need for $_POST[''] changed after server upgrade

2005-12-11 Thread Ray
work. My two questions are: first, is there a better way to fix this, and second, how did this work in the first place? TIA Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] need for $_POST[''] changed after server upgrade

2005-12-12 Thread Ray
Hello, Thanks Matt, I appreciate your help. your solution is a lot easier than mine. It's also nice to understand what was happening. I was introduced to PHP after that type of globals were considered 'evil' so I hadn't seen code written that way. Ray -Original Message- From: Matt

Re: [PHP] Parse Error

2006-02-21 Thread Ray
!-- mysql_up.php -- ?php $host=localhost $user=ray $password=* [/snip] Notice anything missing here? Semi-colons at the end of each line. Thanks. did i say i was a n00b? :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] upgrading to php 4.3.11 gets me No input file specified

2005-04-11 Thread Ray
upgrading from 4.3.10 - 4.3.11 test script: ? phpinfo(); ? OS: Win2000 Server: Website 3.5 Server API: isapi php folder C:\php path includes c:\php PHPRC = c:\php C:\WINNT doesn't have any files with php in their name. installed 4.3.11 by renamed c:\php to php-4.3.10 unzipped the 4.3.11 file

Re: [PHP] Freelance code optimizations

2003-08-11 Thread Ray
also, if you can compare to a constant, there is a notable difference as well. ?php $i = 0; $a = 1000; while( $i++ $a ){} ? real0m10.268s user0m10.000s sys 0m0.030s ?php $i = 0; $a = 1000; while( $i++ 1000 ){} ? real0m7.057s user0m6.880s sys 0m0.020s so if

Re: [PHP] Re: Warning Spammer

2003-06-11 Thread Ray
so your one of those people tha bounce them. i have had my email address used in a number of spams (and a few virus sends) and it blows! the bounces follow the from. the spammer has no clue that it bounced, nor do they really care. instead there is someone (sometimes) at the other end of

Re: [PHP] HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!! can someone tell me whats wrong here? (newbie)

2003-07-10 Thread Ray
else if ($userlogin $userpass == $admin $adpw) { this line probably isn't going to do what your thinking it will. you probably want either else if ($userlogin == $admin $userpass == $adpw) { or else if (strcasecmp($userlogin,$admin) == 0 strcasecmp($userpass,$adpw) == 0) {

Re: [PHP] function to discover if value is already in array

2003-02-21 Thread Ray
On Friday 21 February 2003 09:08, you wrote: Here is an example array: array( array(1,2), array(2,3), array(3,1) ) now suppose I get some form inputs with the value 1 and 1. I am trying to find a way to figure out if the first coloumn is already in the table

Re: [PHP] Re: functions and a href

2003-03-03 Thread Ray
does the function logout() log someone out of a session, or does it return the url for where they go to logout? and what about it isn't working? On Monday 03 March 2003 16:32, you wrote: Ok to make it simplier, this is what I wanna do! ?php echo a href=logout();Logout/A; function

[PHP] form submit oddities?

2003-03-04 Thread Ray
i have posted the question to phpMyAdmin user list already and after talking with someone about my problem, it looks like its not in the phpMyAdmin, but in my settings for php, but they seemed to have no clue as to what. anyways, with a clean install of phpMyAdmin 2.4.0 we can't query the

[PHP] strange problem with size of uploaded files..

2003-03-06 Thread Ray
I've searched all over for the answer to this problem.. but haven't found anything.. I have a script that i use to upload files to a webserver and download them via my phone.. problem is, the files end up being about twice the size of the original file.. for example,i upload a midi that

Re: [PHP] uncompressing gz string

2003-10-24 Thread Ray
i had a similar problem, it seems that a .gz file had 10 bytes of header that inflate and uncompress didn't like, or something wierd like that. but i can't find the code that i had in the end. http://www.php.net/manual/en/function.gzinflate.php but depending on how your actually using the

Re: [PHP] prepend file to all scripts...

2003-10-24 Thread Ray
snip from: http://www.php.net/manual/en/configuration.directives.php auto_prepend_file string Specifies the name of a file that is automatically parsed before the main file. The file is included as if it was called with the include() function, so include_path is used. The special value

Re: [PHP] Why is the php loop, 'for()', so slow????

2003-11-19 Thread Ray
try $res_str_len = strlen($res_str); for ($i=1;$i$res_str_len;++$i) one less function call in the loop and the prefix version of ++ is sometimes a tad faster then the postfix version. On Wednesday 19 November 2003 15:11, you wrote: function CBC_XML_BreakUp($strResponse_XML, $strResponse_HTML)

[PHP] Two-way on-the-fly encryption

2003-11-20 Thread Ray
I want to do two-way encryption on a file coming through the web server. In this context, I would want to generate a public and private key, encrypt the file stream (i.e., don't want to write the unencrypted file to disk first and then encrypt it; I want to encrypt the stream as it comes in) with

[PHP] On-the-fly encryption

2003-11-20 Thread Ray
I want to do two-way encryption on a file coming through the web server. In this context, I would want to generate a public and private key, encrypt the file stream (i.e., don't want to write the unencrypted file to disk first and then encrypt it; I want to encrypt the stream as it comes in) with

Re: [PHP] Two-way on-the-fly encryption

2003-11-20 Thread Ray
Chris, I thought of that and I do plan on implementing it on the way in and out. However, to meet HIPA and other business requirements, the data can not exist at any point in time on my system in unencrypted form. I do not want to be able to view it and I do not want to know what is there. Any

Re: [PHP] Two-way on-the-fly encryption

2003-11-20 Thread Ray
1. When you say on my system in unencrypted form do you indeed mean you want data that can be encrypted and then unencrypted as opposed to a hash like md5() that cannot be reversed? (I only ask this because a lot times people use them synonymously when they should not.) Yes, two way, like PKI.

Re: [PHP] Newbie question... date.

2004-01-13 Thread Ray
On Tuesday 13 January 2004 13:57, DL wrote: Hi all, I was wondering how you get the year, month, and day from a timestamp. (mySQL timestamp, Eg: 20040113130137) What PHP function(s) do I use? An example would be great Cheers, David http://www.php.net/manual/en/function.strtotime.php

[PHP] geographical queries?

2004-01-21 Thread Ray
we import a database that has among other things, listings of locations by address, city, county and zip, and our customers would like their website to have a 'within $x miles of $address $city $zip' search in addition to the other searching they already have. another customer would like to

Re: [PHP] Writing CRON jobs!

2004-01-27 Thread Ray
On Tuesday 27 January 2004 07:13, Stuart wrote: Hamid Hossain wrote: Is there any good reference on how to use CRON (I mean on the net)? I need to fire some PHP pages at scheduled time daily or weekly, ... so on. http://www.google.com/search?q=cron+tutorial+php depending on how you

Re: [PHP] silly question - setting .php as default extension (Apache)

2004-11-09 Thread Ray
On Tuesday 09 November 2004 16:04, Brian A. Anderson wrote: Uuuuh... Where do I set the default server extension type to .php in the apache config? Right now the page will execute on my server, but if there is an index.php the server won't automatically open it, but instead browses the

[PHP] Help with CURL please!

2007-05-11 Thread ray
of this im pulling my hair out and begging for help. Thank you -Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Help with CURL please

2007-05-11 Thread ray
of this im pulling my hair out and begging for help. Thank you -Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mime type over http post?

2007-05-16 Thread Ray
can anybody tell me what this means or how I do it using php? Thanks, Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mime type over http post?

2007-05-16 Thread Ray
a browser would send to a web site when the user clicks a send button in a form. Hi, They have supplied very detailed docs for the XML, but the part that really throws me Is the mime type. Is this just another header? Thanks, Ray You use PHP to create the header for the page request

Re: [PHP] mime type over http post?

2007-05-19 Thread Ray
Thanks for your help everybody. I think I'll give the other company a link to this thread for the next person who asks for help. Ray On Wednesday 16 May 2007 6:57 pm, Oliver Block wrote: Hello Ray, 1. create the xml markup (dom) 2. open a connection to the 3rd party server (fsockopen) 3

Re: [PHP] Script execution

2009-03-09 Thread Ray
/to/command Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What is wrong with this code

2009-04-03 Thread Ray
On Friday 03 April 2009 13:08:45 Gary wrote: This is driving me nuts. I am getting blank emails and the only information that is being passed to MySQL is the IP address. Can someone tell me what is wrong with this? form method=post action=?php echo $_SERVER['PHP_SELF']; ? div id=important

[PHP] problems with gnupg extension.

2009-04-13 Thread Ray
]: decrypt failed in /path/to/test2.php on line 18 any help or suggestions would be very much appreciated. details follow. Ray full output: raw data: this is a test encoded data: -BEGIN PGP MESSAGE- Version: GnuPG v2.0.11 (FreeBSD) hQIOA9qOyyMyQ2/bEAgArxLuVw5eShkL+/g9SCGcBm5

Re: [PHP] problems with gnupg extension.

2009-04-20 Thread Ray
On Monday 13 April 2009 10:17:28 Ray wrote: Hello all, I'm trying to use the gnupg extension and I think everything is properly installed. I'm just using test data. I'm encrypting and then immediately decrypting. But the decryption is failing with a unhelpful error message. error message

Re: [PHP] Back from the dead with a racing question!

2009-07-17 Thread ray
are using mssql, then I cannot provide a good answer because I do not use that db. -Ray Solomon - Original Message - From: Jason Pruim ja...@jasonpruim.com To: PHP-General List php-general@lists.php.net Sent: Friday, July 17, 2009 8:12 AM Subject: [PHP] Back from the dead

Re: [PHP] Please don't kick me!

2009-10-19 Thread ray
- Original Message - From: Philip Thompson philthath...@gmail.com To: PHP General list php-general@lists.php.net Sent: Monday, October 19, 2009 1:47 PM Subject: [PHP] Please don't kick me! Hi all. I know this question has been asked a thousand times on the list, but my searches in

[PHP] seg fault with pecl ps extension

2012-11-28 Thread Ray
, glyphlist.php for a specific example. I have un-installed and reinstalled the php5-ps (64 bit) package through the package manager to no effect. sample code and system info follows sig. any assistance appreciated, Ray system is Kubuntu 12.10 64bit, kernel version 3.5.0-18, php 5.4.6

Re: [PHP] seg fault with pecl ps extension

2012-11-28 Thread Ray
On November 29, 2012 12:00:44 AM Adam Richardson wrote: On Wed, Nov 28, 2012 at 10:50 PM, Ray r...@stilltech.net wrote: Hello, I'm not positive if this is the right list, or if other info is required. If this is the wrong list, please recomend a better one. If other info is desired, just

Re: [PHP] Can't connect to MySQL via PHP

2013-01-12 Thread Ray
On January 12, 2013 11:25:58 AM Rick Dwyer wrote: Hello all. I used the code below successfully to connect to a MySQL db on one hosting provider. I've moved the code to a new hosting provider with new values and it returns: Access denied for user 'user'@'db.hostprovider.net' (using

Re: [PHP] Open form in new window

2013-03-06 Thread Ray
/forms/_FORM_ACTION.html However, I do not think that is what is being discussed here -- at least it is not what I was talking about. agreed Cheers, tedd snip Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] - printing 2 dim. array

2001-01-21 Thread Ray Iftikhar
Hello, I have a file...its contents are as follows: Name of person1, string1 Name of person, string Name of person, string Name of person, string Name of person, string -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] [php] - alphabetizing

2001-01-21 Thread Ray Iftikhar
from A-Z (using the first column as the primer key). I was planng on using an array, but I would have to use a 2 dimensional array and I am not too swift on those.. Thanx, Ray.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] PHP and MySQL query

2001-03-09 Thread Jim Ray
I have a simpe query that I can not seem to get to work. Here is the HTML side: td width="27%" align="center"form action="luquery.php?DB=csjoaamp;TA=associatesamp;SortField=company" method="post"input type="text" name="search"brinput type="submit"/form/td Here is the PHP side: The fields are

Re: [PHP] Opinions, please

2001-12-16 Thread Ray Gaylog
use URL rewriting?..but then, thats not to secure...(or pass the variable(s) to each page via a GET submission..just tag on the variable to the end of your next page link) -Ray Ray Gaylog [EMAIL PROTECTED] - Original Message - From: Gaylen Fraley [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] problem finding out original filename while using php to upload.

2001-12-16 Thread Ray Gaylog
can determine the format type.. Of course, if the user renamed a .bmp to a .jpeg then you won't be able to tell that this was originally a .bmp file... Ray Gaylog [EMAIL PROTECTED] - Original Message - From: Neil M [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 16

[PHP] printf()?

2001-12-16 Thread Ray Gaylog
ideas? I'm using PHP 4.06 Ray Gaylog [EMAIL PROTECTED]

[PHP] PHP binary file

2002-02-19 Thread Hunter, Ray
Has anyone compiled php on linux and found the binary executable file? Ray Hunter Firmware Engineer ENTERASYS NETWORKS Phone: 801 887-9888 Fax:801 972-5789 Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www:www.enterasys.com http

RE: [PHP] Dynamic file creation in Win NT4.

2002-02-19 Thread Hunter, Ray
You need to make sure that php has the correct permissions to access the directory and write the file that you want it to write too... Check out the manual for this... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Sridhar Moparthy [mailto:[EMAIL PROTECTED

RE: [PHP] argv and argc

2002-02-19 Thread Hunter, Ray
Here are all the predefined variables that are in PHP. You will notice that there is an argc and argv here. http://www.php.net/manual/en/language.variables.predefined.php Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED

RE: [PHP] How to Config PHP to run snmp in php script?

2002-02-20 Thread Hunter, Ray
--with-db3 --with-png --with-openssl=/usr/include/openssl The problem that I faced here is that php chokes on finding the evp.h header file in the openssl direcory. I look in the directory and it is there. Let me know if I can help you further. Ray Hunter Firmware Engineer ENTERASYS NETWORKS

RE: [PHP] fdisk?

2002-02-20 Thread Hunter, Ray
It depends on who you are talking too... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Brian V Bonini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 9:12 AM To: PHP Lists Subject: [PHP] fdisk? Anyone know what fdisk stands for? I've heard

RE: [PHP] question

2002-02-20 Thread Hunter, Ray
A work around is using the one of the system commands and print that way. Check here for the program execution functions: http://www.php.net/manual/en/ref.exec.php Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Matthew Berwald [mailto:[EMAIL PROTECTED

RE: [PHP] Class question

2002-02-20 Thread Hunter, Ray
, then again you want to use objects. As for practice, it is up to you. For me, no... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 1:58 PM To: PHP General Subject: [PHP] Class question

RE: [PHP] unable to load dynamic library etc. etc.

2002-02-21 Thread Hunter, Ray
Place all the dlls in the same directory as the php.exe file and in your php.ini file have the extension_dir = .\ (windows). This works for me great... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jeremy Reed [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: [PHP] php-gtk

2002-02-21 Thread Hunter, Ray
I do not know of any editors for php-gtk. Here is the general list: [EMAIL PROTECTED] website: http://gtk.php.net Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Dasmeet Singh Arora [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 8:59

[PHP] Re: phpmyadmin

2002-02-21 Thread Ray Hunter
You might want to try phpbuilder, they have some great articles. phpMyAdmin is housed on sourceforge.net. You can check them out there... Jtjohnston [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I know this is a bit off the wall for most, but for what

RE: [PHP] imagecreate with Windows .exe installer

2002-02-22 Thread Hunter, Ray
You need to have that dll installed on your system. You need to download php-version.zip file that contains all of the dlls in it to run with. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Mike Brackenridge [mailto:[EMAIL PROTECTED]] Sent: Friday, February

RE: [PHP] Freeing up locked table?

2002-02-25 Thread Hunter, Ray
This is mysql doing the locking, you will need to look into your mysql configuration. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jeff Lewis [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 2:41 PM To: [EMAIL PROTECTED] Subject: [PHP] Freeing up

RE: [PHP] Numbered Arrays

2002-02-25 Thread Hunter, Ray
Put it in a for loop and add data to the array. Example: for( $i = 0; $i 24; $i++) { $arr[$i] = Data here.; } This is one of the fastests; however, there are other ways as well. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message

RE: [PHP] Numbered Arrays

2002-02-25 Thread Hunter, Ray
That is probably faster than going through the for loop... Helps if I read the documentation on Arrays. Thanks for info Lars, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Lars Torben Wilson [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 3:05

RE: [PHP] Php-gtk

2002-02-27 Thread Hunter, Ray
Try the php-gtk list. [EMAIL PROTECTED] I use this list all the time and they are great at answering questions... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 7:38 PM To: [EMAIL

RE: [PHP] SQL and PHP (socket vs TCP)

2002-02-27 Thread Hunter, Ray
What exactly are your trying to do. TCP connections use sockets to connect. Sockets are how you connect... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Uros Gruber [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 1:08 AM To: [EMAIL PROTECTED

RE: [PHP] hmm.. more trouble with telnet.

2002-03-01 Thread Hunter, Ray
It did not find it with your classpath... Try using locate or slocate, this should find it... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Sean Kennedy [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:28 AM To: [EMAIL PROTECTED] Subject: [PHP

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
Is the libphp_java.so located in your apache libexec directory? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:49 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP and Java I have

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
If you are running this on apache then it needs to be in the libexec directory of apache where it looks for the *.so modules that are to be loaded. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: [PHP] Re: PHP and Java

2002-03-01 Thread Hunter, Ray
and access php through java...This is faster and reliable. Java in php is not as faster or reliable. Check the php documentation on this... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01

RE: [PHP] Can I authenicate user with the accounts in passwd and shadow??

2002-03-05 Thread Hunter, Ray
You might want to try setting up an LDAP, kerberos, or NIS system before using the passwd and shadow file. There are some security issues that you might not be aware of... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED

RE: [PHP] Script Debug.

2002-03-07 Thread Hunter, Ray
. This has helped me debug many scripts that did not display errors for me. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: DARCY,MATTHEW (Non-HP-UnitedKingdom,ex2) [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 7:52 AM To: [EMAIL PROTECTED

RE: [PHP] php CLI

2002-03-08 Thread Hunter, Ray
What type of system are you running this on? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: matthew clay shultz [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 12:38 PM To: [EMAIL PROTECTED] Subject: [PHP] php CLI hi, when i run script from

RE: [PHP] Novata Como inicio??

2002-03-11 Thread Hunter, Ray
Que es su problema? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jenny Fox [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 9:41 AM To: [EMAIL PROTECTED] Subject: [PHP] Novata Como inicio?? Primeramente alguien sabe español???, estoy

RE: [PHP] php.ini ...

2002-03-11 Thread Hunter, Ray
. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Marcel Besancon [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 10:18 AM To: [EMAIL PROTECTED] Subject: [PHP] php.ini ... Hi, it's me again, when I used the PHP 4.0.6 I had a php.ini

RE: [PHP] Execute php script inside an HTML page???

2002-03-12 Thread Hunter, Ray
Yes, However, you need to add the .html file extension to the php parser so that it parses the .html file. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Lic. Carlos A. Triana Torres [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1

RE: [PHP] passing values

2002-03-13 Thread Hunter, Ray
Are you using the post form method to post this variable to the next page. The value $_POST['inp'] is not present or set...there is a null value there. You will need to set the value with a post inorder to access it with the predefined variable $_POST... Thank you, Ray Hunter Firmware

RE: [PHP] Newbie Question

2002-03-13 Thread Hunter, Ray
What type of OS are you running this application on and how was php compiled? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Greg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 6:47 AM To: [EMAIL PROTECTED] Subject: [PHP] Newbie

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Hunter, Ray
Where is some good documentation on how $GLOBALS works and what is really going on in the background? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 9:53 AM To: Richard

RE: [PHP] SERVER INFO

2002-03-15 Thread Hunter, Ray
Check out the Linux howto's at http://www.linuxdoc.org/docs.html#howto This will help you set up a server and get online... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Dani [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 11:42 AM

[PHP] Re: where is http_cookie ?

2002-03-16 Thread Ray Hunter
Try using the predefined variable $_COOKIE instead and see if that works for you... Bas Jobsen [EMAIL PROTECTED] wrote in message 02031617361309.10531@bjobsen">news:02031617361309.10531@bjobsen... Hello, I have installed php 4.1.2. as a cgi module. But http_cookie isn't set. I don' know

[PHP] Re: PHP Document not found

2002-03-16 Thread Ray Hunter
You should try moving to the current version of php and then try it... Ray Hunter Jan Weidhaase [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi If I try to open a non-existing PHP document by my Apache server I got an internal server error mass

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
Answers: 1. Yes you can do it with css. http://www.w3schools.com/css/default.asp 2. The text field area is defined by the browse...You cannot change the size of the actual box that is the text field... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
of the text field will be 25 characters...This is for the text and password fields... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Darren Gamble [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 11:32 AM To: 'Hunter, Ray'; 'Phil Schwarzmann

[PHP] Sockets and Telnet

2002-03-19 Thread Hunter, Ray
Has anyone created a telnet session in php with sockets and can give me some help on setting one up? Thank you, Ray Hunter Firmware Engineer I ENTERASYS NETWORKS Phone: 801.887.9888 Fax:801.972.5789 Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www

RE: [PHP] A Newbie needs help with his first Class

2002-03-22 Thread Hunter, Ray
The way that Warwick has it set up is fine as long as you create the new in the script that is being called by the browsers so that you can access the class variables...I do not see the need to change the function name unless it conflicts with any predefined variables. Thank you, Ray Hunter

RE: [PHP] Strange problem passing variables

2002-03-22 Thread Hunter, Ray
Try using $_GET['varnamehere'] Ray Hunter -Original Message- From: Jean-Arthur Silve [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 8:05 AM To: [EMAIL PROTECTED] Subject: [PHP] Strange problem passing variables Hi, A friend of me use PHP4.1.2 on Linux+Apache Here

RE: [PHP] cron with php as apache module

2002-03-22 Thread Hunter, Ray
then add this before the ?php #!/path to php/php Example on my system #!/usr/bin/php ?php Stuff here ? /* EOF */ Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Paul Roberts [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 12:00 PM

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
What are you trying to do with radius and php? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Benji Spencer [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 6:35 AM To: [EMAIL PROTECTED] Subject: [PHP] RADIUS - supported in PHP

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
devices. This gives me authentication and accounting information. I suggest you read up on these rfcs: 2618, 2619, 2620, 2621, 2865, 2866, 2867, 2869, and 3162. You could also try writing a radius extension for php? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original

RE: [PHP] Program Looping ?

2002-03-29 Thread Hunter, Ray
You need to also make sure that you change the script execution time allowed in the php.ini file to 5 minutes or more or else you will get a time out error. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jason Caldwell [mailto:[EMAIL PROTECTED

RE: [PHP] RE: PHP/MySQL/XML

2002-04-01 Thread Hunter, Ray
One thing you need to thing about is if you are going to us DTDs. If you are and they specify that you need the ext/ext elements then it is best to add a space when nothing is contained in $ext... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From

  1   2   3   4   5   6   7   8   9   >