php.ini is the configuration file used by the PHP preprocessor to setup the default settings and certain security restrictions.
1
vote
3answers
297 views
php.ini date.timezone usefulness?
I'm not sure if this is a question for serverfault or stackoverflow but it seems like it has a lot to do with server config.
We have a server in chicago and the server's clock is on chicago time. But ...
0
votes
3answers
2k views
How do I activate SQLite3 on PHP 5.3.3 Centos 5?
I have reviewed the previous questions on this and they don't seem to cover what exactly I'm looking for, before I start, I'm no server admin. I'm trying to help get this server up and active and I ...
1
vote
2answers
2k views
error in php not logging or displaying
I can not get any errors to display on screen on write to a log file. When check phpinfo() print out I have same value of master a local for
display_errors On
display_startup_errors On
error_log ...
0
votes
2answers
858 views
PHP enable sqlite phpinfo states --without-sqlite
I've seen similar questions but none that address my situation adequately. I'm running Apache and PHP 5.3.6 on a amazon cloud server.
phpinfo keeps stating that sqlite is disabled. At least that ...
0
votes
2answers
349 views
PHP as FastCGI: Custom php.ini not working
I'm running PHP as FastCGI (I needed multiple versions of PHP).
.htaccess
AddHandler php5-fastcgi .php
Action php5-fastcgi /cgi-bin/php-5.2.17.fcgi
cgi-bin/php-5.2.17.fcgi
#!/bin/sh
...
2
votes
1answer
303 views
Settings on php.ini ignored
I can't get my server to obey the settings from php.ini (I'm trying to change memory_limit and upload_max_filesize). As far as I can tell, I'm editing the correct file. phpinfo() gives:
Loaded ...
1
vote
1answer
368 views
API numbers don't match on compiled PHP extension
I'm trying to get GD into my PHP. I recently installed PHP5.3.0 on my system running Mac Leopard using mac ports. It did not come with the gd module. So I downloaded gd, compiled it as an extension ...
1
vote
1answer
300 views
PHP throwing XDebug errors ONLY in command line mode
I've been having a few problems running PHP-based utilities within the command line ever since I enabled the XDebug. It runs just fine when executing script through a browser, but once I try an ...
1
vote
1answer
3k views
How do I get the latest FastCGI and PHP versions to peacefully coexist on IIS 6?
I have been going round and round trying to get any sort of PHP running on IIS 6. I somehow managed to successfully get version 5.1.4 running using the php5isapi.dll file. However, I want to upgrade ...
0
votes
1answer
52 views
How do i set a open_basedir with php using fastcgi/apache2 on linux?
I tried to add this line to my virtual hosts in Apache, but failed:
php_admin_value open_basedir "/var/www/users/test"
My installation:
root# apt-get install apache2 apache2-suexec ...
0
votes
1answer
121 views
The requested PHP extension ext-mcrypt * is missing from your system
I have updated my php to version 5.4.13 etc and well in the terminal my version of php states this
PHP 5.4.12 (cli) (built: Mar 16 2013 21:46:23)
But running a composer install io get the ...
0
votes
1answer
80 views
Plesk open_basedir restriction in effect - restart server issue
Hello Everybody,
I got Plesk on a dedicated server. I had open_basedir restriction in effect error in my php application, so i have edited the php.ini files on server core and created one within ...
0
votes
1answer
89 views
wamp php scan php.ini file in root directory
Can I put an additional php.ini in the root directory of a website on localhost?
If so, how can I get wamp to scan that file? There is a php.ini file there now, but wamp is not scanning it.
0
votes
1answer
78 views
php.ini on Apache - does it reset to 'defaults'
I heard somewhere that, if you place a php.ini in a website root or subdirectory it will basically use default settings for everything that is not included in this php.ini file. So if you have changed ...
0
votes
1answer
151 views
default session file Permits
i need to edit the default permits of the session file
i know it's high security risk,
The default permits is :600
[root@server sessions]# stat sess_06pqdthgi49oq7jnlvuvsr95q1
File: ...
0
votes
1answer
552 views
installing zend debugger, ubuntu 12.04
I'm trying to install zend debugger in my ubuntu desktop with php 5.3 which I installed from ubuntu repositories.
I have copied debugger plugin 5.3.x from zend.com to /usr/lib/php5/20090626+lfs and ...
0
votes
1answer
3k views
How to enable mysqli extension on redhat?
My php.ini says:
Additional .ini files parsed
/etc/php53/php.d/curl.ini,
/etc/php53/php.d/fileinfo.ini, /etc/php53/php.d/json.ini, /etc/php53/php.d/mysqli.ini,
/etc/php53/php.d/mysql.ini, ...
0
votes
1answer
105 views
php.ini is not loading on my local machine mac os x
I have a localhost running on my mac osx machine, everything works fine apart from I get this error when running some applications:
Warning: strtotime() [function.strtotime]: It is not safe to rely ...
0
votes
1answer
400 views
WAMP Installation - Multiple PHP Version Issues
I have installed WAMP because I am attempting to modify an an application which uses Zend Optimizer (I cannot use Z.O. with PHP5.3+, which is why I decided to install WAMP). I downloaded the latest ...
0
votes
1answer
499 views
SMTP implementation on EC2 using Pear Mail package (PHP)
I am working on sending out SMTP relay email's using Gmail as my server using Pear Mail package in PHP. I have installed Pear package using YUM. Also I have located the path for pear_dir and included ...
0
votes
1answer
154 views
php GD2 lib uncommented, but still doesn't work!
i have installed Apache/2.2.17 (Win64) PHP/5.2.8-x64 . i need GD2 lib... so i went to php.ini, uncomment php_gd2.dll and restarded server. nothing! gd lib doesn't work! help!
0
votes
1answer
331 views
Install APC on Solaris
I Apache and PHP 5.3 installed from Blastware. I run
pecl install apc
and everything went ok. apc.so is in the extension library. I declared the extension in php.ini and enabled it with ...
0
votes
1answer
112 views
Need ability to set configuration options using single method which will work across multiple server configurations
I'm trying to set post_max_size and upload_max_filesize in a specific directory for a web application I'm building. I've tried the following in a .htaccess file in the script directory. (upload.php is ...
1
vote
0answers
133 views
Can't load my php.ini on localhost
I have a server and a local version of it on my hard drive.
I am trying to access the local version through localhost.
Entering localhost works, I enter the base html file and all that.
The problem ...
1
vote
0answers
296 views
PHP.ini custom settings through htaccess
I'm confused by this ini list in the PHP Manual: http://www.php.net/manual/en/ini.list.php
I want to set some custom php.ini values through htaccess, but which one of these commands is not going to ...
1
vote
0answers
100 views
Error after installing mysqlnd_ms
I am working on Amazon EC2 using the Amazon Linux AMI which is based on CentOS.
I have installed php54 and php54-mysqlnd.
I then do a "sudo pecl install myslqnd_ms"
This installs fine.
I add the ...
1
vote
0answers
191 views
Custom php.ini with FastCGI seems to disable APC
I'm testing FastCGI and APC on cPanel server (CentOS 5.8, PHP 5.3.18, Apache 2.2.23). I want to allow users to have a custom php.ini by doing the following:
Copying server's php.ini to user's ...
1
vote
0answers
65 views
mod_vhost_alias + wildcard + custom php.ini
Here's my httpd.conf thats using mod_vhost_alias. The docroot is always in /home/username/domains/domainname/public_html.
<VirtualHost *:80>
ServerName *.abc.com
ServerAlias ...
1
vote
0answers
241 views
WAMP slow when connected to internet
I'm using WAMP on Windows 7. When I'm not connected to the internet, my localhost loads quickly. When I am connected, the delay can be over 30s long often resulting in timeouts.
Things I've tried:
...
1
vote
0answers
143 views
Zend autoloader not working from PHP config
Is the PHP config file (php.ini) supposed to have something in it that will enable Zend Autoloader support? Cause I am using it in my application and on one server and it's not working (it says it ...
1
vote
0answers
560 views
Expert opinions on optimal Wordpress PHP settings
I recently decided to include a great system stats plugins with every wordpress install. LINK: http://wordpress.org/extend/plugins/tpc-memory-usage/screenshots/
One of the features of this plugin ...
0
votes
0answers
13 views
Limit the access rights of PHP scripts with IIS6
I have searched through the questions, and I didn't see an answer that solved my specific question.
I'm running IIS6.
my folder structure is essentially:
/webserver/website.com/www
...
0
votes
0answers
45 views
How to define the upload_tmp_dir for all the accounts?
I'm not really a sysadmin, so bear that in mind.
We recently set our server and we have multiple cliente accounts.
The problem is the upload_tmp_dir configuration is empty.
In an upload script that ...
0
votes
0answers
31 views
PHP page not displaying formatting on external slow connection, but does on internal fast connection
Hopefully this is simple.
If I access a webpage served using apache2 and php5 via a mobile device with a slower connection like an android phone, the display and formatting of the php page does not ...
0
votes
0answers
58 views
Why is PHP still logging notices and warnings after I change the error_reporting in php.ini
I have changed the error_reporting variable in php5/cli/php.ini and php5/apache2/php.ini. I used several options including:
"E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR"
"E_ERROR & ...
0
votes
0answers
34 views
wamp php scan additional php.ini file
In addition to the main php.ini file. I would like to scan a php.ini file located in the root directory of a website on localhost. Is this possible?
I have just done a lot of reading about this, but ...
0
votes
0answers
65 views
Use different PHP settings for different vhosts with Apache mod-fcgid
I have Apache with mod_fcgid running with several vhost for serving different sites for different domains.
I want to change some php.ini settings, but only for specific vhosts.
With mod_php5 I could ...
0
votes
0answers
279 views
CentOS 6 - eaccelerator & pecl apc
I'm having a few issues enabling both of these at the same time due to extension paths.
While APC is installed in:
/usr/lib/php/extensions/no-debug-non-zts-200XXXXX
eaccelerator is installed in:
...
0
votes
0answers
359 views
Allowed memory size of 262144 bytes exhausted
Fatal error: Allowed memory size of 262144 bytes exhausted (tried to allocate 4864 bytes)
I Increased my memory limit to 300mb, and it's still showing this error.
I've restarted Apache too. Still ...
0
votes
0answers
208 views
PDO - WHat is it? How do I enable it on shared hosting
I have a shared hosting account and PHP5 is installed and running. When I view phpinfo, I can see that mysql pdo is running. I think I need to "link" to it from the php.ini file. But I dont know for ...
0
votes
0answers
450 views
WAMP: failed to open stream: No such file or directory
I'm trying to upload a file using PHP. My HTML page with the form is stored at C:\wamp\www\myproject\upload.html, the PHP page is C:\wamp\www\myproject\upload.php, and the file I'm trying to upload is ...