[PHP] Error with Absolute URLs

2003-12-23 Thread Brad
Hi, I keep getting errors on my websites, that contain absolute URLs, e.g. http://www.url.com/blah.html. With most, being in the folder of my website, it's fine, i can just add $_SERVER['DOCUMENT_ROOT'], but there's a script I use to display the network statistics of an IRC network, which is l

[PHP] running python in php timeout

2008-12-29 Thread brad
Hi, I'm executing a python script from php that runs quite a long time (15+ minutes) and ends up timing out. Is there a way I can execute the python code and move on executing the remaining php code on the page? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Eregi error

2007-02-28 Thread Brad
Hey all, I have been having some trouble with the "eregi" function. I have the following piece of code in my application: function standard_input($input, $min=0, $max=50){ if (strlen($input) <= $max and strlen($input) >= $min ) { $pattern = '^[a-z0-9\!\_ \.- ,/]*$';

[PHP] header error without whitespace issue

2007-10-12 Thread Brad
Error = WARNING: Cannot modify header information - headers already sent by (output started at /home/zoneof5/public_html/index-dev.html:10) in line 1528 of file common.inc.php Which comes from me trying to take a login script and put it into an existing .html file with .htaccess configured to

RE: [PHP] re-post (unanswered) Tables, flash and text

2007-11-07 Thread Brad
yet? Please click here to join for FREE or push the button "Join now" below to apply and start networking with more then 35,000 members of GayMillionaire.net! -Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 07, 2007 8:20 AM To: php-general@lis

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
t;\r\n"; mail( $email, "Your FREE book from Zone of Success Club .com", $headers, $message, "From: $email" ); ?> -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Saturday, November 10, 2007 3:44 PM To: Brad Subject: Re: [PHP] Cannot send

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
I am reading up on it now. I am going to take your advice. Be prepared for a few questions as I make it past the learning curve! :o) -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Saturday, November 10, 2007 4:47 PM To: Brad Cc: php-general@lists.php.net Subject

RE: [PHP] Cannot send a hyperlink

2007-11-10 Thread Brad
sage, "From: $email" ); ?> (Send the mail, when I put $headers in, the function quits working all together.) I hope this helps explain where my head is! Brad -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Saturday, November 10, 2007 4:55 PM To: Brad Cc: 'Jochem

RE: [PHP] Cannot send a hyperlink

2007-11-14 Thread Brad
iso-8859-1".$eol; $msg .= "Content-Transfer-Encoding: 8bit".$eol.$eol; $body.='link '; $msg .= $body.$eol.$eol; mail($to, $subject, $msg, $headers); ?> -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, November 11, 2007 7

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
ink \n"; mail($email, $subject, $body, $headers); Produces and email that does this. -- Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit http://www.zoneofsuccessclub.com";>link No virus found in this incoming message. Checked by AVG Free Edition.

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
quot;.$eol.$eol; $body.= 'http://www.zoneofsuccessclub.com'">link '; $msg .= $body.$eol.$eol; mail($email, $subject, $msg, $headers); Yields Parse error: parse error, unexpected T_STRING in /home/zoneof5/public_html/index.php on line 76 -Original Message-

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
r-Encoding: 8bit".$eol.$eol; $body = "http://www.zoneofsuccessclub.com\";>link \n"; mail($email, $subject, $body, $headers); -Original Message- From: Per Jessen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 9:48 AM To: php-general@lists.php.net Subjec

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
help that knows more than I and recommended on other help files. Why is php refusing to parse as html? -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 9:46 AM To: Brad Cc: 'Daniel Brown'; php-general@lists.php.net Subject: Re: [PHP] Can

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
s .= "Content-Transfer-Encoding: 8bit".$eol.$eol; $body = "http://www.zoneofsuccessclub.com\";>link \n"; mail($email, $subject, $body, $headers); -Original Message- From: Daniel Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14, 2007 11:09 AM To: Bra

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
to post this code on the php website for others to reference! Thank you! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 10:16 AM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] Cannot send a hyperlink Brad wrote: > No access to

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
Not a single reference to sending a hyperlink on that page! -Original Message- From: Dimiter Ivanov [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 11:27 AM To: Brad Cc: Stut; php-general@lists.php.net Subject: Re: [PHP] Cannot send a hyperlink On Nov 15, 2007 5:34 PM, Brad

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
No problem! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 10:37 AM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] Cannot send a hyperlink Brad wrote: > Thank you so much! > > It worked like a champ first try! > I woul

