[PHP] Using hash

2003-10-08 Thread Robert Covell
Is there a way to make the dba_open call use hash instead of btree when using db3? By default when opening a database for writing it seems that dba_open uses btree. We have existing db3 databases that utilize hash and not btree. Not sure if sendmail can utilize btree for aliases, but I will

[PHP] Going crazy-db3

2003-10-07 Thread Robert Covell
I have been trying for over a week to write to the sendmail aliases db3 file and have been unable to do so regardless of how I configure the arguments with the dba_open statement. It keeps telling me Invalid argument. It works fine within BerkeleyDB. I can read the file just fine but cannot

[PHP] dba_open cannot write

2003-09-30 Thread Robert Covell
I am trying to write data to a db3 alias file that sendmail uses (made a copy for testing). When I read the file using: $id = dba_open (aliaseswww.db, r, db3); It works. But when I try to change it to: $id = dba_open (aliaseswww.db, w, db3); I get: dba_open(aliaseswww.db,w): Driver

[PHP] Forward mail via PHP

2003-02-06 Thread Robert Covell
Looking for a better solution to forward mail from an IMAP account via PHP to another account. Right now I am utilizing the built in imap functions (i.e. imap_fetchstructure, imap_fetchbody, imap_header among others) to get the individual parts and a MimeMessage class to rebuild the message.

[PHP] rfc1867.c.diff-4.0.6 for php-4.0.4pl1

2002-07-12 Thread Robert Covell
Does a patch exist for php-4.0.4pl1? If not, can I use rfc1867.c from 4.0.6 with 4.0.4pl1? -Bob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP,CyberCash,Verisign,PayFlow

2002-05-17 Thread Robert Covell
You have to have an account with either one. Payflow or CyberCash is just a card swiper on the Internet. An acquiring bank is still needed. Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.471.1095 Fax:

RE: [PHP] who added the damn slashes?

2002-04-15 Thread Robert Covell
I believe your php.ini file has the magic_quotes set to On. If you switch this to Off it will no long add the quotes for you. Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.471.1095 Fax: 816.471.3447 24x7:

RE: [PHP] Accessing Mainframe

2002-03-05 Thread Robert Covell
Short answer: Yes Longer answer: I did this exact (but PC using Java to the Mainframe) thing about 7 years ago for Sprint, so my memory will not be the best. From my experience you can do this but the Mainframe does not by default speak TCP/IP. There are many applications, of which slip my

RE: [PHP] Computer Science and PHP

2002-01-17 Thread Robert Covell
They are trying to prepare you for what they believe businesses want. What will give you the best opportunity to get a job once out of college. When I was in college our teachers sat down with the businesses that came to campus for recruiting and asked What should we be teaching to suit your

[PHP] Version To Version

2001-12-07 Thread Robert Covell
A question about different release versions of PHP. Why do things like png from gd 1.8 work in 4.0.4p1 and stops working in 4.0.6? We had to go back to 4.0.4p1. I have seen similar things with mysql support. We used the same config script for each version. Any ideas? -- PHP General

RE: [PHP] Version To Version

2001-12-07 Thread Robert Covell
, 2001 10:31 AM To: Php-General Subject: Re: [PHP] Version To Version I'm using gd png in 4.0.6 with no problems (Windows). What problems are you having? Robert Covell wrote: A question about different release versions of PHP. Why do things like png from gd 1.8 work in 4.0.4p1 and stops working

RE: [PHP] MySQl IP Address Storage

2001-09-20 Thread Robert Covell
INET_ATON and INET_NTOA -Original Message- From: Felix [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 11:49 AM To: PHP list Subject: [PHP] MySQl IP Address Storage Hello all Can anyone suggest their best idea for a way to store IP addresses in a MySQL Database? Felix

RE: [PHP] Ip Address to binary

2001-09-12 Thread Robert Covell
You could use MySql's built in functions: INET_NTOA() INET_ATON() Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.210.7145 Fax: 816.753.1952 -Original Message- From: Jason Bell [mailto:[EMAIL PROTECTED]]

RE: [PHP] SNMP and PHP

2001-08-14 Thread Robert Covell
I had the same problem and never got it working on Linux. Posted a very similar question and got one response from someone that got it working on FreeBSD but that was it. Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED]

[PHP] Array Bug?

2001-07-30 Thread Robert Covell
Recently I have noticed very strange occurances with PHP and arrays and cannot for the life of me figure out why. When I deal with a large array, +2000 entries the Apache child process Aborts. The same is true when I am working with about 20 different arrays the vary in length, ranging from 3

