RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Daryl Meese
Ok, if it has worked on one machine then the problem is not with PHP. Programming languages always do exactly what they are told (but, unfortunately not what we think we have told them). One important difference between most windows and linux setups is is case sensitivity. Windows sees $x and $X

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Daryl Meese
, July 23, 2003 7:41 PM To: Daryl Meese Cc: [EMAIL PROTECTED]; Miles Thompson; Petre Agenbag; Beauford.2005; [EMAIL PROTECTED] Subject: Re: [PHP] I'm really getting annoyed with PHP Daryl Meese wrote: One important difference between most windows and linux setups is is case sensitivity. Windows sees

[PHP] PHPSESSID AND SID

2003-07-30 Thread Daryl Meese
This should be a simple question but I can't find the answer in the manual. is it necessary to global variables or constants in functions? i.e. function Foo() { global $PHPSESSID; global SID; // how would you do that anyway? } Thanks in advance Daryl -- PHP General Mailing List

RE: [PHP] Stop neurotic posting

2003-08-14 Thread Daryl Meese
Ok, John, I for one really appreciate the humor in your response ;. That being said, my suggestions are as follows: When a 'helper' comes across a post that they can answer or help with they should scan their newer emails to see if this has already been done to their satisfaction. This

[PHP] limiting functions

2003-06-26 Thread Daryl Meese
Ok, lets see if I can sum this up. I have a number of scripts that my clients (on a virtual host) can include into their PHP scripts to use my software. While my scripts need clear access to all functions (exec, eval, unlink, etc) I would like to stop my clients from having access to some of the

RE: [PHP] File upload HELP!!!

2003-06-27 Thread Daryl Meese
Hello, Have had similar problems with filenames containing spaces and, I imagine the symbol might cause some problems but maybe not. Check if the file spaces are '%20', I also recommend removing odd characters with an eregi_replace statement ($filename = eregi_replace ([^a-z0-9],, $filename);).

RE: [PHP] Sorting problem

