Re: [PHP] Test Links...

2003-09-26 Thread Ray Hunter
Ive used curl to test stuff out with too...however, if on link i like to use wget to test it out. You might not have that option but I have seen others use fopen or file_get_contents. HTH, BigDog On Fri, 2003-09-26 at 10:15, Doug Coning wrote: > Greetings All, > > I am creating a 'links' page a

Re: [PHP] Test Links...

2003-09-26 Thread Ray Hunter
lol...if on linux... On Fri, 2003-09-26 at 12:35, Ray Hunter wrote: > Ive used curl to test stuff out with too...however, if on link i like to > use wget to test it out. You might not have that option but I have seen > others use fopen or file_get_contents. > > HTH, > > Big

Re: [PHP] php & xvfb gives xauth command not found

2003-09-29 Thread Ray Hunter
> $test=exec("/usr/bin/xvfb-run /usr/bin/njplot -psonly testfile 2>&1"); > echo $test; Try $test=exec("/usr/bin/xvfb-run /usr/bin/njplot -psonly testfile" ); -- BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php & xvfb gives xauth command not found

2003-09-29 Thread Ray Hunter
> $test=exec("/usr/bin/xvfb-run /usr/bin/njplot -psonly testfile" ); Actually, I think that you can just run the command without the xvfb-run command... $test = exec("/usr/bin/njplot -psonly testfile" ); that should just create the testfile.ps file and not fire up a x-window. The error with the

Re: [PHP] Change cell colour with selection from a drop down menu

2003-09-30 Thread Ray Hunter
> I am putting together a web site with graphics from the artist and I need > to learn how to change the image when I hover over it. Can you recommend > a good javascript list or resource, particularly for someone who doesn't > want to learn a lot of javascript? I have not found a great website

Re: [PHP] Installing Php with Apache on Solaris

2003-10-01 Thread Ray Hunter
What you would want to do is build apache + php together with all the libraries built into it. Unless you want the user to install the libraries seperate. I have done this in the past however, you file is going to be HUGE. Basically you have a file with everything that it needs in it and does not

Re: [PHP] exec command

2003-10-01 Thread Ray Hunter
> I want to execute > #useradd -d /home/all -g wahtever -s /bin/bash newuser You have to be root to add a user to the system...and just a heads up...you might want to rethink doing this from apache or php. The security implications alone make me cringe. -- Ray -- PHP General Mailing List (http

Re: [PHP] Date Sorting

2003-10-01 Thread Ray Hunter
Try using any of the sort functions: sort asort arsort ksort krsort ... That should get you started. -- Ray On Wed, 2003-10-01 at 07:18, Greg Wiley wrote: > Apologies if this has been asked before but I couldn't find > anything on google or any of the PHP code sites that quite fits my > requi

RE: [PHP] Installing Php with Apache on Solaris

2003-10-01 Thread Ray Hunter
You build apache with php statically linked instead of dynamically linked. Check the apache documentation on statically linking apache and php (module). I would venture to say that oracle libraries should not be shipped. They are proprietary code and the user needs to install them. Your oracle li

Re: [PHP] how to call a script every (say) 5 minutes

2003-10-01 Thread Ray Hunter
On linux do run the following commands: $ man cron $ man crontab $ man 5 crontab That should get you started with cron on linux... HTH, Ray On Wed, 2003-10-01 at 08:53, Jan Hübbers wrote: > Hi all, > can someone point me to a quickstart to the > following problem? > > I'd like t

Re: [PHP] exec shell command from php

2003-10-01 Thread Ray Hunter
If you are using apache and php then when php runs the exec function then it is running the the user/group of the apache process. Here is what I might suggest doing. Have a registration form that submits the user's information to another process that logs the information (make sure to validate al

Re: [PHP] Variables not passed on localhost setup

2003-10-01 Thread Ray Hunter
rename php.ini-recommended to php.ini and put it in C:\windows and you can now use that file. -- Ray On Wed, 2003-10-01 at 10:52, Greg Watson wrote: > Thank you for that answer! That worked perfectly! > > That leads me to another query, again, which I have searched for... > > I'd like to be abl