RE: [PHP] Array Bug?

2001-07-30 Thread Robert Covell
- From: Alexander Wagner [mailto:[EMAIL PROTECTED]] Sent: Monday, July 30, 2001 9:22 AM To: Robert Covell; Php-General Subject: Re: [PHP] Array Bug? File a bug-report on bugs.php.net regards Wagner -- Madness takes its toll. Please have exact change. -- PHP General Mailing List (http

[PHP] SNMP

2001-07-24 Thread Robert Covell
I have been trying to add snmp support into PHP 4.0.4pl1 and 4.0.6 without success. The box currently has ucd-snmp-4.2.1 on it and is working fine with our mod_perl installation. When we configure it with --with-snmp and --enable-ucd-snmp-hack it configures fine and lists the it has found SNMP.

RE: [PHP] \ problem

2001-07-24 Thread Robert Covell
Try stripslashes or something like that (not sure on the name of the function). It is the opposite of addslashes. If you look for addslashes in the function list that you will see the other one. Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com

[PHP] Cannot add SNMP support

2001-07-16 Thread Robert Covell
I have been trying to add snmp support into PHP 4.0.4pl1 and 4.0.6 without success. The box currently has ucd-snmp-4.2.1 on it and is working fine with our mod_perl installation. When we configure it with --with-snmp and --enable-ucd-snmp-hack it configures fine and lists the it has found SNMP.

RE: [PHP] logout

2001-06-20 Thread Robert Covell
Yes, What I have found out is that if you change the realm name the browser (IE and NS) empty the cache for the current authentication and force a re-auth. We append a time stamp to our realm, so they have 1 minute to login before it will change again. If you combine this with sessions and

RE: [PHP] I have a problem with phpMySqlAdmin

2001-05-16 Thread Robert Covell
I would check to make sure that your php installation has mysql compiled in. Do this in phpinfo.php: ?php phpinfo(); ? And look to see how it was compiled and if Mysql is listed there and or in the list of valid options. Sincerely, Robert T. Covell President / Owner Rolet Internet Services,

RE: [PHP] remotely include file

2001-05-08 Thread Robert Covell
I tried the exact same thing. I have a whole slew of the classes that have been developed and wanted to centrally locate them on one server. But every time I included the class, it said cannot instantiate non-existent class Blah Blah Blah. But when I copied over the file, it worked like a

RE: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread Robert Covell
I must support this fashion of login and logout. I have never been able to find a way to clear the browser of the username and password. Once I combined sessions with a date and timestamp in the realm, it worked like a charm. Sincerely, Robert T. Covell President / Owner Rolet Internet

RE: [PHP] Payflow Pro extension in php 4.0.4pl1

2001-04-25 Thread Robert Covell
I would not edit the files themselves as it causes server instabilities. This is what I did and found that it did indeed work, for awhile, crashing miserably. Something like this is far from the production ready ecommerce system that I would desire for my company. We moved to the beta SDK until

RE: [PHP] Payflow, story continued

2001-04-25 Thread Robert Covell
Is anybody reading the other posts about the work in progress being done by John? This extra work seems pointless if it is being looked into by the PHP development team. Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED]

RE: [PHP] scramble the code

2001-04-05 Thread Robert Covell
Just did this sort of thing and my solution might not be the best or the most secure but it does scramble the code. I really wasn't trying to make an unbreakable query string, just something that would be a deterrent. All I did was use base64_encode and decode like: Incoming: $dec =

RE: [PHP] Post but not Post

2001-03-28 Thread Robert Covell
I was just doing this a while back and ran into problems when going to 443. Any ideas on that? A regular fsockopen failed because of the security needed. -Bob -Original Message- From: Jason Brooke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 5:55 PM To: Peter Houchin;

RE: [PHP] sendmail

2001-03-16 Thread Robert Covell
Do you have the switches for sendmail in your path? Our installs have: /usr/sbin/sendmail -t -i for the path information... Sincerely, Robert T. Covell President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.210.7145 Fax: 816.753.1952

RE: [PHP] Payflow Pro