2003-06-27 Thread Daryl Meese
Using the asort function will sort and keep the keys attached (there is also arsort for sorting in reverse order with the keys attached). You may already know that you will need to do something like: while(list ($key, $value) = each($arrayname)) { //$key is the array index, $value is the array

RE: [PHP] Sorting problem

2003-06-27 Thread Daryl Meese
ckeck out asort and arsort Daryl -Original Message- From: David Otton [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 7:41 PM To: Sparky Kopetzky Cc: PHP General Subject: Re: [PHP] Sorting problem On Fri, 27 Jun 2003 17:06:50 -0600, you wrote: I need to sort an array and have

RE: [PHP] Sorting problem

2003-06-27 Thread Daryl Meese
David, See what you mean. I guess we need some clarification on the original question? Thanks -Original Message- From: David Otton [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 8:09 PM To: Daryl Meese Cc: PHP General Subject: Re: [PHP] Sorting problem On Fri, 27 Jun 2003 19

RE: [PHP] 'Cannot send Headers' Problem!! MOre..

2003-06-28 Thread Daryl Meese
Ok, It is not the location of the ?php include(global.inc.php);? that matters here. I assume the login function included below is called from the function is_admin that is called in your code somewhere around line 54. That means that HTML has already been output (everything above line 54) and

RE: [PHP] Sorting problem

2003-06-28 Thread Daryl Meese
asort should do the trick. Good Luck Daryl -Original Message- From: Sparky Kopetzky [mailto:[EMAIL PROTECTED] Sent: Saturday, June 28, 2003 9:50 AM To: Daryl Meese; David Otton Cc: PHP General Subject: Re: [PHP] Sorting problem Yes, I need the key to remain associated with the value

[PHP] UPS

2003-06-30 Thread Daryl Meese
If anybody has implemented UPS's shipping registration software using PHP Curl and found away around the error the xml document is poorly formed when it was not please let me know how. Sorry for the lack of detail but UPS is FULL OF Lawyers and I don't want to violate the license agreement.

[PHP] Curl

2003-06-30 Thread Daryl Meese
Is there any good way to see exactly what Curl is sending as a request? Daryl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Curl

2003-06-30 Thread Daryl Meese
To: Daryl Meese Subject: Re: [PHP] Curl You can form the url forst in a variable echo it for testing and then u can send variable to curl Suhas - Original Message - From: Daryl Meese [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 30, 2003 1:32 AM Subject: [PHP] Curl

[PHP] disabling functions

2003-06-30 Thread Daryl Meese
Can I edit the disabled_functions setting on a per directory bases. If the answer is yes, what will be the impact on scripts that: 1. are in another directory where the functions are allowed. and 2. are included into a script in the directory where it is not allowed will those functions operate

RE: [PHP] disabling functions

2003-06-30 Thread Daryl Meese
that should be off limits to others. Daryl -Original Message- From: Derick Rethans [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 10:28 AM To: Daryl Meese Cc: Php-General Subject: Re: [PHP] disabling functions On Mon, 30 Jun 2003, Daryl Meese wrote: Can I edit

RE: [PHP] php-general as REPLY TO

2003-06-30 Thread Daryl Meese
Well, what we have here is a classic business example. If PHP (and this list) were operated commercially then it would behove them to consider examining what their customers percieve as an inconvenience and remove that situation from the relationship to the satisfaction of the majority of their

[PHP] Yahoo Stuff.

2003-06-30 Thread Daryl Meese
Does anyone know why I get an email from Yahoo Groups everytime I submit to this list? The email comes from: Yahoo! Grupos [EMAIL PROTECTED] .com.br] and the body is: Olá [EMAIL PROTECTED], Recebemos sua solicitação para entrar no grupo BUNDAS2003 do Yahoo! Grupos, um serviço de comunidades

[PHP] Curl

2003-06-30 Thread Daryl Meese
Does anyone know if there are any special steps to get Curl to submit data in an iso-8859-1 format? Or, for that matter what the standard format for Curl is? Daryl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Curl

2003-07-01 Thread Daryl Meese
Sorry for the repost but it looks like weekends are not the best time to ask questions. Does anyone know of a way to see the exact request that Curl is sending (other than just printing the variable that is posted)? Daryl -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Get Rid of this Crook

2003-07-03 Thread Daryl Meese
Could someone that this ass of the mailing list Daryl -Original Message- From: MARIAM ABACHA [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 12:02 AM To: [EMAIL PROTECTED] Subject: [PHP] ASSISTANCE NEEDED Hello, I am sorry for the embarrassment this letter might cause you as

[PHP] Register Globals

2003-07-21 Thread Daryl Meese
I would like to rewrite my scripts to work when register globals is off. The problem is that my scripts encompass several thousand files. Does anyone have any suggestions for an effective tool to help in this process? Daryl Meese -- PHP General Mailing List (http://www.php.net

RE: [PHP] replacing everything between 2 strings

2003-07-21 Thread Daryl Meese
look into opendir and readdir with opendir you can open a handle to a directory and use readdir in a loop to look at every file (fopen or whatever to load each file) then parse your files. readdir may help you verify the files you are working on at least have the right extension. Daryl

[PHP] An Error Tracking System

2003-09-30 Thread Daryl Meese
library files and want the other developer to see the error if it is in their file. TIA, Daryl Meese Magia Software -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP within Frames

2003-10-20 Thread Daryl Meese
and show_b.php they will print nothing because they do not know what the variables $a and $b are. If you change the frame src values to show_a.php?a=$a and show_b.php?b=$b they will work. So, my question to you is do your framed pages know the values of all necessary variables? Daryl Meese, Jr

[PHP] Site Replication Software

2003-10-28 Thread Daryl Meese
Does any one know of some good PHP software to replicate websites (allow customer's to choose a template based website, etc.) Can't seem to find anything. TIA, Daryl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Multiple values in a form option field

2003-11-13 Thread Daryl Meese
Hello, See Below. -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003 2:05 PM To: [EMAIL PROTECTED] Subject: [PHP] Multiple values in a form option field I have a php page that has a web form on it. I do a query to populate the options in a

[PHP] Imap function problems

2004-01-15 Thread Daryl Meese
Hello All, I am having some strange problems -- code I tested a while back has broken and I'm not sure why. I am receiving an email with an attachment (testing.doc). when I get the message I call imap_fetchstructure then check the length of the parts array, which is one. It used to always be

RE: [PHP] Imap function problems

2004-01-15 Thread Daryl Meese
The contents of the mail file are located below -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, January 15, 2004 3:42 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Imap function problems On Friday 16 January 2004 05:19, Daryl Meese wrote: I am having some

[PHP] FreeBSD to Linux -- PHP Issues

2004-02-03 Thread Daryl Meese
for hosts with solid dedicated server plans I would appreciate replies of the list. Thanks, Daryl Meese -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cron Jobs and php as apache module

2004-03-17 Thread Daryl Meese
Hello all, Ok, I run php as an apache module but need to have some php scripts called from a cron. Since you can't have php installed as a cgi apache module I don't know how to do this. Any help would be appreciated. TIA Daryl Meese -- PHP General Mailing List (http://www.php.net

[PHP] Imap functions (imap_fetchstructure)

2004-03-26 Thread Daryl Meese
, determine if attachments are present, and determine what the valid array indexes are? 2. Do you know of any email classes/applications that work with these changes? TIA, Daryl Meese -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail header problem

2004-04-06 Thread Daryl Meese
Hello all, When I use the PHP mail function to send emails, with a header of From:[EMAIL PROTECTED]; bounced and otherwise undeliverable messages come back to the user www, not the user I indicated the mail was from. Is this a PHP or MTA issue? Is there something I can do about it? TIA, Daryl

[PHP] PHP tpop3d

2004-04-13 Thread Daryl Meese
() requirements for both (and how to make them cooperate). Daryl Meese -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail Functions on File

2004-04-14 Thread Daryl Meese
authenticated to use it, I would like to just open the file then use the imap_* functions to process it. TIA, Daryl Meese -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Online Office Suite integrated w/ PHP

2004-07-19 Thread Daryl Meese
Hello all, I'm looking for suggestions on what open-source office suites can be: 1. Offered over the Net as a service 2. Integrated with other apps (preferrably using PHP since the other apps are in PHP) 3. Possibly extended using PHP TIA, Daryl -- PHP General Mailing List

[PHP] xored TruStudio PHP Editor

2004-07-27 Thread Daryl Meese
Does anyone know how to get the hover functionality working in xored's webstudio/trustudio for PHP. TIA, Daryl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] [OFF] - Fraudulent web orders - any ideas?

2004-08-24 Thread Daryl Meese
If the problem is only with AmEx then the question is: how important is AmEx to your business? Stop accepting them or don't accept them for a little while. Just a thought because AmEx doesn't make up much of our business. Daryl Meese On Monday 23 August 2004 23:33, Brian Dunning wrote