RE: [PHP] Help with treeview

2003-10-02 Thread Ray Hunter
> Does anyone know how to implement a treeview style display in PHP? PEAR has a treeview that I have used in the past and it works fine. http://pear.php.net/package/HTML_TreeMenu -- BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP as a Servlet in Tomcat

2003-10-03 Thread Ray Hunter
Try running php is from a servlet environment. Basically in tomcat you set up a servlet that handles your *.php files and calls the php executable. This is like php cgi so it can be slow. -- BigDog On Fri, 2003-10-03 at 12:11, David Erickson wrote: > Hi I am wondering if anybody has successful

Re: [PHP] enable FTP support

2003-10-09 Thread Ray Hunter
Can you send what lines you have before the make[1] there should be some additional error information? -- BigDog On Thu, 2003-10-09 at 09:03, Jay Blanchard wrote: > I am trying to enable FTP support on one of our test servers running PHP > 4.2.2 > > 1. rm config.cache > 2. ./configure --enable-

Re: [PHP] XML / XLS application

2003-10-10 Thread Ray Hunter
So what is your questions concerning php? --- BigDog On Fri, 2003-10-10 at 23:28, [EMAIL PROTECTED] wrote: > > > Hello mailing list, I have a question about the use of XML / XLS > > application, I am introducing myself in this technology, What is useful > XML > > / XLS for? , I need a basic exa

Re: [PHP] mozilla

2003-10-16 Thread Ray Hunter
Heavens no... -- Ray On Thu, 2003-10-16 at 10:24, Joseph Bannon wrote: > Does IE use mozilla? I'm writing a PHP script to keep track of user > agents. > > J. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] intercepting URLs in a "control-system"

2003-10-16 Thread Ray Hunter
> Having read quite a bit on-line, I am interested in trying to "trap" URLs > sent to my site so I can process the request and respond without > neccessarily having a "real" page to serve. If this makes any sense, how do > I do it? Because I expect that apache (in my case) would not like a URL tha

Re: [PHP] Using two XSLT stylesheets

2003-10-18 Thread Ray Hunter
> xslt_process($xh, 'library.xml', 'simple-search-get-results.xsl', > --> 'results.xml', NULL, $params); > $data = xslt_process($xh, 'results.xml', > --> 'simple-search-display-results.xsl', NULL, NULL, NULL); What happens when you do the above...what is the var_dump of data? -- BigDog -- P

Re: [PHP] Re: Using two XSLT stylesheets

