The `phpinfo()` function outputs information about PHP's configuration.

learn more… | top users | synonyms

18
votes
3answers
31k views

how to run and install phpize

I have been meaning to install ffmpeg as an extension to my php setup. So before I can install it, I need to phpize it. I installed php5-dev by sudo apt-get install php5-dev But now when I run phpize ...
7
votes
3answers
7k views

What is 22527 in error_reporting 22527 of phpinfo

In my local dev env, I use PHP Version 5.3.3-1ubuntu9.2. Now when I see error_reporting, the value is 22527. What is 22527? I checked http://www.php.net/manual/en/errorfunc.constants.php, but I ...
7
votes
2answers
2k views

How to get phpinfo() variables from php programatically?

I am attempting to get a list of dependable(consistent across requests) list of "hidden" constants in PHP(as in, the client-side won't know about it in most cases without hacking). Some of the ...
6
votes
7answers
5k views

Is there an equivalent to phpinfo() in ASP.NET?

I've looped over the Request.ServerVariables collection in ASP.NET, but it's not as comprehensive as phpinfo(). Anyone aware of a script for ASP.NET that includes all that info, including server ...
6
votes
5answers
1k views

Where does phpinfo() get its info?

If you run a phpinfo(); does it show exactly what is in the php.ini or if settings are changed on the fly via php with methods like ini_set() or via .htaccess will they be shown in phpinfo?
5
votes
5answers
1k views

Python Equivalent to phpinfo()

Quite simply, is there a python equivalent to php's phpinfo();? If so, what is it and how do I use it (a link to a reference page would work great).
5
votes
3answers
564 views

phpinfo - an easy way for seeing it?

Each time I want to see the phpinfo(); I have to: create a info.php file; write phpinfo(); in it. go to the browser and type my "thisproject.dev/info.php" I'm on Ubuntu and my question is.. Isn't ...
5
votes
3answers
964 views

What is the name of your system with PHP_OS constant

I use PHP_OS constant and I want to know what it can return on differents OS. I found this : On Linux -> Linux On FreeDSB -> FreeBSD On Windows NT -> WINNT On Mac Os X -> Darwin Can anyone tell ...
5
votes
1answer
228 views

How are codeigniter's session system seprated with PHP's built in $_SESSION?

As the manual says: Note: The Session class does not utilize native PHP sessions. It generates its own session data, offering more flexibility for developers. But when I store some data ...
4
votes
2answers
5k views

PHP configuration to enable sessions

On our development server, sessions handling works fine. On our production server, it doesnt. phpinfo on the development server shows: session Session Support ...
4
votes
1answer
2k views

What does stdout in display_errors in phpinfo() mean?

I have 'stdout' under display_errors in my phpinfo. What does it mean? Where can I find the documentation about it? I could not find one in http://php.net/ I read here telling that it should be ...
3
votes
2answers
5k views

phpinfo() mod_rewrite

I'm attempting to perform some url rewriting, and after looking at the phpinfo file, I can't see any mention of this.. My host is FastHosts. Should I be looking for something else in the phpinfo() or ...
3
votes
2answers
1k views

Problem of different PHP versions reported

I have upgraded to PHP 5.3 on a development machine (Windows 7 box). php-v shows PHP 5.3.3 (cli) (built: Jul 21 2010 20:36:55) Copyright (c) 1997-2010 The PHP Group Zend Engine v2.3.0, Copyright ...
3
votes
1answer
74 views

php directives in .htaccess?

I have attempted to make a few changes to php via .htaccess, yet none have yielded any results. For example: php_value memory_limit 256M within will not activate. Attempting to set SetEnv PHPRC ...
2
votes
3answers
318 views

get and save path to php.ini file

Is it possible to get the path to the php.ini file with a php script and save this path to a variable? I know I can call phpinfo() to find out the path, but it prints a lot of info and I only need the ...
2
votes
2answers
392 views

How was my running php compiled?

I'm trying to compile a new instance of PHP (5.4.0) from the source code and want to keep compatibility with the one (PHP 5.3.6-13ubuntu3.6) already installed from the distro, Ubuntu-11.10. That is, I ...
2
votes
2answers
1k views

Make PHP command line display phpinfo page by page?

When I use the PHP CLI to get the phpinfo all I end up with is the last half. Here is the command: > php -i I'm not sure what it would be call? But is there a way of controlling the output so ...
2
votes
1answer
79 views

How to define was page requested over https or http? [duplicate]

Possible Duplicate: PHP: HTTP or HTTPS? How can one tell? Is there a way to define this? $_SERVER superglogal doesn't provide such info. Even only it's ['SERVER_PROTOCOL'] ...
2
votes
1answer
54 views

why can not I see the value (status) of safe_mode and register_globals

why can not I see the value (status) of safe_mode and register_globals I use this code from php.net: echo 'display_errors = ' . ini_get('display_errors') . "\n"; echo 'register_globals = ' . ...
2
votes
1answer
310 views

Is there a way to force phpinfo() to output its stuff without formatting. Just like in CLI mode?

But of course in normal mode not CLI. Formated output included among other HTML destroys existing webpage layout.
2
votes
2answers
1k views

memory_limit=80M. what is the maximum image size for imagecreateformjpeg()?

i have a webhosting that gives maximum memory_limit of 80M (i.e. ini_set("memory_limit","80M");). I'm using photo upload that uses the function imagecreatefromjpeg(); When i upload large images it ...
1
vote
2answers
551 views

Detecting register_argc_argv in PHP

I need to check if register_argc_argv is enabled in my PHP application installer. I wrote a code, but it's not working. It always saying it's disabled while it's enabled already in php.ini: ...
1
vote
1answer
463 views

phpInfo: What does “Virtual Server” refer to?

I noticed that in phpinfo under "apache2handler", it says: Virtual Server Yes What does that refer to? Does that mean that apache is on a virtual (i.e. not dedicated) host? What would be a ...
1
vote
1answer
557 views

$_SERVER['REQUEST_METHOD'] does not exist

I've just installed WAMP and I can access localhost and get the phpinfo() output. However, although I can see _SERVER['REQUEST_METHOD'] is set to GET, I'm trying to use the following PHP: if ...
1
vote
1answer
203 views

PHP script just hangs on large file uploads

I have a php script that allows users to upload multiple files to server on POST, then redirect to next page. It seems to have been working for some time but lately users are reporting it hanging ...
1
vote
2answers
353 views

xdebug: Don't get rid of machine name as xdebug.idekey

I am fighting to get xdebug working with my Apache 2.x, PHP 5.3 and my Netbeans 6.9: I got to the point that everything looks good in phpinfo, except: local value local value master ...
1
vote
3answers
838 views

PHP ini_get() and php.ini are not in sync

My php.ini has a memory_limit of 256M. phpinfo() reflects this. But from within PHP, ini_get('memory_limit'); returns 32M. My fatal errors for exceeding memory limit also say that the max is 32M. Any ...
1
vote
3answers
487 views

fwrite() not permitted, but phpinfo() says it should be

I am getting the following from a script I am trying to run: Notice: fwrite() [function.fwrite]: send of 7 bytes failed with errno=1 Operation not permitted in ...
1
vote
2answers
74 views

Apache Problem, phpinfo gives following arror

Simply calling phpinfo(); gives the following info.. Fatal error: Using $this when not in object context in /var/www/phpinfo.php on line 2 It is a fresh Ubuntu + Apache install on Amazon EC2.
1
vote
1answer
528 views

How do I know which include path will be used in PHP?

When I run phpinfo() and look by the Configuration category under PHP Core, I see a directive titled include_path, with a local value and a master value. In this case, my local value is set to .: ...
1
vote
1answer
115 views

How to use get_cfg_var() in a cakePHP app?

I have a cakePHP app with my DB servers configured in the app/config/ database.php file. However, I need to use the get_cfg_var ('mysql.default_host') to get the host name because the client does ...
1
vote
0answers
291 views

DOTNET class not found, what does “not present in this build” mean?

I have tried installing ZendServer, WampServer, and XAMPP. When I installed ZendServer, my code that instantiates a new DOTNET() works. With WampServer and XAMPP, however, it gives me the error "Class ...
0
votes
1answer
112 views

Is there some php_info-like method in ruby?

Is there some method to show Session, ENV, POST, and GET data in a Ruby web app?
0
votes
1answer
2k views

How do I change upload_max_filesize and max_execution_time in php.ini?

I am trying to change my upload_max_filesize and max_execution_time in my php.ini I've tried upload_max_filesize = 80M max_execution_time = 300 and ini_set('max_execution_time', '45') ...
0
votes
2answers
2k views

MongoDB / PHP on WAMP — phpinfo vs php -i

I'm trying to set up MongoDB with PHP and WAMP. I had WAMP 64 bit installed previously, but I see that the PHP drivers don't work with that, so I uninstalled it and installed 32 bit. I downloaded ...
0
votes
2answers
139 views

How do i check mysql database extension enable/disable on server in php?

I am working on a PHP install script, and I need to check many server settings before installing applications there. So, how do I check the mysql database extension if it is enabled/disabled on ...
0
votes
2answers
2k views

phpinfo() is not working it shows blank page but other php working

I am completely lost as to why this is happening. I am on a server x10hosting i have a phpfile named "phpinfo.php" inside this file it says <?php phpinfo(); ?> it doesn't say for all i can ...
0
votes
1answer
835 views

how to display phpinfo()?

I have phpinfo() text and I want to send text with post data to another php page and I want to display php info in this page. my code : index.php <html> <form action = "go.php" method = ...
0
votes
1answer
229 views

phpinfo showing on pages without being called

Some pages are showing the phpinfo() output (in HTML so not php -i) even though there is no call to phpinfo() in that page. The pages include a number of files, but i have grep'd the whole directory ...
0
votes
1answer
132 views

php.ini not found in location reported by phpinfo()

We use an unmanaged Rackspace cloud server here at work. It's running Ubuntu 11.10. I wanted to install the gearman library and extension so I need to find the currently loaded php.ini file. Running ...
0
votes
1answer
642 views

Symfony 2.1 Session Local Value and Master Value (read on phpinfo)

I'm having problems with sessions when i sarted migration from symfony 2.0 to symfony 2.1. I'm using simplesamlphp for authentication and everything was working ok on symfony 2.0. On Symfony 2.1 it ...
0
votes
1answer
3k views

PHP :mbstring module install

I have tried to install the mbstring module for PHP. I have entered the below commands: yum install php-mbstring /usr/local/apache/bin/apachectl restart Module is now installed but the errors has ...
0
votes
1answer
52 views

How to make php_info working on apache + fastcgi?

the same with title~ Thank you very much.
0
votes
2answers
92 views

mySQL PDO not enabled in phpinfo()

I am trying to setup a local PHP development envrironment but am having trouble getting mySQL enabled for PDO and am fairly new to this type of setup...so Im not sure what I could be missing. I have ...
0
votes
0answers
92 views

WAMP MySQL upgrading not updating phpinfo?

I have been running WAMP for a little while on my local computer, and recently re-installed, and put the newest version of WAMP on the system (along with a ton of other stuff, beside the point). I ...
0
votes
0answers
94 views

PHP Loads Different MySQL Server Version

I have installed MySQL 5.6.9 dev on Ubuntu 12.10 32bit, instead of using apt-get to install stable version 5.5.29. My PHP5, Apache and MySQL are all working, however, I do not see MySQL section using ...
0
votes
0answers
61 views

apache2-mpm-itk seems not working for me

OS: Ubuntu 11.10 <IfModule mpm_itk_module> AssignUserId www-qi www-qi </IfModule> Why the User/Group is still www-data in phpinfo() output? Please see the screenshot attached. The ...
0
votes
1answer
102 views

php 5.2.17 date('T') gives incorrect timezone. Server time+phpinfo time are correct

I am having a bit of a weird issue: the date function gives timezone=MST the date function from the centOS prompt gives me EST the phpinfo() function returns America/New_York As Plesk was showing ...
0
votes
1answer
109 views

Block access to php.ini and phpinfo.php in root

I read another question on how to do this, and the most highlighted solution was the following: <Files php.ini> order allow,deny deny from all </Files> I can't really fiddle with this ...
0
votes
1answer
128 views

phpinfo displays date.timezone warning in MAMP

I ran a phpinfo() function in MAMP, and received the following warning, embedded in the php info table: Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone ...

1 2