Re: [PHP] phpinfo()

2013-02-20 Thread tamouse mailing lists
On Wed, Feb 20, 2013 at 1:31 PM, Stuart Dallas wrote: > -Stuart > > -- > Sent from my leaf blower > -- Did you get the 4G model, or is this just the WiFi version? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpinfo()

2013-02-20 Thread Tedd Sperling
On Feb 20, 2013, at 2:31 PM, Stuart Dallas wrote: > You were given the answer, did you not try it? > > Starting with the code in your original post: > > 1) Change the type to submit. > 2) Remove the onclick. > 3) Job done! > > -Stuart Sometimes you just can't help. > Sent from my leaf blowe

Re: [PHP] phpinfo()

2013-02-20 Thread Stuart Dallas
On 20 Feb 2013, at 19:23, John Taylor-Johnston wrote: > > > Design in Motion Webdesign wrote: >> >>> >>> >>> John Taylor-Johnston wrote: >>> I cannot find button2 in phpinfo() when I click it. I was hoping to find a $_POST["button2"] value. What am I doing wrong?

Re: [PHP] phpinfo()

2013-02-20 Thread Ashley Sheridan
On Wed, 2013-02-20 at 14:23 -0500, John Taylor-Johnston wrote: > > Design in Motion Webdesign wrote: > > > >> > >> > >> John Taylor-Johnston wrote: > >> > >>> I cannot find button2 in phpinfo() when I click it. I was hoping to > >>> find > >>> a $_POST["button2"] value. > >>> What am I doing wro

Re: [PHP] phpinfo()

2013-02-20 Thread John Taylor-Johnston
Design in Motion Webdesign wrote: John Taylor-Johnston wrote: I cannot find button2 in phpinfo() when I click it. I was hoping to find a $_POST["button2"] value. What am I doing wrong? I really wanted to use a button to pass a different condition than a Use a different value or nam

Re: [PHP] phpinfo()

2013-02-20 Thread Tedd Sperling
On Feb 19, 2013, at 7:57 PM, John Taylor-Johnston wrote: > I cannot find button2 in phpinfo() when I click it. I was hoping to find a > $_POST["button2"] value. > What am I doing wrong? > > onclick="formSubmit()"> > > I really wanted to use a button to pass a different condition than a type

Re: [PHP] phpinfo()

2013-02-20 Thread Design in Motion Webdesign
John Taylor-Johnston wrote: I cannot find button2 in phpinfo() when I click it. I was hoping to find a $_POST["button2"] value. What am I doing wrong? I really wanted to use a button to pass a different condition than a Use a different value or name on the button. Don't use JavaScri

Re: [PHP] phpinfo()

2013-02-19 Thread Ashley Sheridan
John Taylor-Johnston wrote: >I cannot find button2 in phpinfo() when I click it. I was hoping to >find >a $_POST["button2"] value. >What am I doing wrong? > >onclick="formSubmit()"> > >I really wanted to use a button to pass a different condition than a > Use a different value or name on the

[PHP] phpinfo()

2013-02-19 Thread John Taylor-Johnston
I cannot find button2 in phpinfo() when I click it. I was hoping to find a $_POST["button2"] value. What am I doing wrong? onclick="formSubmit()"> I really wanted to use a button to pass a different condition than a -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

Re: [PHP] phpinfo

2012-06-17 Thread Jim Giner
oops - read the notes for PUTENV. Did the 'delete' properly and now I have no entries for php_auth_pw. For those reading along - to remove the variable use putenv("varname") NOT putenv("varname= '' "); Thanks Martijn!! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

Re: [PHP] phpinfo

2012-06-17 Thread Jim Giner
"Matijn Woudt" wrote in message news:cac_gtumpirenkswm2-lucwhbycmxdgg3a+hwr1aoqwiyz40...@mail.gmail.com... On Sun, Jun 17, 2012 at 10:22 PM, Jim Giner wrote: > When one executes a phpinfo call, the display of info broken into the > various sections mostly makes sense. The $_SERVER vars are list

Re: [PHP] phpinfo

2012-06-17 Thread Matijn Woudt
On Sun, Jun 17, 2012 at 10:22 PM, Jim Giner wrote: > When one executes a phpinfo call, the display of info broken into the >  various sections mostly makes sense. The $_SERVER vars are listed with a >  _SERVER name, the environment ones show _ENV, and so on.  But I question >  what are the duplica

