How To Set SERVER_ADMIN On Phpinfo()?

Feb 9, 2007

How do I set this Environment variable "SERVER_ADMIN" that I am seeing on phpinfo()?

View 1 Replies


ADVERTISEMENT

How Disable Phpinfo()

Apr 17, 2009

when some one upload and load files with phpinfo()

he can see our server PHP Configuration.

how can us disable phpinfo()?

View 13 Replies View Related

Phpinfo.php.gif Executing Php

Mar 6, 2007

Having this problem on chroot'ed sites in Ensim.

This is what I have in my php.conf:

Code:
[root@ns1 conf.d]# cat /etc/httpd/conf.d/php.conf
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#

LoadModule php5_module modules/libphp5.so

SetOutputFilter PHP
SetInputFilter PHP

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
This prevents file.php.gif from executing in a non-chrooted site, but in my chrooted sites, file.php.gif will execute as a PHP file. Any idea why? Some other config I have to change?

View 10 Replies View Related

Enable Phpinfo()

Mar 27, 2007

i give following error so how can i enable phpinfo()

Code:
warning : phpinfo() has been disabled for security reasons

View 6 Replies View Related

Zend Won't Show Up In Phpinfo

Mar 31, 2008

cat /proc/version

Linux version 2.6.23.15-80.fc7 (gcc version 4.1.2 20070925 (Red Hat 4.1.2-27)) #1 SMP Sun Feb 10 17:29:10 EST 2008

I installed Zend Optimizer (this is NOT a cpanel box to clarify)

1. Downloaded ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz

2. cd's into that directory

3. ./install.sh

No errors

[root@host ~]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]

However, ZO does not show up in php info

php -v

PHP 5.2.4 (cli) (built: Sep 18 2007 08:50:58)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with eAccelerator v0.9.5.2, Copyright (c) 2004-2006 eAccelerator, by eAccelerator

php -m

[Zend Modules]
eAccelerator

File: /usr/local/Zend/etc/php.ini

[Zend]
zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.3.3
zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.3.3
zend_optimizer.version=3.3.3

zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so

Code:
[root@host lib]# ls -lh
total 32K
drwxr-xr-x 9 root root 4.0K 2008-03-28 20:27 Optimizer-3.3.3
drwxr-xr-x 7 root root 4.0K 2008-03-28 20:27 Optimizer_TS-3.3.3
-rwxr-xr-x 1 root root 11K 2008-03-31 16:21 ZendExtensionManager.so
-rwxr-xr-x 1 root root 11K 2008-03-31 16:21 ZendExtensionManager_TS.so

View 7 Replies View Related

Centos 64bit Phpinfo

Jan 16, 2008

anyone have a cpanel server running centos 64bit or fedora ? i would appreciate a phpinfo. then you can remove it afterwards i need to debug something in 2 of my servers.

View 3 Replies View Related

Zend Not Show In Phpinfo

Jun 22, 2008

The issue starts after I reboot the server for another issue.

And then zend optimizer not show in phpinfo.

I have checked php -m and php -v,both normal.

[root@linux ~]# php -v
PHP 4.3.9 (cgi) (built: Sep 12 2007 11:09:31)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend Technologies
with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies
[root@linux ~]# php -m
[PHP Modules]
bcmath
bz2
calendar
ctype
curl
dba
dbx
dio
domxml
exif
ftp
gd
gettext
gmp
iconv
imap
ldap
mbstring
mime_magic
mysql
openssl
overload
pcntl
pcre
posix
pspell
session
shmop
sockets
standard
sysvsem
sysvshm
tokenizer
wddx
xml
yp
Zend Optimizer
zlib

[Zend Modules]
Zend Extension Manager
Zend Optimizer

But phpinfo page only show
This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies

I am headache and try to reinstall Zend many times and reboot the server many times but not work.

View 5 Replies View Related

Memory_limit Value Not Showing In Phpinfo

May 21, 2007

in my php.ini I have:
memory_limit = 32M

but when I load a phpinfo() page, the setting is displayed nowhere.

Is there a reason for this ? I fear the setting is not taken in consideration by the server because of this.

View 0 Replies View Related

Canonical Phpinfo() Link Thread

May 27, 2008

I find that lots of hosts don't put the link to a phpinfo() script on their websites, even though that would save everyone a lot of unnecessary questions.

So I figure we should have a thread where people can add links to phpinfo scripts on their own hosts, or hosts where they happen to have the URL of a phpinfo script.

For those of you who own your own web hosting services, here's a chance to show off all your installed goodness, and all it takes is placing a simple link here (and put one in your FAQ section on your web site too, for the love of God)..

Since the forum doesn't allow editing your own posts (I still think that is nuts), please include all previous links in your post, so visitors will only need to read the LAST post to find all the updated links in one place.

View 5 Replies View Related

Phpinfo Shows Wrong MySQL Version

Mar 25, 2008

I have recently upgraded MySQL to 5.25

However, when I run phpinfo, I see the following:

mysql
MySQL Support enabled
Active Persistent Links 0
Active Links 0
Client API version 4.1.21
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/lib/mysql/mysql.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib/mysql -lmysqlclient

mysqli
MysqlI Support enabled
Client API library version 4.1.21
Client API header version 4.1.20
MYSQLI_SOCKET /var/lib/mysql/mysql.sock

View 4 Replies View Related

Security Risk To Share Phpinfo File

Mar 10, 2007

There are always people who would like to know what the php settings are on the server. Is it a security risk to share the phpinfo.php file on a website, with anybody who visits that website, able to view it?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved