[PHP] Re: why are passwords stored encrypted in databases even when thedatathey protect is stored in the same database?

2008-06-13 Thread Dietrich Bollmann
into hands-it-should-not-be-in, it won't be > there for long. > > - Tul > > P.S. in other words, sounds fine to me :) Thank you again! ...so finally I can get to work :) Best wishes, Dietrich On Fri, 2008-06-13 at 14:20 +0200, M. Sokolewicz wrote: > Dietrich Bollmann

[PHP] Re: why are passwords stored encrypted in databases even when the datathey protect is stored in the same database?

2008-06-13 Thread Dietrich Bollmann
every user who is allowed to download a file and a private password for every new url. Using this approach, the same file will be downloaded by different users via different urls and passwords. The password for an url is stored in the database encrypted and send over to the user unencrypted per ema

[PHP] why are passwords stored encrypted in databases even when the data they protect is stored in the same database?

2008-06-13 Thread Dietrich Bollmann
rd? Thanks for your help :) Dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SetEnv directives in VirtualHost configuration not accessible in PHP

2008-05-16 Thread Dietrich Bollmann
sleep about a problem before stealing other peoples time... (and sometimes, unfortunately, the opposite is true). Thank you again, Dietrich On Fri, 2008-05-16 at 14:24 +0200, Iv Ray wrote: I had similar problem some time ago, and there was some solution, which > I can't remember now. >

[PHP] SetEnv directives in VirtualHost configuration not accessible in PHP

2008-05-16 Thread Dietrich Bollmann
n php.ini - but this didn't change anything either. mod_env seems to be loaded also: /etc/apache2/mods-enabled/env.load -> ../mods-available/env.load Thanks, Dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problems with mime encoding of Japanese Characters in Subject and 'From:', 'Reply-to:', ... fields.

2008-03-20 Thread Dietrich Bollmann
Hi - in order to see the Japanese Characters in the previous mail you might have to switch the "Character Encoding" of your Email reader to Unicode (UTF-8). In my case (I am using the "Evolution" mail program on Linux): View > Character Encoding > Unicode (UTF-8)

[PHP] Problems with mime encoding of Japanese Characters in Subject and 'From:', 'Reply-to:', ... fields.

2008-03-20 Thread Dietrich Bollmann
MAIL PROTECTED]> Displayed as: From: 楽天市場ジュエリー・アクセサリーニュース <[EMAIL PROTECTED]> ...snip... Subject: ★ポイント10倍&送料無料★1,000円ジュエリー大集合!【楽天】 (2008/03/19) If anybody can explain me the problem I would be most grateful :) Thanks, Dietrich --- PS: I appended a little example

[PHP] openssl_sign

2003-12-01 Thread Dietrich Heise
doku right, a SHA1 hash over the data is generated followed by signing this hash. What's going wrong here? mfg Dietrich Heise -- Open WebMail Project (http://openwebmail.org) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] openssl_sign and openssl_verify

2003-11-28 Thread Dietrich Heise
Hi, is there a way to create the same signature with openssl from the command line? Also I need to verify a php gererated signature at the command line. Background: Two servers, one php is compiled with --with-openssl and the other not :/ thanks Dietrich -- PHP General Mailing List (http

[PHP] session dropping data

2002-07-01 Thread dietrich
on is persisting, but data is being emptied from it. any help would be excellent. thanks, dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail() + attachement

2002-04-20 Thread Wolf-Dietrich von Loeffelholz
Is it possible to send with mail an attachment .. if yes, how ??? Greetings wolf -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] sockets and flush()

2002-04-09 Thread Dietrich Ayala
no tables. my test script prints a single string prior to the sockets code. thx, dietrich > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 09, 2002 11:12 AM > To: dietrich > Cc: [EMAIL PROTECTED] > Subject: Re: [P

[PHP] sockets and flush()

2002-04-09 Thread dietrich
? thanks! dietrich [EMAIL PROTECTED] dietrich.ganx4.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] xml-rpc for windows?

2002-04-07 Thread dietrich
located somewhere in the zip file for > Windows. At least I've heard it was in php 4.1.0. > > Good luck, > Tyler Longren > Captain Jack Communications > [EMAIL PROTECTED] > www.captainjack.com > > - Original Message - > From: "dietrich" <[EMAIL P

[PHP] xml-rpc for windows?

2002-04-07 Thread dietrich
does anyone know where i could find an XML-RPC-EPI dll? thx, dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

AW: [PHP] password=password('$password') <----- ? help me... :P

2002-01-19 Thread Wolf-Dietrich von Loeffelholz
Try this one .. :) .. mysql_connect($host, $user, $pswd); mysql_select_db($db); $query = "SELECT username,password FROM users WHERE username='$username' AND password='$password'"; $result = mysql_query($query); $num = mysql_num_rows($result); -Ursprüngliche Nachricht- Von: Hawk [mailt

[PHP] sql question

2002-01-15 Thread Wolf-Dietrich von Loeffelholz
i want that a select query display me all words beginning with an a .. like select * from tbl_lit where lit_source = ‘c*’ .. thnx bSue