[PHP] phpinfo

2012-06-17 Thread Jim Giner
When one executes a phpinfo call, the display of info broken into the various sections mostly makes sense. The $_SERVER vars are listed with a _SERVER name, the environment ones show _ENV, and so on. But I question what are the duplicate ones that dont' have a prefix name. My concern is the P

Re: [PHP] PHPInfo disabled due to security

2010-12-21 Thread Ravi Gehlot
Hello there, GoDaddy show 20M for their limit size when they only allow a max of 5.6 MB of upload. So what I mean is don't try what you see from php_info(). Ravi. On Tue, Dec 21, 2010 at 9:48 AM, Daniel Brown wrote: > On Tue, Dec 21, 2010 at 02:40, Ravi Gehlot wrote: > > Hello there, > > >

Re: [PHP] PHPInfo disabled due to security

2010-12-21 Thread Daniel Brown
On Tue, Dec 21, 2010 at 02:40, Ravi Gehlot wrote: > Hello there, > > If you have a small to medium size web site then go to GoDaddy. Do not > believe all that you see from php_info(). I will give you an example. The > memory_limit it gives on shared hosting does not reflect the one intended > for

Re: [PHP] PHPInfo disabled due to security

2010-12-20 Thread Ravi Gehlot
Hello there, If you have a small to medium size web site then go to GoDaddy. Do not believe all that you see from php_info(). I will give you an example. The memory_limit it gives on shared hosting does not reflect the one intended for your shared account. It shows what was set for overall use. Bu

Re: [PHP] PHPInfo disabled due to security

2010-12-17 Thread Daniel Brown
On Thu, Dec 16, 2010 at 23:39, Paul S wrote: > > Well, I was hoping for stronger arguments to get that DONE. I would think > there be something in the PHP license > that would FORBID disabling functionality. Really? You would really think that? Because we wouldn't. > After all, 'phpinfo' i

Re: [PHP] PHPInfo disabled due to security

2010-12-17 Thread Nicholas Kell
On Dec 16, 2010, at 10:39 PM, Paul S wrote: > On Thu, 16 Dec 2010 00:13:31 +0700, "Daniel P. Brown" > wrote: > > >> >>Well, phpinfo() does, by default, divulge some things that could >> be considered security concerns --- particularly in poorly-managed >> environments. Primarily, this is

Re: [PHP] PHPInfo disabled due to security

2010-12-16 Thread Paul S
On Thu, 16 Dec 2010 00:13:31 +0700, "Daniel P. Brown" wrote: Well, phpinfo() does, by default, divulge some things that could be considered security concerns --- particularly in poorly-managed environments. Primarily, this is by giving a synopsis of versions and paths of software, but so

Re: [PHP] PHPInfo disabled due to security

2010-12-15 Thread Daniel P. Brown
On Wed, Dec 15, 2010 at 09:57, Paul S wrote: > > Warning: phpinfo() has been disabled for security reasons in > /home/.../php/phpinfo.php on line 2 > > My ISP has disabled phpinfo and has not answered my tech requests on this > for over a month. > > They seem to never have a thing to do but play g

[PHP] PHPInfo disabled due to security

2010-12-15 Thread Paul S
Warning: phpinfo() has been disabled for security reasons in /home/.../php/phpinfo.php on line 2 My ISP has disabled phpinfo and has not answered my tech requests on this for over a month. They seem to never have a thing to do but play games with silly security "issues". In a day some phone ca

Re: [PHP] phpinfo shows wrong value of post_max_size

2008-06-18 Thread Pavel
В сообщении от Wednesday 18 June 2008 14:25:35 Yi Wang написал(а): > Hi, > > These day I'm working around large file uploading. php runs on the > windows server 2003. > > I changed the post_max_size value in the registry. Then phpinfo > reports the value changed from 8M to 200M (local value. Master

[PHP] phpinfo shows wrong value of post_max_size

2008-06-18 Thread Yi Wang
Hi, These day I'm working around large file uploading. php runs on the windows server 2003. I changed the post_max_size value in the registry. Then phpinfo reports the value changed from 8M to 200M (local value. Master value stayed still 8M.). I think phpinfo should report that value as 8M, not

