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, visit:
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 w
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/)
To
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
-Ori
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 $
esday, 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
>sensi
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 (http://ww
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 practic
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
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
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 va
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 th
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
Ok, It is not the location of the 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
therefore the header and setcooki
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
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.
A
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
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
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
ed to be able to use functions 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 wrot
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
ma
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 onl
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
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
frame sources are set to
show_a.php 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
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
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 d
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 (a
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 s
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
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 wr
tand the crypt() 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
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
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 (http://www.php.
s 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
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://ww
can I get an accurate count of the parts array, 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
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,
Da
38 matches
Mail list logo