Tagged Questions
0
votes
2answers
89 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 ...
-1
votes
0answers
50 views
PHP - index.php not loading, but others does
I'm an newbie in php, I just install LAMP on Centos 6.4 (64bit) and try to write simple index.php page to show phpinfo
My Index.php code:
<?php
phpinfo();
?>
When I'm browse to ...
3
votes
1answer
73 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 ...
0
votes
0answers
93 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
1answer
126 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
0answers
59 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
101 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
108 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
127 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 ...
2
votes
1answer
77 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'] ...
1
vote
1answer
547 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 ...
0
votes
1answer
632 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 ...
-1
votes
2answers
273 views
smtp, phpinfo, sendmail
I am trying to send email using PHPmailer but when I change the SMTP server in php.ini, it is not updating in the phpinfo - it's still showing localhost. I'm assuming that this why I'm getting the ...
0
votes
2answers
136 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 ...
1
vote
3answers
483 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 ...
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 ...
-3
votes
1answer
685 views
Allowed memory size of 33554432 bytes exhausted (tried to allocate 11264 bytes)
I'm trying to upload file using simple form. Size of file is 1.37 MB.
After page reload, i get this error:
Allowed memory size of 33554432 bytes exhausted (tried to allocate 11264 bytes)
This is ...
-1
votes
4answers
259 views
php.ini variable not set throgh htacess
Which php.ini variables we can not set through phpfiles or with htaccess.
Means if we want to set the variable then we have to directly configure at php server files.
can anyone give me list of ...
0
votes
1answer
748 views
phpinfo() outputs nothing
I've tried phpinfo() but it output nothing. It is interesting that php-r "phpinfo();" works correctly while using phpinfo() in web outputs nothing.
Again, nothing is written to error.log too. php.ini ...
0
votes
0answers
105 views
Phpinfo not working, redirects to web root [closed]
I have a script on my website which solely has a phpinfo call in it <?php phpinfo(); ?> however you'll notice when you go to this it redirects straight to root instead.
No idea why
0
votes
0answers
212 views
Unable to edit session.hash_function in php.ini (PHP 5.3.6)
I am developing a Web app with the MAMP solution stack (v2.0.5), which includes:
Mac OS X (v10.7.3)
Apache v2.2.21
MySQL v5.5.9
PHP v5.3.6
The path to my loaded php.ini configuration file: ...
0
votes
0answers
716 views
pecl oauth package installed but not reflected in phpinfo
I have installed the php oauth 1.2.2 consumer extension aside PHP 5.3.3 on Ubuntu:
~$ pecl list
Installed packages, channel pecl.php.net:
=========================================
Package Version ...
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 = ' . ...
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')
...
2
votes
2answers
389 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 ...
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 ...
1
vote
2answers
549 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:
...
0
votes
0answers
280 views
phpinfo shows wrong version [closed]
I've installed PHP version 5.3.10. the latest one which is currently in the php.net webpage.
However when I run phpinfo() it shows the version as PHP Version 5.2.4RC3-dev
I'm also not seeing all ...
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
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 ...
1
vote
1answer
201 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
352 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
2answers
73 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.
5
votes
3answers
553 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 ...
2
votes
3answers
317 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 ...
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
830 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
664 views
PHP Apache phpinfo hide environment variables
Is it possible to obfuscate or remove environment variables from phpinfo?
If not, is the only alternative to display the phpinfo function?
Thinking about it further, someone could easily ...
2
votes
1answer
308 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.
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 ...
-2
votes
3answers
148 views
PHP new page in same file?
I'm working on a PHP project and I need some help. I need to work with one php file and have multiple links on that php page. If a user clicks on one it will show phpinfo(); for example.
So how can I ...
0
votes
0answers
1k views
Fatal error: Call to undefined function mysqli_init()
I have a really strange error. My httpd server have been working fine until last Wednesday, when I uninstalled the MS SQL and visual studio C#. When I restarted the PC, Ii discovered that some parts ...
0
votes
0answers
104 views
One server sending email, the other not doing it: what to look for in phpinfo?
Using phpmailer I'm sending emails with no problems when the script is stored in one server, but I'm having problems in another server when uploading the same script. In this other server, the emails ...
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 ...
0
votes
0answers
309 views
Getting body of pop3 email msg fails on some systems when using PHP's IMAP functions
I've built a POP3 mail retriever apart from a couple functions I got from the PHP.net site in the comments section & modified a bit, which basically gets the message structure & parses the ...
-1
votes
1answer
335 views
Mail Not Sending from My Server
I am having issues sending mail from my server, when I type in phpinfo() I get this:
Mail: /var/spool/mail/frank
...
_ENV["MAIL"]: /var/spool/mail/frank
The php file that I'm using the ...
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 ...
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
3answers
834 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 ...
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 ...