Re: [PHP] PHPInfo - the application

2008-01-09 Thread Lester Caine
Richard Heyes wrote: Do you mean phpsysinfo? http://phpsysinfo.sf.net/ Bingo, thanks. I bet google works as well now :) THAT looks a very useful package and it's been sitting in the package list on all my Linux machines un-found. I've already got it set up on the local network! -- Lester

Re: [PHP] PHPInfo - the application

2008-01-09 Thread Richard Heyes
Do you mean phpsysinfo? http://phpsysinfo.sf.net/ Bingo, thanks. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the cost of online support ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-PROFITS ** -- PHP General Mailing List (http:

Re: [PHP] PHPInfo - the application

2008-01-09 Thread Stut
Richard Heyes wrote: Lester Caine wrote: Richard Heyes wrote: Does anyone have a URL for it? Naturally Google returns a lot of pages which are about the actual function. http://www.php.net/ just put phpinfo into the 'search for' and you will get the REAL data for it. Google is never the be

Re: [PHP] PHPInfo - the application

2008-01-09 Thread Richard Heyes
Lester Caine wrote: Richard Heyes wrote: Does anyone have a URL for it? Naturally Google returns a lot of pages which are about the actual function. http://www.php.net/ just put phpinfo into the 'search for' and you will get the REAL data for it. Google is never the best starting point when

Re: [PHP] PHPInfo - the application

2008-01-09 Thread Lester Caine
Richard Heyes wrote: Does anyone have a URL for it? Naturally Google returns a lot of pages which are about the actual function. http://www.php.net/ just put phpinfo into the 'search for' and you will get the REAL data for it. Google is never the best starting point when you know what you are

[PHP] PHPInfo - the application

2008-01-09 Thread Richard Heyes
Does anyone have a URL for it? Naturally Google returns a lot of pages which are about the actual function. Thanks. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the cost of online support ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND

Re: [PHP] phpinfo problem

2007-08-13 Thread Richard Lynch
On Sun, August 12, 2007 10:32 pm, Rick Knight wrote: > I have just installed PHP-5.2.3 on my Kubuntu Feisty box. I removed > all > the debian php first and then compiled php with the options I needed. > Now everything seems to be working except phpinfo.php which consists > of > one line. > > > > >

Re: [PHP] phpinfo problem

2007-08-13 Thread Robert Cummings
On Mon, 2007-08-13 at 17:07 +0100, Lester Caine wrote: > Stut wrote: > > Rick Knight wrote: > >> Thanks Chris, > >> > >> That was the problem. Is this new php5? I've used 3 prior php4 version > >> and didn't have this problem. > > > > The default value for short_open_tags was flipped a while back

Re: [PHP] phpinfo problem

2007-08-13 Thread Rick Knight
Richard Heyes wrote: The default value for short_open_tags was flipped a while back. Might I suggest you read the changelog next time you upgrade to a newer version - it tells you important stuff like that. The problem people will have is having to go through ALL the PHP5 changes when convert

Re: [PHP] phpinfo problem

2007-08-13 Thread Richard Heyes
The default value for short_open_tags was flipped a while back. Might I suggest you read the changelog next time you upgrade to a newer version - it tells you important stuff like that. The problem people will have is having to go through ALL the PHP5 changes when converting from PHP4. Why i

Re: [PHP] phpinfo problem

2007-08-13 Thread Lester Caine
Stut wrote: Rick Knight wrote: Thanks Chris, That was the problem. Is this new php5? I've used 3 prior php4 version and didn't have this problem. The default value for short_open_tags was flipped a while back. Might I suggest you read the changelog next time you upgrade to a newer version

Re: [PHP] phpinfo problem

2007-08-13 Thread Richard Heyes
The default value for short_open_tags was flipped a while back. Might I suggest you read the changelog next time you upgrade to a newer version - it tells you important stuff like that. And, FWIW, never use short tags. Always use http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk

Re: [PHP] phpinfo problem

2007-08-13 Thread Stut
Rick Knight wrote: Thanks Chris, That was the problem. Is this new php5? I've used 3 prior php4 version and didn't have this problem. The default value for short_open_tags was flipped a while back. Might I suggest you read the changelog next time you upgrade to a newer version - it tells yo

Re: [PHP] phpinfo problem