RE: [PHP] Cannot send a hyperlink

2007-11-15 Thread Brad
My bad, You do not need command line access! I should have read more. I just need to get this puppy working is all. Php should be able to do this by it's self! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, November 15, 2007 9:46 AM To: Brad Cc: 'Da

[PHP] two small issues with php mail

2007-11-19 Thread Brad
Implementing Bcc and smtp. #1 email is only being sent to a few recipients. I need to implement $smtp = ‘localhost’; Somewhere, but I keep getting parse errors? #2 trying to do a Bcc but that gives me parse errors as well It should be as easy as? $Bcc [EMAIL PROTECTED]; $eol = "\r\n"

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
$headers = 'bcc: [EMAIL PROTECTED]'; Works but corrupts the "from" portion and changes it to "nobody" Which I think goes back too the smtp portion. Let me try that! Thank you! -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Monday, Novem

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
;Content-Transfer-Encoding: 8bit'; $subject = 'Your free book!'; $body = 'http://www.zoneofsuccessclub.com/freePDF/autopilotebook.pdf";>"Click ME" Here is your FREE autopilot book'; mail($email, $subject, $body, $headers); ?> -Original Messa

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
en [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 1:55 PM To: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail Brad wrote: > $headers = 'bcc: [EMAIL PROTECTED]'; > > Works but corrupts the "from" portion and changes it to "no

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
PHP mailer is not in the assignment and will be counted against me! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 3:43 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: > Implementing Bcc

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
mber 19, 2007 3:43 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: > Implementing Bcc and smtp. "Here we go again" > #1 email is only being sent to a few recipients. > > I need to implement > > $smtp = ‘loca

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
methods to solve my issue would be duly appreciated! -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:17 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: > This information is pulled directly

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
else where! -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:39 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Since it is not in the assignment, find out how to do things within th

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
nal examination or how they got from point a to point d? -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:41 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrote: > This is why I am on this m

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
I am very much aware of phpinfo() Which has nothing to do with being able to edit the php.ini file! -Original Message- From: Wolf [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 4:59 PM To: Brad; php-general Subject: RE: [PHP] two small issues with php mail 1. Always copy the

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
zoneof5/public_html/temp.php _SERVER["REMOTE_PORT"] 1929 _SERVER["GATEWAY_INTERFACE"] CGI/1.1 _SERVER["SERVER_PROTOCOL"] HTTP/1.1 _SERVER["REQUEST_METHOD"] GET _SERVER["QUERY_STRING"] no value _SERVER["REQUEST_URI"] /temp.php _SERVER

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
As per your email! # Brad wrote: > $headers = 'bcc: [EMAIL PROTECTED]'; > > Works but corrupts the "from" portion and changes it to "nobody" > Which I think goes back too the smtp portion. There is no bcc: h

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
problems but has the potential to stop it working. Fin. -Stut ### -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 5:25 PM To: Brad Cc: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail Brad wrot

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
ED] Sent: Monday, November 19, 2007 6:23 PM To: Brad Cc: php-general@lists.php.net; 'Stut' Subject: RE: [PHP] two small issues with php mail Why is what? Sorry, you are going to have to go back and phrase this into a complete sentence. "it makes no sense" refers to what exactl

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
: Monday, November 19, 2007 7:00 PM To: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail On Nov 19, 2007 5:52 PM, Brad <[EMAIL PROTECTED]> wrote: > Why are you being to belligerent? > English 101-104 I have aced. > Top secret security clearance I maintain

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
From: Philip Thompson [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 7:00 PM To: php-general@lists.php.net Subject: Re: [PHP] two small issues with php mail On Nov 19, 2007 5:52 PM, Brad <[EMAIL PROTECTED]> wrote: > Why are you being to belligerent? > English 101-104 I

FW: [PHP] two small issues with php mail

2007-11-19 Thread Brad
_ From: Brad [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 8:26 PM To: 'David Giragosian' Subject: RE: [PHP] two small issues with php mail My original issue is trying to implement a Bcc and Emails are only making it to 50% of the recipients. Re

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
al Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 8:44 PM To: Brad Subject: RE: [PHP] two small issues with php mail well, you need to do some basic debugging. a) replace your mail() function with print statements and review the output to make certain

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
PM To: 'Brad' Cc: php-general@lists.php.net Subject: RE: [PHP] two small issues with php mail Did I miss something or the following line in your code is useless? > $smtp = "localhost"; Brad, if you really need SMTP configuration, and you want to make your life easier with attachm

FW: [PHP] two small issues with php mail

2007-11-19 Thread Brad
-Original Message- From: Brad [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:48 PM To: 'Chris' Subject: RE: [PHP] two small issues with php mail Sir, I am trying... It just is not working... I am trying to implement the auth info, I go from parse error to n

FW: [PHP] two small issues with php mail

2007-11-19 Thread Brad
-Original Message- From: Brad [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:34 PM To: '[EMAIL PROTECTED]' Subject: RE: [PHP] two small issues with php mail Thought it was a support forum! Support usually does not mean "piss off". Brad -Origin

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
Responses like that is encouragement to drop php and move straight to ruby! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 19, 2007 9:07 PM To: Brad Subject: RE: [PHP] two small issues with php mail I'm sorry, but if you have to ask

RE: [PHP] two small issues with php mail

2007-11-19 Thread Brad
. $headers = implode("\r\n", $headers); Implode Hmmm = build array here but, the usage of "\r\n" is already confusing me. The manual says to use it for Bcc Parse error says otherwise when not in you array. Why? Else "blame casey" Never, you are trying to help! Br

Re: [PHP] Php Search Engine

2002-11-25 Thread Brad Pauly
On Mon, 2002-11-25 at 08:31, [EMAIL PROTECTED] wrote: > I am in need of a search engine. I'd rather do one in PhP. Is there one > available that I can see or at least get the code for? This article might help. http://www.onlamp.com/pub/a/php/2002/10/24/simplesearchengine.html Bra

Re: [PHP] MySQL Error

2002-12-01 Thread Brad Bonkoski
with a different user? http://www.mysql.com/documentation/mysql/bychapter/manual_MySQL_Database_Administration.html#Adding_users HTH -Brad Stephen wrote: > Hello, > > I just recently switched to IIS from Apache since IIS came with Windows XP > and I just love Microsoft. I installed P

RE: [PHP] php5 features?

2002-12-03 Thread Brad Young
>php5. >I'm particularly interested in what's gonna be added >or changed to php in regards to >its OOP capabilities. __ Brad Young Director, Product Marketing [EMAIL PROTECTED] www.zend.com Zend - The PHP Company -- PHP General Mai

[PHP] Post Variables

2002-12-04 Thread Brad Bonkoski
x27;t work. Any thoughts on if something like this is doable? obviously in raw HTML it looks like: ?? because I can do: echo $_POST['1'] and get the correct value, but I would like it to get the value of $i? Thoughts? Thanks -Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Hiding Errors

2002-12-05 Thread Brad Pauly
errors however you like. http://www.php.net/manual/en/function.set-error-handler.php HTH, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Good eve

2002-12-06 Thread Brad Bonkoski
Check out: http://www.php.net/manual/en/function.mktime.php HTH -Brad "Miguel Brás" wrote: > I have a table with several field, one of them has a date insertion on the > d/m/y format. > I would like to return only the data for the present day (today will be date > 05/12/02

Re: [PHP] Forms

2002-12-10 Thread Brad Bonkoski
Have you tried echoing out the value on the resulting page, i.e. the page that parses the form? echo $_POST['name']; What does that give you? I don't see anything that really jumps out at me with your code. -Brad "Beauford.2002" wrote: > Hi, > > I'm sen

Re: [PHP] Using fopen() to open a php file with variables.

2002-12-11 Thread Brad Bulger
if you have URL wrappers enabled, do $fp = fopen("http://path/to/your/file/$calendar_file";, 'r'); On Wed, 11 Dec 2002, Jay (PHP List) wrote: > Okay, I need to retrieve the output of a php file with variables being > passed to it. Example: > > $calendar_file = "make_calendar.php3?month=$month&

Re: [PHP] validate querystring

2002-12-11 Thread Brad Bulger
you could try doing $realfilename = realpath($fname); if (strpos($realfilename, $the_valid_path_to_my_file_directory) !== 0) { // bad file name, like /etc/passwd } elseif (is_dir($realfilename)) { // bad user looking at directory } On Thu, 12 Dec 2002, Dara Dowd wrote: > Hello,

Re: [PHP] MySQL error

2002-12-12 Thread Brad Bonkoski
Well, are you getting a valied response from the database? Perhaps it would be nice to add some error handling into your code... i.e.: $mysql_result = mysql_query($query, $mysql_link) or die("Invalid query: $query"); or echo out mysql_error(); GWAD Mailinglist wrote: > Hi, > > I have following

Re: [PHP] Re: Nigerian oil scams

2002-12-12 Thread Brad Bonkoski
Of course Identity theft is another issue Classic email scam to get people's bank account numbers. I think I have seen such on this mailing list about 2-3 times over the past couple of months. Jason Wong wrote: > On Friday 13 December 2002 06:58, Russ Taylor wrote: > > Got to love people who

Re: [PHP] PHP/MySQL Interaction

2002-12-12 Thread Brad Bonkoski
apter/manual_Introduction.html#ANSI_diff_Sub-selects This may help you out in potentially re-writting your query? possibly: select images.* from images LEFT JOIN categories on images.id = categories.id where categories.cat = 3 AND catdgories.cat != 5 HTH -Brad David Freeman wrote: > Hi All > > This i

Re: [PHP] Newer version of PHP causing code incompatibilities

2002-12-13 Thread Brad Bonkoski
Check out the php.ini configuration file, or read about it at the website. I do believe there is an option there where you can declare what your script delimeter is. Most notable an option called "Short open tag" HTH -Brad Paul Keenan wrote: > All of our pages which were previous

Re: [PHP] SSL, PHP, & MySQL

2002-12-13 Thread Brad Bonkoski
I think you may need to read: http://www.php.net/manual/en/function.mysql-connect.php It appears that the SSL client flag for connecting to MYSQL is not available until 4.3.0, but you can pick up the 4.3.0RC3 version now, and test it out! I _think_ this is what you are looking for. HTH -Brad

Re: [PHP] SSL, PHP, & MySQL

2002-12-13 Thread Brad Bonkoski
experience with it. do a search on some MYSQL mailing lists for some insight. Or ask on the PHP-DB mailing list and you may be able to target a better qualified audience. -Brad Joshua Minnie wrote: > What about utilizing an encrypted text file then. Would there be anything > wrong with doing

Re: [PHP] printf %d

2002-12-13 Thread Brad Bonkoski
Read: http://www.php.net/manual/en/function.printf.php (On of the user contrib notes has an example) Or pick up a copy of "The C Programming Language" by Kernighan and Ritchie for a more complete description. -Brad William Martell wrote: > Hello All. > > Can anyone tell me wh

Re: [PHP] key pairs

2002-12-17 Thread Brad Bonkoski
the Bill to and Ship to are the same, which you would key off of and if so, assign the same Unique Address ID to both fields in the master table. Many ways to do this, but those are my thoughts -Brad "1LT John W. Holmes" wrote: > > >Hopefully the other solution worked f

Re: [PHP] Automated Php Page

2002-12-18 Thread Brad Bonkoski
with fwrite() and some of your HTML formatting. Is there anything else specific? If So, post it. Good Luck -Brad [EMAIL PROTECTED] wrote: > Still a php newbie here > > I am creating a website set on an intranet server. I have to create two pages > that consists of the following

Re: [PHP] All Request to the same script

2003-01-15 Thread Brad Pauly
_rewrite module can be very powerful in doing > things like you propose. Yes. I use mod_rewrite to do this. If you have access to httpd.conf, that is the best place to put rules. You can also put rules in .htaccess if that is your only option, however, you take a performance hit for doing i

Re: [PHP] include question

2003-01-15 Thread Brad Bonkoski
It would probably be best to include the absolute path to the images. so instead of: use: Is something like that possible? Otherwise at the very least you should use: HTH -Brad Ryan wrote: > Hello all, > > I'm have a PHP script that works in a folder.. for the sake of clarity we&

Re: [PHP] Sessions or Cookies?

2003-01-18 Thread Brad Pauly
a client, a session identifier will be passed via URL variable unless session.use_only_cookies is enabled in php.ini. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Number Sign in String Variables

2003-01-18 Thread Brad Pauly
y suggestions to get around this? You could use urlencode() and urldecode(). http://www.php.net/manual/en/function.urlencode.php http://www.php.net/manual/en/function.urldecode.php Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[Fwd: Re: [PHP] Number Sign in String Variables]

2003-01-18 Thread Brad Pauly
Oops... -Forwarded Message- From: Brad Pauly <[EMAIL PROTECTED]> To: Joab Stieglitz <[EMAIL PROTECTED]> Subject: Re: [PHP] Number Sign in String Variables Date: 18 Jan 2003 16:40:40 -0700 > OK. I urlencoded the URL and now the URL passes correctly... > > add_t

Re: [PHP] Is there a way to undo the md5() encryption??

2003-01-22 Thread Brad Pauly
> Hi! Is there a way to do the decryption of the encrypted data with the use > of md5()?? Nope. md5 is a one way function. http://www.faqs.org/faqs/cryptography-faq/part07/ Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Redirecting errors

2003-02-05 Thread Brad Esclavon
I have written a script that validates a username/pwd input and if usr/pwd is correct, includes the protected page, or if usr/pwd is wrong, input page reloads the form onto itself with a form submit. all of the code is correct, except that the secured page is viewable from the internet if i explic

[PHP] Thanks problem solved

2003-02-05 Thread Brad Esclavon
once removed from same directory as the login page, the secured page was secure -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] passing a query string to a popup window problems

2003-02-11 Thread Brad Esclavon
I am trying to pass 2 variable values(username and userpassword) to a popup window to display those values when a button is clicked. When the window pops up, the variable names aren't displayed because they havent been passed. Here is the code: onclick="window.open('http://www.bluedorado.com/bdnfo

[PHP] PHP error messages

2003-02-15 Thread Brad Esclavon
I am getting this error message when i use file() to convert a text document to an array. Warning: file("http://www.something.com/the_filename.txt";) - Error 0 in /nfs/cust/directory_structure/index.php on line 21 I have looked on google and on php.net/docs for information on this problem (error

[PHP] LDAP authentication to NDS

2003-02-17 Thread Brad Harriger
Is there any way to find out what privileges a user has to an NDS object throught LDAP? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP 5

2003-02-18 Thread Brad Young
Your best bet is to view the recorded on-line seminars that Zeev Suraski gave on this subject. Go to: http://www.zend.com/iseminar.php View these ones: The Future of PHP and the Zend Engine 2 The Future of PHP and the Zend Engine 2 - Part 2 Examples and tutorials Brad

Re: [PHP] Help with authentication 'design'

2003-02-18 Thread Brad Pauly
x27;s session. One possible way of doing this would be to create a sort of fingerprint (like an md5 hash) of the client based on the HTTP headers that the client sends. Then store the fingerprint in a session variable and check it on each request. User-Agent and Accept-Language might be good choic

[PHP] application security

2003-02-18 Thread Brad Pauly
/articles/web_app_security.php If you have any comments on it I would like to hear them. And a quick thanks to Chris Shiflett for his input. Cheers, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ayuda mysql

2003-02-21 Thread Brad Pauly
d argument is not a valid MySQL-Link resource in >/../messengerphp/cabesera.php on line 88 Creo que su problema es el '/' al fin de 'misito.cl/'. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] general question ?

2003-02-24 Thread Brad Bonkoski
How about changing your post method to 'post' instead of 'get'? Right now it looks like you do not declare the method at all so it defaults to get. " method=post> And then of course you will have to us the $_POST['user'] instead of $_GET['user&

RE: [PHP] Zend Encoder

2003-02-25 Thread Brad Young
ould be like looking at a .EXE file in Windows, but even more convoluted.) Needless to say, even this minor capability has never and will never be developed or utilized by Zend. 3. Zend Encoder is the most secure way to deliver php code. That said, no protection scheme is absolut

RE: [PHP] what are the planned features of php 5?[Scanned]

2003-02-26 Thread Brad Young
You can also view the recorded on-line seminars that Zeev gave, which go into even more detail. http://www.zend.com/iseminar.php The Future of PHP and the Zend Engine 2 The Future of PHP and the Zend Engine 2 - Part 2 Examples and tutorials Brad >-Original Message- &g

[PHP] Bizarre gethostbyname() problem

2003-03-07 Thread Brad Hubbard
If I run the following code from the command line ("php -q socktest.php") it works fine. If I try to run it through a browser gethostbyname fails (prints unchanged host name). What gives? Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

[PHP] string validation functions

2003-03-12 Thread Brad Esclavon
trim($a_string); // removes all newline, carriage returns, and formating $in_str_var_name=str_replace("search_for", "replace_with", $in_str_var_name); replaces any strings or chars also- check out php.net documentation on string-- many other useful functions for string manipulation -- PHP G

[PHP] Re: string validating

2003-03-12 Thread Brad Esclavon
trim($a_string); // removes all newline, carriage returns, and formating $in_str_var_name=str_replace("search_for", "replace_with", $in_str_var_name); replaces any strings or chars also- check out php.net documentation on string-- many other useful functions for string manipulation -- PHP

Re: [PHP] Crypting Passwords for storage.

2003-03-13 Thread Brad Bonkoski
all done on server side though, so perhaps you should utilize SSL to send them over the internet. HTH -Brad "Philip J. Newman" wrote: > I have a user admin for a site, how ever passwords are stored in plane text. > Is there away to crypt and then read the crypt when verifying that

[PHP] php/mySQL time comparison

2003-03-14 Thread Brad Wright
s wrong"); to query the mysql DB. But it doesnt work. Is there a glaring error in my syntax? Can anyone help with this as its driving me nuts Hope someone can help, thanks in advance, brad Cheers, Brad Nel vino la veri

Re: [PHP] php/mySQL time comparison

2003-03-14 Thread Brad Wright
Thanks people, thank you very very much. the missing quotes were the problem. Can't beleive I kept missing that, everytime I re-read the code. Sorted now, and I've still got some hair!! You people are legends!!! Cheers, Brad Nel vino la verità, nella birra la forza, nell'

[PHP] Non systems-wide auto_prepend_file

2003-03-16 Thread Brad Hubbard
Is there any way anyone can think of to set up auto_prepend_file/auto_append_file so that they only affect one virtual domain on an Apache webserver (not system wide)? Cheers, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how do i work with an "object"

2003-07-03 Thread Brad Pauly
the manual, but essentially something like this: $header = imap_header($foo, $bar); print $header->date; http://us4.php.net/manual/en/function.imap-headerinfo.php Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending a PDF page

2003-07-03 Thread Brad Pauly
ob_end_clean(); } http://us2.php.net/manual/en/ref.outcontrol.php Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Red Hat 9, Apache 2, and PHP

2003-07-03 Thread Brad Pauly
so you can probably just tell configure where apxs is. --with-apxs=/path/to/apache/bin/apxs http://www.php.net/manual/en/install.apache.php Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Red Hat 9, Apache 2, and PHP

2003-07-03 Thread Brad Pauly
that is bundled with RH9. That was fixed by 'upgrading' to an older version. Other than that it has been fine. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] URL problem

2003-07-07 Thread Brad Pauly
s. You are using an assignment operator where you should be using a comparison operator. Try using == (or ===): if ($_SERVER['QUERY_STRING'] == "") { disp_cat(); } http://us4.php.net/manual/en/language.operators.assignment.php http://us4.php.net/manual/en/language.operators.compa

Re: [PHP] qry not running??

2003-07-07 Thread Brad Pauly
be? WHERE cat_id = '$cat_name' I don't know what $cat_name is, but since you have a cat_name column, I am wondering if you are comparing two different things. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Permissions on server

2003-07-08 Thread Brad Pauly
whichever user apache is running as (this is the User directive in your httpd.conf file). Then you can restrict the permissions on that directory. You could probably make it 600 if you want. Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Please assist - been on this for hours - Permissions onserver

2003-07-10 Thread Brad Pauly
that this would be the easy part. Any more ideas? Thanks for your help Jason I appreciate it. Writing and moving require the same permissions. Also, there is a big difference between root and webroot. Which one are you talking about? - Brad -- PHP General Mailing List (http://www.ph

Re: [PHP] How do I dump a blob or text into a mySQL Database?

2003-07-14 Thread Brad Pauly
I dump in text or binary. Oddly enough when I run the query I get no error, and can print it and run it through a mySQL terminal, and it works. Anyone have any ideas? Is $buffer empty? I would start there. - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Moving Files/ Temporary Names

2003-07-14 Thread Brad Pauly
use the mv command via the exec function. - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How To Ask Questions - Some List Guidelines

2003-07-14 Thread Brad Pauly
uette that some might find useful. http://www.catb.org/~esr/faqs/smart-questions.html - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] zend optimizer for 4.3.2

2003-07-17 Thread Brad Young
Yes, Zend Optimizer definitely does support 4.3.X. Brad __ Brad Young [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> www.zend.com <http://www.zend.com> Zend - The PHP Company >-Original Message- >From: Adrian Teasdale [mailto:[EMAI

Re: [PHP] Javascript multi text box form validation?

2003-07-18 Thread Brad Pauly
n for what I am trying to do? Thanks in advance. You might want to check out stripslashes(). http://us2.php.net/manual/en/function.addslashes.php - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] explode and escape character for string separator

2003-07-18 Thread Brad Pauly
so, maybe you could escape that character in the users input when you add it. - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] classes v. functions

2003-07-18 Thread Brad Bonkoski
as like polymorphism and inheritance and such. Just google for Object oriented programming, and read some of the numerous exposes on the subject to get a general idea. http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=object+oriented+programming -Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Changing numbers

2003-07-21 Thread Brad Pauly
. Trailing zeros to the right of a decimal are significant. - Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   5   6   7   8   >