The `phpinfo()` function outputs information about PHP's configuration.
18
votes
3answers
32k 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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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).
3
votes
2answers
6k 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 ...
0
votes
1answer
651 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 ...