php-general Digest 22 Mar 2013 14:22:48 -0000 Issue 8172

2013-03-22 Thread php-general-digest-help
php-general Digest 22 Mar 2013 14:22:48 - Issue 8172 Topics (messages 320663 through 320664): Re: Extremely slow cURL curl_exec execution/response with 5.4.13 320663 by: Jan Ehrhardt application level variable file 320664 by: inungh.gmail.com Administrivia: To subscribe

[PHP] Re: Extremely slow cURL curl_exec execution/response with 5.4.13

2013-03-22 Thread Jan Ehrhardt
Ron in php.general (Thu, 21 Mar 2013 17:25:39 -0500): When upgrading from 5.4.12 to 5.4.13, cURL curl_exec calls are taking something like 700ms to complete. (Even to a file on the same server.) If I replace php_curl.dll library with the version from 5.4.12 all works as expected. Anyone else

[PHP] application level variable file

2013-03-22 Thread inungh
I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I would like to know does PHP have any default file name and file path for this file like Web.config file for ASP.Net and Application.cfm

Re: [PHP] application level variable file

2013-03-22 Thread Daniel Brown
On Fri, Mar 22, 2013 at 10:22 AM, inu...@gmail.com wrote: I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I would like to know does PHP have any default file name and file path for

Re: [PHP] application level variable file

2013-03-22 Thread Sebastian Krebs
2013/3/22 inu...@gmail.com I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I would like to know does PHP have any default file name and file path for this file like Web.config file

Re: [PHP] application level variable file

2013-03-22 Thread Stuart Dallas
On 22 Mar 2013, at 14:22, inu...@gmail.com wrote: I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I would like to know does PHP have any default file name and file path for this

Re: [PHP] application level variable file

2013-03-22 Thread David OBrien
On Fri, Mar 22, 2013 at 10:26 AM, Stuart Dallas stu...@3ft9.com wrote: On 22 Mar 2013, at 14:22, inu...@gmail.com wrote: I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I

[PHP] Re: application level variable file

2013-03-22 Thread Jim Giner
On 3/22/2013 10:22 AM, inu...@gmail.com wrote: I am very new to the PHP application and would like to create a new project. I would like to have a file to save my application level variable and functions. I would like to know does PHP have any default file name and file path for this file like

Re: [PHP] Re: application level variable file

2013-03-22 Thread Samuel Lopes Grigolato
I highly suggest you to read some begginers book or the php.net/manualbefore trying to implement other technologies concepts with PHP. That is because you WILL find some tricks to do what you want, and you'll think PHP is a big chunk of bad smelling code, a totally wrong concept. Forget

[PHP] Re: Extremely slow cURL curl_exec execution/response with 5.4.13

2013-03-22 Thread Jan Ehrhardt
Jan Ehrhardt in php.general (Fri, 22 Mar 2013 10:40:56 +0100): Ron in php.general (Thu, 21 Mar 2013 17:25:39 -0500): When upgrading from 5.4.12 to 5.4.13, cURL curl_exec calls are taking something like 700ms to complete. (Even to a file on the same server.) If I replace php_curl.dll library with

[PHP] Re: Extremely slow cURL curl_exec execution/response with 5.4.13

2013-03-22 Thread Rodrigo MourĂ£o
Hi, The problem could be not related to php/curl, but related with dns resolve. Try to use the IP address. Regards. Rodrigo Mourao Webjump - www.webjump.com.br

[PHP] php, openssl and GOST ciphers

2013-03-22 Thread Eugene M. Zheganin
Hi. I'm trying to sign an S/MIME with PHP, using a pair of GOST-encrypted certificate and a private key. When using openssl itself from a console everything is fine: /usr/local/openssl/bin/openssl cms -sign -in file.txt -out signedfile.txt -signer p12.pem (signedfile.txt is created)