2003-10-19 Thread Ray Hunter
On Sun, 2003-10-19 at 18:01, rich wrote: > OK, > > This is my latest idea to try and do this: > > $xh = xslt_create(); > > parse_str($_SERVER['QUERY_STRING']); > $params = array("keywords" => $keywords); > > $results = xslt_process($xh, 'library.xml', 'simple-search.xsl', NULL, NULL, > -->$pa

Re: [PHP] second time: problem with LDAP support

2003-10-20 Thread Ray Hunter
> I have a problem of installation of php. > > I'm using Linux 7.3. I have installed > openldap2.1.22 successfully. > > Now I'm compiling php with the following > command: > > ./configure --with-apache2=/usr/local/apache2 \ > --with-mysql=/usr/local/mysql \ >

Re: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
On Mon, 2003-10-20 at 15:35, Colin Kettenacker wrote: > $categories_array = array(); > for($j=0; $j < $categories_count; $j++){ > $tempval="str_categories".$j; > array_push($categories_array,$_REQUEST[$tempval]); > } Or you could try this: $categories_array = array(); for( $j = 0; $j < $categor

RE: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
> > Or you could try this: > > > > $categories_array = array(); > > > > for( $j = 0; $j < $categories_count; $j++ ) { > > $tempval = "str_categories".$j; > > $categories[$j] = $_REQUEST[$tempval]; > > } > > Or you could get really fancy and try this (my preferred method if not a > little con

Re: [PHP] php framework

2003-10-21 Thread Ray Hunter
> just wanted a general idea on what kind of PHP framework everyone is using.. > i've heard of pear, and interjinn.. is there a preference or distinct > advantage that a particular framework has in comparison to one another? Check the archives...this has been touched on numerous times in the past

Re: [PHP] Tab index

2003-10-22 Thread Ray Hunter
On Wed, 2003-10-22 at 11:07, John Nichel wrote: > Hardik Doshi wrote: > > I am using the HTML. Javascript is not standard of W3C > > organization and that's why i don't want to use it. > > > > Is there any other solution for setting up the > > tabindex on the Drop down menu? > > > > Thanks > > >

Re: [PHP] command line arguments

2003-10-22 Thread Ray Hunter
> I have a php script that I want to run from a command line: > > % /usr/local/bin/php script.php 47264 > > 47264 is the argument, however, I can't figure out how to access it inside > the script. I thought it was the $ARG array or $ARGV, but I am mistaken... > can only refresh me? searching di

Re: [PHP] Screwing up my results...please help

2003-10-22 Thread Ray Hunter
You can always query the database and store the results as arrays in the session and sort the arrays...this would limit how many times that you are querying the database (if you are just sorting the results). -- ray On Wed, 2003-10-22 at 15:02, Ryan A wrote: > Hi, > I have a search form that quer

Re: [PHP] XML Parser

2003-10-24 Thread Ray Hunter
I would probably make this a new thread since it is a new question. Anyways, the answer to your question is no, unless you make that happen. When you use the xml parser in php you are using a expat parser (stream-oriented parser) that you set up (register) handlers for. So when the parser encoun

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
You have various options and it depends on how you want to accomplish it and what you are familiar with. Java has many capabilities of doing network io (class HttpUrlConnect). You can contact your php page on your server and pull down the information (similar to what a browser does). Another alt

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
Sorry, i forgot to mention the package that you might really want to review... java.net is the java package that provides all these classes, like URLConnection and Sockets as mentioned by another person. -- Ray On Fri, 2003-10-24 at 08:24, Ray Hunter wrote: > You have various options and

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
Also, I would like to point out that you could possibly use php-gtk to do some gui applications. Since it has a windows and *nix port you can use that too. I have built a couple of apps with it that pull snmp data from routers with it that worked great. I also used a java installer to install the r

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
P based. Do you know of any websites or tutorials I can > go to to learn more about it? It sounds like a much better option. > > Thanks, > > Matt > > > "Ray Hunter" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Also, I woul

Re: [PHP] Web Service in PHP/XML

2003-10-26 Thread Ray Hunter
if you want to use xml and php you can use soap and then you can incorporate other languages as well...making soap the common protocol via http. most languages support soap implementations of one sort. should be worth your time to look into soap. -- Ray On Sun, 2003-10-26 at 12:44, Dan McCull

Re: [PHP] XML/MySQL

2003-10-26 Thread Ray Hunter
> > > > > > > There are two approaches I think. One is to use the XML DOM, the other is > simply to join lots of strings together. What is the best approach? What i have done in the past is use the dbx extension in php to do my queries. Then i have iterated over the multi-dimens

Re: [PHP] Randomizing 3 different numbers.

2003-10-27 Thread Ray Hunter
Before you add a number to a string make sure that the number is not in any of the other ones if they exist. Use a do-while loop on it... $one = rand( 1,20 ); do { $two = rand( 1, 20 ); }while( $two == $one ); do { $three = rand( 1, 20 ); }while( ($three == $one) && ($three == $two) ); echo

RE: [PHP] Files question

2003-10-30 Thread Ray Hunter
> Well, Bas, the fopen and it's associated manual pages describe just how > to do this. Basic example > > $theFile = fopen("myfile.foo", "r"); //open the file for reading > while(!feof($theFile)){ // while the file is not at the end of the file > $theLine = fgets($theFile, 1024); // get a li

Re: [PHP] PHP with Java extension

2003-11-24 Thread Ray Hunter
> Any ideas and recommendations are more than welcome. Try going the other waytry utilizing PHP in your servlet or j2ee server environment. I have had greater success with this then trying to get java integrated into PHP. HTH -- Ray -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] PHP Java extension--hopeless?

2003-11-27 Thread Ray Hunter
On Wed, 2003-11-26 at 20:17, Raditha Dissanayake wrote: > >Right, I agree this is a very bassakwards way of going about it.. In this > >instance, performance is not really an issue as much as politics.. but > >this comment is useful as we may be able to persuade them into providing > >information a

Re: [PHP] PHP-Mysql problem

2003-12-11 Thread Ray Hunter
> I just installed RedHat Linux 9.0 with Apache/Php/MySql for a project. I > have Apache and PHP running. However, PHP does not have the Mysql module?? > installed and this is the key to our project. Could someone point me in the > right direction to recompile PHP with proper MySql module inc

Re: [PHP] rss/rdf feed classes

2003-12-11 Thread Ray Hunter
Check this out: http://builder.com.com/5100-6374-5109834.html?tag=sc -- Ray On Thu, 2003-12-11 at 11:41, Rolf Brusletto wrote: > Hey all - > > I'm looking for a class that returns a rss/rdf feed with each of the > items as an array, or suggestions on how to items into an array... > > Tia, >

Re: [PHP] Re: can tomcat server run PHP??

2003-12-12 Thread Ray Hunter
On Fri, 2003-12-12 at 01:06, Pavel Jartsev wrote: > Sheawh wrote: > > Can i run PHP using Apache tomcat server?? > > From Google: > http://www.mail-archive.com/[EMAIL PROTECTED]/msg108708.html One thing to point out here is that you can run php files from tomcat itself as cgi...however, that wou

[PHP] Page Redirects - How can it be done

2003-12-17 Thread Hunter, Jess
I have created a simple login/authentication script to help protect some of my PHP pages. Here is where I am running into a little trouble in understanding. Let's Say I have the following pages protected Page1.php Page2.php Page3.php If the user is not logged in, the "inc." file will send them

Re: [PHP] Re: PHP5 XML functions

2003-12-30 Thread Ray Hunter
Make sure that in your php.ini file that you have uncommented that the php_dom extensions and any other extensions that you want to use. Also make sure that php and your web server have access to the extensions. I usually place my extensions in the system path where they can be accessed. Also, I

[PHP] PHP and MSSQL (and Access????)

2003-12-31 Thread Hunter, Jess
Well, with using the MyODBC drivers you could create and maintain a MySQL database through MsAccess. That way you could have the best of all worlds (please don't flame me for saying that). Using MySQL as the database backend, PHP for a web front end and MsAccess as an administrative GUI for your u

Re: [PHP] Display syslog file?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 07:28, Carlton L. Whitmore wrote: > I didn't make my last request very clear. I used lastlog as an example, > but what I really want to do is open a syslog file (text file), that is > coming in from a VPN box. That is easy enough to do if you have access to the syslog file.

Re: [PHP] XML?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 00:30, Jake McHenry wrote: > Can someone point me in the right direction towards creating and > implementing XML with php? I've heard it can make things much easier > on me, and would like more info on it. Also, if anyone has any storys > from using it, might give me an idea o

RE: [PHP] Display syslog file?

2004-01-09 Thread Ray Hunter
crontab that would copy the file and change the permissions for you. That might be the easiest way to do it. -- Ray > > > > -Original Message- > From: Ray Hunter [mailto:[EMAIL PROTECTED] > Sent: Friday, January 09, 2004 8:46 AM > To: [EMAIL PROTECTED] > Subje

RE: [PHP] XML?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 08:22, Jake McHenry wrote: > It's pretty much for data organization, right? yes, it is a method for organizing data into a standard format that is platform independent. > I do a lot of importing and exporting to/from excel. I belive it could > help me out here. Perhaps. >

Re: [PHP] XML/HTML encoding?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 08:23, Vincent Jansen wrote: > I'm doing some XML processing with PHP5 > I'm using UTF-8 encoding > When I look at my xml doc it looks something like > > > > dotted e (ë) works > > > (I hope you see a dotted e) > After xslt I end up with a

RE: [PHP] XML/HTML encoding?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 08:44, Vincent Jansen wrote: > I see this using MSIE 6 > But in Mozilla 1.5 I get ë for ë > > I'm hoping this is fixable without changing browser settings Do you have this page accessible via the web that i can take a look at it. -- Ray -- PHP General Mailing List (http:

Re: [PHP] Form validation: client- or server-side?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 11:07, Matt Grimm wrote: > Is there a distinct advantage to doing form validation / error checking on > the server side using PHP? That's how I've always done it because I know > PHP better than JavaScript, but wouldn't it make sense to validate as much > of your form as poss

Re: [PHP] pass output of php scripts through command line program or cgi

2004-01-16 Thread Ray Hunter
on the commandline you need to have the php executable on your path...then run php -f [filename] so php -f index.php that will do it for you. -- Ray On Sat, 2004-01-17 at 05:44, Paul William wrote: > Hi, > > I want to run the output of all the php scripts running on my apache > server thro

Re: [PHP] Design Patterns & PHP5

2004-01-22 Thread Ray Hunter
On Thu, 2004-01-22 at 14:31, Thomas Svenson wrote: > Got the book Core PHP Programming 3rd Edition, which covers PHP5. > > One thing that it talks about is that with, specially, the new oop model it > will now be much easier to develop in PHP using Design Patterns (DP). check out http://www.phppa

Re: [PHP] what PHP really needs

2004-01-23 Thread Ray Hunter
You can use shared memory too...only on *nix flavors though. -- Ray On Fri, 2004-01-23 at 12:42, PHP general wrote: > There's 1 really important thing missing in PHP as I see it, and it's the > ability to keep variables in memory for as long as > the programmer choose. If this was possible there

[PHP] trouble getting .php3 files to work in php4.0.4pl1 (static)

2001-02-23 Thread Hunter Kelly
of a loss as to why a .php file would work, but a .php3 file does not. Please CC me on any replies, as I'm not subscribed to the lists. Thanks! Hunter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

Re: [PHP] trouble getting .php3 files to work in php4.0.4pl1 (static)

2001-02-23 Thread Hunter Kelly
It was the latter, which was very strange, but the problem seems to have gone away now. How odd. Thanks for your prompt help!! Much appreciated. Hunter "Hoover, Josh" wrote: > > Do you mean that index.php3 does not work when you access that page as the index for >

Re: [PHP] trouble getting .php3 files to work in php4.0.4pl1 (static)

2001-02-23 Thread Hunter Kelly
Hmm okay that works, for most .php3 files, but for some reason, does not work with index.php3. Very strange... H "Hoover, Josh" wrote: > > Try doing this in your httpd.conf (replacing what you have now): > > AddType application/x-httpd-php .php > AddType application/x-httpd-php .php3 > AddTyp

[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

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
dbm --with-db2 --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

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

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

RE: [PHP] Class question

2002-02-20 Thread Hunter, Ray
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

[PHP] Re: how to give vars to a php(shell env) script?

2002-04-23 Thread Ray Hunter
Pass the variables at the command line... $ARGV[i] and $ARGC deteremines the number of variables passed... Try it and see what happens "Hermann Bier" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi NG! > > how could i give some vars to a php script, tha

Re: [PHP] Re: Display large text fields in html

2002-04-23 Thread Ray Hunter
What type of database are you using? You might want to look into the creating temp tables and accessing them... "Jan Peuker" <[EMAIL PROTECTED]> wrote in message 00e101c1eb0a$9a50c730$7ca990d4@toshiba">news:00e101c1eb0a$9a50c730$7ca990d4@toshiba... > Ok, but true frames load very slow - not on a

[PHP] Re: How to connect to mysql through JAVA?

2002-04-24 Thread Ray Hunter
Try checking the sun documentation...java.sun.com or the mysql documentation... Ray Hunter "Balaji Ankem" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > What is the command to connect to mysql through java. &

[PHP] Re: is their a way to run a command as root ???

2002-04-24 Thread Ray Hunter
check your manpages on chroot and sticky bits... This should help you out... Ray Hunter "Scott Baer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is their a way to run a command as root..or another user.. > > I know t

RE: [PHP] regex: string begins with NEITER http NOR cid NOR mailto

2002-05-19 Thread Ray Hunter
Show some code... Thanks, Ray "BigDog" Hunter -Original Message- From: kras [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 19, 2002 9:53 AM To: [EMAIL PROTECTED] Subject: [PHP] regex: string begins with NEITER http NOR cid NOR mailto Hello! I have got a big problem: I

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
MD5 is not that secure compared to blowfish or twofish or the other types of encryption available with mcrypt... Thanks, Ray Hunter -Original Message- From: Javier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 2:43 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Mcrypt

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
It is a one way hash that many people use for simple encryption...however, it should not be used for encrypting sensitive information...some people have used it for encrypting data contained in files... For example do a md5 hash then encrypt the hash Thanks, Ray Hunter -Original

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
And yes...md5 is a message digest hashing utility for "compact digital signatures for an arbitrarily long stream of binary data." MD5 website... Thanks, Ray Hunter -Original Message- From: Sqlcoders.com Programming Dept [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22,

[PHP] JavaScript vs. Header redirect

2002-05-21 Thread Hunter Vaughn
Is there any reason I can't just use a JavaScript redirect from a PHP login handling script since I can't seem to get the header("Location: URL"); function to work? Any security concerns or anything else? As far as I can tell, all calls to header fail as soon as I attain variables based on a POS

RE: [PHP] Mcrypt: Blowfish or Twofish or no fish? Part 2

2002-05-21 Thread Ray Hunter
. I would suggest trying all three (blocksize, keylength, and both) and see which one works best for you. You should see how your system deals with it and then decide...I like to have bigger keylenghts personally... Thanks, Ray Hunter -Original Message- From: Jimmy Lantz [mailto

RE: [PHP] Servers, servers and more servers

2002-05-22 Thread Ray Hunter
apache Thanks, Ray Hunter -Original Message- From: Stephen Tredrea [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:06 AM To: [EMAIL PROTECTED] Subject: [PHP] Servers, servers and more servers I'm trying to put together an architecture for a web environment and h

[PHP] Re: JavaScript vs. Header redirect

2002-05-22 Thread Hunter Vaughn
t obvious way I can see around this is simply to cause the client to redirect using JavaScript. Of course, the downside to this is that the user may have disabled scripting, but I'm working in a pretty closed environment, so I think I can avoid that contingency. I'm using 4

RE: [PHP] php apache log analysers/website stats

2002-05-24 Thread Ray Hunter
Do a search on google and you will find plenty to keep you busy with... Thanks, Ray Hunter -Original Message- From: John Ngo [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 8:47 PM To: [EMAIL PROTECTED] Subject: [PHP] php apache log analysers/website stats hey does anybody

RE: [PHP] inspirational

2002-05-26 Thread Ray Hunter
be a function that does all this, however, you can try to work around it Thanks, Ray Hunter -Original Message- From: jtjohnston [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 25, 2002 11:39 PM To: [EMAIL PROTECTED] Subject: [PHP] inspirational I want to detect the url my .php li

RE: [PHP] Parsing PHP output

2002-05-26 Thread Ray Hunter
...however, I have only played with the XML stuff... Thanks, Ray Hunter -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 26, 2002 12:07 PM To: [EMAIL PROTECTED] Subject: [PHP] Parsing PHP output Dear folks, Has anyone ever been able to get a CGI to produce valid

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 p

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

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
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 the

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 ph

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 Hunte

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

<    1   2   3   4   >