2007-08-13 Thread Rick Knight
Thanks Chris, That was the problem. Is this new php5? I've used 3 prior php4 version and didn't have this problem. Thanks, Rick Chris wrote: You probably just have short_open_tags set to Off in your php.ini file. If so, either turn it On, or change the file to be: Chris Rick Knight wrot

Re: [PHP] phpinfo problem

2007-08-12 Thread Chris
You probably just have short_open_tags set to Off in your php.ini file. If so, either turn it On, or change the file to be: Chris Rick Knight wrote: I have just installed PHP-5.2.3 on my Kubuntu Feisty box. I removed all the debian php first and then compiled php with the options I needed.

[PHP] phpinfo problem

2007-08-12 Thread Rick Knight
I have just installed PHP-5.2.3 on my Kubuntu Feisty box. I removed all the debian php first and then compiled php with the options I needed. Now everything seems to be working except phpinfo.php which consists of one line. I get a blank screen. If I delete the php.ini file it get the usua

[PHP] phpinfo does not display openssl module

2007-08-10 Thread Alain Roger
Hi i've reinstalled the complete server and i use apache module to load openSSL. However, if i uncomment in PHP.INI the extension=php_openssl.dll, it still does not appear on screen when i use phpinfo() function. i've tried also to uncomment some other extension and they also are not displayed du

Re: [PHP] phpinfo displays blank page

2007-06-21 Thread Daniel Brown
On 6/21/07, Tijnema <[EMAIL PROTECTED]> wrote: Good point, but that doesn't affect the PHP CLI ;) Tijnema Yes, I'm aware of that but if the CGI/module displays the correct stuff, then it can narrow the problems down to the CLI itself. With regard to the CLI, try a few things from t

Re: [PHP] phpinfo displays blank page

2007-06-21 Thread Tijnema
On 6/21/07, Daniel Brown <[EMAIL PROTECTED]> wrote: On 6/20/07, Tijnema <[EMAIL PROTECTED]> wrote: > On 6/21/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: > > You're right, that works. So why doesn't my script work? All it contains is: > > > > > phpinfo(); > > ?> > > Hard to say, as this just *sh

Re: [PHP] phpinfo displays blank page

2007-06-21 Thread Daniel Brown
On 6/20/07, Tijnema <[EMAIL PROTECTED]> wrote: On 6/21/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: > You're right, that works. So why doesn't my script work? All it contains is: > > phpinfo(); > ?> Hard to say, as this just *should* work. What you can try is to hook up the processor with some

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Tijnema
On 6/21/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: You're right, that works. So why doesn't my script work? All it contains is: Hard to say, as this just *should* work. What you can try is to hook up the processor with some debugger The strace program will do the job I think, if not, t

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Jeff Schwartz
You're right, that works. So why doesn't my script work? All it contains is: Tijnema <[EMAIL PROTECTED]> wrote: On 6/20/07, Jeff Schwartz wrote: > Thanks for getting back to me so quickly. > > I checked the archives and viewed the source before I posted the problem. The > source is empty

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Nathan Nobbe
do you have other php files that produce html output still working (after the upgrade)? if not, there is probly something wrong w/ the new php installation. is this the same phpinfo script you were using before the upgrade? if not there may be a problem w/ the phpinfo script. -nathan On 6/20/

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Daniel Brown
On 6/20/07, Tijnema <[EMAIL PROTECTED]> wrote: On 6/20/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: > Thanks for getting back to me so quickly. > > I checked the archives and viewed the source before I posted the problem. The source is empty except for the junk IE puts into it. Is there a speci

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Tijnema
On 6/20/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: Thanks for getting back to me so quickly. I checked the archives and viewed the source before I posted the problem. The source is empty except for the junk IE puts into it. Is there a specific log or error file I should check? I upgraded

RE: [PHP] phpinfo displays blank page

2007-06-20 Thread Warren Vail
EMAIL PROTECTED] Sent: Wednesday, June 20, 2007 10:00 AM To: PHP List Cc: Jochem Maas; Daniel Brown Subject: Re: [PHP] phpinfo displays blank page Thanks for getting back to me so quickly. I checked the archives and viewed the source before I posted the problem. The source is empty except fo

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Jeff Schwartz
Thanks for getting back to me so quickly. I checked the archives and viewed the source before I posted the problem. The source is empty except for the junk IE puts into it. Is there a specific log or error file I should check? I upgraded from 4.x. I also ran "php phpinfo.php" (phpin

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Jochem Maas
Daniel Brown wrote: > On 6/20/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: >> When I run phpinfo() nothing is displayed. It used to work. I recently >> upgraded to 5.2.1 but I can't be sure that's exactly when phpinfo >> stopped working. Has anyone else run into this? lots of people :-) what did

