[PHP] phpdocumentor with PHP5.4

2013-07-07 Thread Lester Caine
Anybody have phpdocumentor running with PHP5.4? I'm convinced that the errors my copy is throwing are due to e_strict, but I've confirmed that I have the right ini file ( all the needed extensions load ) and I'm getting error_reporting showing 22527 with e_strict off and 24575 with e_strict on

Re: [PHP] phpdocumentor with PHP5.4

2013-07-07 Thread Sebastian Krebs
You can simply update phpdocumentor Am 07.07.2013 17:10 schrieb "Lester Caine" : > Anybody have phpdocumentor running with PHP5.4? > I'm convinced that the errors my copy is throwing are due to e_strict, but > I've confirmed that I have the right ini file ( all the needed extensions > load ) and I

Re: [PHP] phpdocumentor with PHP5.4

2013-07-07 Thread lester
It's a clean install via PEAR a couple of hours ago! Sent from my android device. -Original Message- From: Sebastian Krebs To: Lester Caine Cc: PHP General List Sent: Sun, 07 Jul 2013 16:41 Subject: Re: [PHP] phpdocumentor with PHP5.4 You can simply update phpdocumentor Am 07.07.2013

Re: [PHP] phpdocumentor with PHP5.4

2013-07-07 Thread Sebastian Krebs
I meant: PhpDocumentor 2 Am 07.07.2013 17:44 schrieb : > It's a clean install via PEAR a couple of hours ago! > > Sent from my android device. > > -Original Message- > From: Sebastian Krebs > To: Lester Caine > Cc: PHP General List > Sent: Sun, 07 Jul 2013 16:41 > Subject: Re: [PHP] php

Re: [PHP] phpdocumentor with PHP5.4

2013-07-07 Thread Lester Caine
Sebastian Krebs wrote: I meant: PhpDocumentor 2 Problem solved ... Notes on https://github.com/phpDocumentor/phpDocumentor2 need a little update to correct the installation notes to use the beta builds rather than alpha ones. -- Lester Caine - G8HFL - Contact - htt

Re: [PHP] phpdocumentor with PHP5.4

2013-07-07 Thread Sebastian Krebs
You can submit a pull request for that 2013/7/7 Lester Caine > Sebastian Krebs wrote: > >> I meant: PhpDocumentor 2 >> > Problem solved ... > Notes on > https://github.com/**phpDocumentor/phpDocumentor2need > a little update to correct the inst

[PHP] htaccess

2013-07-07 Thread Tedd Sperling
Hi gang: I have a client who has an account with GoDaddy (I know). GoDaddy says they have PHP v 5.3 installed on the client's account, but phpinfo() says different, namely it reports 5.2.17. After calling GoDaddy, they said the client has an htaccess file that makes everything 5.2 instead of 5

Re: [PHP] htaccess

2013-07-07 Thread Simon J Welsh
On 8/07/2013, at 8:06, Tedd Sperling wrote: > Hi gang: > > I have a client who has an account with GoDaddy (I know). > > GoDaddy says they have PHP v 5.3 installed on the client's account, but > phpinfo() says different, namely it reports 5.2.17. > > After calling GoDaddy, they said the clien

Re: [PHP] htaccess

2013-07-07 Thread Tedd Sperling
Simon: Confirmed. Those two lines cause the problem. However, commenting out those lines causes other problems. Are there similar statements to these: AddType application/x-httpd-php .php .htm .html AddHandler x-httpd-php5-cgi .php .htm .html That will allow for their function (whatever

[PHP] Making a Timeout Expiration Length to Session Variables

2013-07-07 Thread dealTek
Hi all, I would like to make a timeout length to session variables, so that if a user didn't use the browser page for let's say 5 minutes - the session variables would expire and the user would need to login again. Q: What's the best way to implement this functionality? -- Thanks, Dave - Dea