2001-03-13 Thread Robert Covell
I believe that he is using the V3 SDK that Verisign just released. I just went through this same thing. The support in PHP 4.0.2+ is for the V2.11 beta SDK. The API in the new V3 sdk is completely different and was unusable with the current PHP implementation (i.e. There is no PNVersion()

RE: [PHP] Payflow Pro

2001-03-13 Thread Robert Covell
I forgot. THe new VENDER and PARTNER are exclusive to the new SDK. The beta V2.11 will still work with the new V3 architecture that Verisign has put in place but it will not utilize the new functionallity. This I have verified with Verisign due to the PHP not supporting the new SDK yet.

RE: [PHP] Payflow Pro

2001-03-13 Thread Robert Covell
/ Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.210.7145 Fax: 816.753.1952 -Original Message- From: Dan Harrington [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 1:41 PM To: Robert Covell; John Donagher Cc: [EMAIL PROTECTED] Subject: RE: [PHP

RE: [PHP] Payflow Pro

2001-03-13 Thread Robert Covell
To: Dan Harrington Cc: Robert Covell; [EMAIL PROTECTED] Subject: RE: [PHP] Payflow Pro This is something the extension will probably have to implement. I'm going to have to talk to Verisign; there seems to be a difference between a Signio account and a Verisign account, because there are two different

RE: [PHP] Payflow Pro

2001-03-13 Thread Robert Covell
Dan, The V2.11 SDK that they have is supported by PHP. They (Verisign PHP developers) actually went to great lengths ensure that it did work by release the beta V2.11. The reason that the SDK your using (V3) does not work with PHP is due to it just being released about 1 1/2 monthes ago. So

RE: [PHP] undefined symbol (PayFlow Pro)

2001-03-02 Thread Robert Covell
(PNVersion(), 1); } Is it just a coincidence that this is bombing out as well as the undefined symbol... -Bob -Original Message- From: Robert Covell [mailto:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 7:51 AM To: [EMAIL PROTECTED] Subject: [PHP] undefined symbol (PayFlow Pro) Does anyone

[PHP] Is this my error or a bug?

2001-03-02 Thread Robert Covell
Is this following due to a bug in either Payflow Pro SDK or in PHP or my messup? It just seems to odd that the warning is for pfpro_version and then the configtest fails because of pfpro_version. Here are the errors and code it is using: When making PHP

RE: [PHP] [S.O.S.] round() problem

2001-02-17 Thread Robert Covell
Sumarlidi, I have come across this same problem with earlier versions of PHP3. There are versions of PHP3 that do not have the extra parameter. I have 3.0.12 on one of my machines and it doesn't work. You will have to manually calculate your precision using something like:

Re: [PHP] PHP hosting - the final frontier.

2001-02-04 Thread Robert Covell
Fax: 816.753.1952 - Original Message - From: "Boaz Yahav" [EMAIL PROTECTED] To: "'Robert Covell'" [EMAIL PROTECTED]; "Boaz Yahav" [EMAIL PROTECTED]; "Ben Peter" [EMAIL PROTECTED]; "Chris Mason" [EMAIL PROTECTED] Cc: "Php-General&quo

Re: [PHP] PHP hosting - the final frontier.

2001-02-04 Thread Robert Covell
ot; [EMAIL PROTECTED] Sent: Sunday, February 04, 2001 4:37 PM Subject: Re: [PHP] PHP hosting - the final frontier. On Sunday 04 February 2001 23:18, Robert Covell wrote: I understand your concerns, but with this type of logic this mailing list not not be around. Niether would Linux, Apache, MyS

RE: [PHP] PHP hosting - the final frontier.

2001-02-03 Thread Robert Covell
I am going to have to disagree on this one. I run a successful (and profitable) hosting company(http://www.rolet.com). My employees total 1 (me, myself and I). The number of clients hosted is roughly 120. I provide a wide variety of services on Linux, FreeBSD, NT, and W2K. Yes it is hard to

RE: [PHP] PHP hosting - the final frontier.

2001-02-03 Thread Robert Covell
President / Owner Rolet Internet Services, LLC Web: www.rolet.com Email: [EMAIL PROTECTED] Phone: 816.210.7145 Fax: 816.753.1952 -Original Message- From: Boaz Yahav [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 03, 2001 1:38 PM To: 'Robert Covell'; Ben Peter; Chris Mason Cc: Php

RE: [PHP] Pricing for PHP programming???

2001-01-31 Thread Robert Covell
This is a very good question and deal with it everytime I bid a project. Rule of thumb: Ask for what you are worth, if you don't you will wish you did. I have successfully bid on project with hourly rates ranging from $85 - $125. The $$$ range changes based on project needs(db work(+$),