Re: [PHP] phpinfo displays blank page

2007-06-20 Thread Daniel Brown
On 6/20/07, Jeff Schwartz <[EMAIL PROTECTED]> wrote: When I run phpinfo() nothing is displayed. It used to work. I recently upgraded to 5.2.1 but I can't be sure that's exactly when phpinfo stopped working. Has anyone else run into this? Thanks, Jeff - Fus

[PHP] phpinfo displays blank page

2007-06-20 Thread Jeff Schwartz
When I run phpinfo() nothing is displayed. It used to work. I recently upgraded to 5.2.1 but I can't be sure that's exactly when phpinfo stopped working. Has anyone else run into this? Thanks, Jeff - Fussy? Opinionated? Impossible to please? Perfec

Re: [PHP] PHPInfo data

2007-05-03 Thread Richard Lynch
I believe those are all settings from httpd.conf of Apache rather than php.ini, at least based on what they are... On Thu, May 3, 2007 3:23 pm, Chris Boget wrote: > In looking at the PHPInfo data on our two seperate servers, I see that > one > server (server 1) has the following settings (while th

Re: [PHP] PHPInfo data

2007-05-03 Thread Daniel Brown
Those are Apache configuration settings that are compiled into the Apache modules. You'll probably want to recompile both Apache binaries with the same options if you want both servers to show that information identically. On 5/3/07, Chris Boget <[EMAIL PROTECTED]> wrote: In looking at the

[PHP] PHPInfo data

2007-05-03 Thread Chris Boget
In looking at the PHPInfo data on our two seperate servers, I see that one server (server 1) has the following settings (while the other one, server 2, does not): Apache Environment downgrade-1_0 force-response-1_0 Environment BMC_GLOBALC_HOME PATROL_GC_VERSION PATROL_HOME PATROL_TEMP R

Re: [PHP] phpinfo returns a permission error

2006-02-14 Thread Kevin Kinsey
Dave M G wrote: and this: $ ls -l /home/dave/web_sites/phpinfo.php It says: -rw--- 1 dave dave 20 2006-02-13 22:45 /home/dave/web_sites/phpinfo.php Well, I'd sure suspect this. PHP/Apache are probably running as "nobody", "daemon", "www", or somesuch, and the permissions on the fil

Re: [PHP] phpinfo returns a permission error

2006-02-14 Thread Dave M G
So, what does this say: $umask It says: 0022 and this: $ ls -l /home/dave/web_sites/phpinfo.php It says: -rw--- 1 dave dave 20 2006-02-13 22:45 /home/dave/web_sites/phpinfo.php and are you using the browser to view the file via a server (e.g., the browser address bar says "http://"

RE: [PHP] phpinfo returns a permission error

2006-02-13 Thread Jay Blanchard
[snip] I wanted to adjust my register global settings in my php.ini file. I found instructions on this page: http://www.dmcinsights.com/phpmysql/phpini.php The first thing it says to do is take a look at the results of phpinfo(); to see where the php.ini file actually is. So I c

Re: [PHP] phpinfo returns a permission error

2006-02-13 Thread Kevin Kinsey
Dave M G wrote: PHP list, I wanted to adjust my register global settings in my php.ini file. I found instructions on this page: http://www.dmcinsights.com/phpmysql/phpini.php The first thing it says to do is take a look at the results of phpinfo(); to see where the php.ini file actual

[PHP] phpinfo returns a permission error

2006-02-13 Thread Dave M G
PHP list, I wanted to adjust my register global settings in my php.ini file. I found instructions on this page: http://www.dmcinsights.com/phpmysql/phpini.php The first thing it says to do is take a look at the results of phpinfo(); to see where the php.ini file actually is. So

Re: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread Dotan Cohen
On 6/20/05, Chris W. Parker <[EMAIL PROTECTED]> wrote: > AmirBehzad Eslami > on Monday, June 20, 2005 12:11 PM said: > > > On Monday, June 20, 2005, Jason Barnett wrote: > > > >> [..] but it would have been cool to see what things > > they've done to handle the numbe

RE: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread Chris W. Parker
AmirBehzad Eslami on Monday, June 20, 2005 12:11 PM said: > On Monday, June 20, 2005, Jason Barnett wrote: > >> [..] but it would have been cool to see what things > they've done to handle the number of page requests they have. > > > Take a look at the attached fi

Re: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread AmirBehzad Eslami
On Monday, June 20, 2005, Jason Barnett wrote: JB> [..] but it would have been cool to see what things they've done to handle the number of page requests they have. Take a look at the attached file. HTH, Behzad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread Dotan Cohen
On 6/20/05, Jason Barnett <[EMAIL PROTECTED]> wrote: > Rats, I guess Andrei is watching this list because it's already down :P > > I knew they used PHP... but it would have been cool to see what things > they've done to handle the number of page requests they have. Oh well. :-/ > If anybody wa

Re: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread Jason Barnett
Rats, I guess Andrei is watching this list because it's already down :P I knew they used PHP... but it would have been cool to see what things they've done to handle the number of page requests they have. Oh well. :-/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

Re: [PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread Richard Davey
Hello AmirBehzad, Monday, June 20, 2005, 7:07:27 PM, you wrote: AE> Yes! phpInfo() on Yahoo! AE> URL: http://advr1.advertising.scd.yahoo.com/ Very cool :) I like the amount of Yahoo modules they are using within PHP. I'm not entirely sure this page will stay up for much longer though (at least I

[PHP] phpinfo(); executed on Yahoo!

2005-06-20 Thread AmirBehzad Eslami
Yes! phpInfo() on Yahoo! URL: http://advr1.advertising.scd.yahoo.com/ 1) First I was at: http://promo.yahoo.com/user_research/ 2) Then I moved to an upper directory: http://promo.yahoo.com/ 3) "Do you Yahoo!", the new page said. So I did "View Source". 4) http://advr1.advertising.scd.yahoo.com/

[PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread AmirBehzad Eslami
Yes! phpInfo() on Yahoo! URL: http://advr1.advertising.scd.yahoo.com/ 1) First I was at: http://promo.yahoo.com/user_research/ 2) Then I moved to an upper directory: http://promo.yahoo.com/ 3) "Do you Yahoo!", the new page said. So I did "View Source". 4) http://advr1.advertising.scd.yahoo.com/

[PHP] phpInfo() executed on Yahoo!

2005-06-20 Thread AmirBehzad Eslami
Yes! phpInfo() on Yahoo! URL: http://advr1.advertising.scd.yahoo.com/ 1) First I was at: http://promo.yahoo.com/user_research/ 2) I moved to the upper directory: http://promo.yahoo.com/ 3) "Do you Yahoo!", the new page said. So I did "View Source". 4) http://advr1.advertising.scd.yahoo.com/ Chee

[PHP] phpinfo() doesn't report correctly for php 5.0.3

2005-01-24 Thread Cere Davis
Has anyone else noticed this? When I install php5.0.3 with: make clean && ./configure --prefix=/usr/local --with-mysqli=shared,/usr/bin/mysql_config --enable-soap --enable-cli --with-pear --with-apxs2=/usr/bin/apxs2 --enable-xmlrpc --no-create --no-recursion --with-soap --with-xmlrpc --with-xs

[PHP] PHPInfo reports wrong version

2003-09-19 Thread Trininox
I'm running Apache 2 on Win32 and after installing 4.3.3 I notice the X-Powered-By HTTP header is still PHP 4.3.2 so its reporting the wrong version in the header you can see http://gto.dynu.com/phpinfo.php PHP 4.3.2 looking further down everything says 4.3.3 except the title and the X-Powered hea

Re: [PHP] phpinfo() and HTTP_RAW_POST_DATA

2003-01-02 Thread Chris Shiflett
--- Kristopher Yates <[EMAIL PROTECTED]> wrote: > I made your suggested change to php.ini and I show local > value 1 and master value 1. Does it mean raw data > populates the variable $HTTP_RAW_POST_DATA when this is > == 1 or does it mean that raw data is visible within > phpinfo() when value ==1

Re: [PHP] phpinfo() and HTTP_RAW_POST_DATA

2003-01-02 Thread Kristopher Yates
Hi Chris, I made your suggested change to php.ini and I show local value 1 and master value 1. Does it mean raw data populates the variable $HTTP_RAW_POST_DATA when this is == 1 or does it mean that raw data is visible within phpinfo() when value ==1 in php.ini file? Just curious because, th

Re: [PHP] phpinfo() and HTTP_RAW_POST_DATA

2003-01-02 Thread Chris Shiflett
That data is only populated when always_populate_raw_post_data is on (check your php.ini). Chris --- Kristopher Yates <[EMAIL PROTECTED]> wrote: > I was just curious, is there a reason $HTTP_RAW_POST_DATA > isn't included in the phpinfo() function? I would > imagine one could see all globals vi

[PHP] phpinfo() and HTTP_RAW_POST_DATA

2003-01-02 Thread Kristopher Yates
Hi, I was just curious, is there a reason $HTTP_RAW_POST_DATA isn't included in the phpinfo() function? I would imagine one could see all globals via phpinfo().. Is $HTTP_RAW_POST_DATA global or is it only global if globals are registered (php.ini setting)? From what I can tell, this var is

RE: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Jody Cleveland
> I'm guessing you don't have the short start tag enabled, try Thank you!!! That did it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread hacook
Maybe you should check the CHMOD (authorizations). Check if the "Execute" level is on. "Jody Cleveland" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > > You're calling it through a web server, right? > > Yup: > http://email.winnefox.org/wals/info.php > > Jody -- PHP G

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Martijn Grendelman
"Jody Cleveland" <[EMAIL PROTECTED]> schreef in bericht 84CFA712F666B44A94CE6BE116BAF4B0B4E0A5@MAIL">news:84CFA712F666B44A94CE6BE116BAF4B0B4E0A5@MAIL... > > You're calling it through a web server, right? > > Yup: > http://email.winnefox.org/wals/info.php > Look at the HTML source of that page:

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Martijn Grendelman
"Jody Cleveland" <[EMAIL PROTECTED]> schreef in bericht 84CFA712F666B44A94CE6BE116BAF4B0B4E0A5@MAIL">news:84CFA712F666B44A94CE6BE116BAF4B0B4E0A5@MAIL... > > You're calling it through a web server, right? > > Yup: > http://email.winnefox.org/wals/info.php > Look at the HTML source of that page:

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Leif K-Brooks
I'm guessing you don't have the short start tag enabled, try Jody Cleveland wrote: You're calling it through a web server, right? Yup: http://email.winnefox.org/wals/info.php Jody -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it wi

RE: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Jody Cleveland
> Do any other PHP pages work, like just echo "hello world"; ?? Ok, hello world doesn't work, but I'm running squirrelmail which all the pages used for that are php, and they work fine. Jody -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread 1LT John W. Holmes
> > You're calling it through a web server, right? > > Yup: > http://email.winnefox.org/wals/info.php Do any other PHP pages work, like just echo "hello world"; ?? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread Jody Cleveland
> You're calling it through a web server, right? Yup: http://email.winnefox.org/wals/info.php Jody -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpinfo page doesn't display anything

2002-12-12 Thread 1LT John W. Holmes
> I need to change something in my php.ini file, and in searching for where it > is, I found three. So, to find the real one, I made a page that only has > this in it: > > > and called it info.php. Well, when I bring up that page, it's completely > blank. Any ideas? You're calling it through a we

[PHP] phpinfo page doesn't display anything

2002-12-12 Thread Jody Cleveland
Hello, I need to change something in my php.ini file, and in searching for where it is, I found three. So, to find the real one, I made a page that only has this in it: and called it info.php. Well, when I bring up that page, it's completely blank. Any ideas? -Jody Cleveland Winnefox Library S

RE: [PHP] phpinfo

2002-11-03 Thread David Russell
pport Manager Barloworld Optimus (Pty) Ltd Tel: +2711 444-7250 Fax: +2711 444-7256 e-mail: [EMAIL PROTECTED] web: www.BarloworldOptimus.com -Original Message- From: Matt T. Galvin [mailto:mattg@;disaster.com] Sent: 01 November 2002 10:50 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] phpinfo Re

Re: [PHP] phpinfo

2002-11-01 Thread Matt T. Galvin
Restart apache... that should be it on XP use the Restart Script in you apache program group on unix do a /usr/local/apache/bin/apachectl graceful or just apachectl graceful if it is in your path HTH, Matt At 05:50 AM 11/2/2002 +0900, you wrote: <[EMAIL PROTECTED]> -- PHP General Mail

Re: [PHP] phpinfo

2002-11-01 Thread @ Edwin
Hello, (B (B"David Russell" <[EMAIL PROTECTED]> wrote: (B> Hi all, (B> (B> I upgraded php and apache on my development machine (Windows XP). I am (B> now running apache 1.3.27 and php 4.2.3. (B> (B> When I run a phpinfo(), I get my full list of stuff as expected, except (B> that the apac

[PHP] phpinfo

2002-11-01 Thread David Russell
Hi all, I upgraded php and apache on my development machine (Windows XP). I am now running apache 1.3.27 and php 4.2.3. When I run a phpinfo(), I get my full list of stuff as expected, except that the apache version reported is 1.3.24. Has anyone else seen this. Have I done something wrong? Th

Re: [PHP] phpinfo

2002-05-22 Thread Jason Wong
On Thursday 23 May 2002 14:23, Dennis Gearon wrote: > has anyone tried to eval() php info to prevent it from being displayed > so it could be processed for config checking, instead? Try: ob_start(); phpinfo(); $doo = ob_get_contents(); # $doo holds the output of phpinfo() ob_end_clean();

[PHP] phpinfo

2002-05-22 Thread Dennis Gearon
has anyone tried to eval() php info to prevent it from being displayed so it could be processed for config checking, instead? Since what version have the 'subsections' of phpinfo() been available, like phpinfo(INFO_CONFIGURATION); ? --

[PHP] phpinfo() printing old ./configure arguments

2002-03-18 Thread Markus Bertheau
Hello, We recently upgraded the php apache modules to include some bugfixes and the wddx module, but phpinfo() does still show a compilation time of August 1 2001 and the old compilation infos. Where do I have to dig about that? Please cc me as I'm not on the list. Markus Bertheau signatur

[PHP] phpinfo() and phpmyAdmin

2002-03-12 Thread Daniel Negron/KBE
I can get phpinfo() working properly on a page that I just create in the same directory. But why will the phpmyAdmin phpinfo.php not show anything but a blank page ? All other functions of phpMyAdmin work properly. Thank You <><><><><><><><><><><><><><><><> Daniel Negrón Lotus Notes Adminis

[PHP] phpinfo

2002-02-07 Thread linux
can I limit the information shown in phpinfo function? the info it gives is a little risky for me thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] phpinfo() question

2002-01-06 Thread Gaylen
L PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, January 06, 2002 10:06 PM Subject: RE: [PHP] phpinfo() question > When you run phpinfo(), the first line of detail has the OS > version. What variable produces this? Thats the output from "uname -a" on the command line..

RE: [PHP] phpinfo() question

2002-01-06 Thread Jason Murray
> When you run phpinfo(), the first line of detail has the OS > version. What variable produces this? Thats the output from "uname -a" on the command line... at least, under *nix it is... Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

[PHP] phpinfo() question

2002-01-06 Thread Gaylen Fraley
When you run phpinfo(), the first line of detail has the OS version. What variable produces this? -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com/ PHP KISGB v3.02 Guest Book http://www.gaylenandmargie.com/phpwebsite/ -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] phpinfo() returning Zero Sized Reply

2001-12-04 Thread David Robley
On Wed, 5 Dec 2001 04:52, Brian C. Doyle wrote: > Okay so i got rid of the echo and still no go.. > > I am using version 4.0.6 > > At 08:11 PM 12/4/2001 +0200, Valentin V. Petruchek wrote: > >phpinfo() is a function itself. It needn't echo: > > >phpinfo(); > >?> > > > >Zliy Pes, http://www.zliype

Re: [PHP] phpinfo() returning Zero Sized Reply

2001-12-04 Thread Brian C. Doyle
--- >From: "Brian C. Doyle" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Tuesday, December 04, 2001 8:07 PM >Subject: [PHP] phpinfo() returning Zero Sized Reply > > > > hello all, > > > > I have a script with > > > echo phpinfo();

  1   2   >