php.ini is the configuration file used by the PHP preprocessor to setup the default settings and certain security restrictions.
0
votes
3answers
682 views
How do I get linux server to use local PHP.ini in a shared environment?
I'm on shared server environment (Dreamhost.com uses Linux/Debian).
I followed their instructions here on setting up a local PHP5 instance on my user account so that I could use APC (php5 ...
2
votes
2answers
500 views
How do I get Apache to use a different local PHP.ini for different domains?
is there some sort of .htaccess directive. I dont have access to httpd.conf.
I have php5 in a fastcgi/cgi module.
Multiple domains.
But for some reason all the domains are pointing to the first ...
1
vote
5answers
929 views
User Specific Php.ini When php is ran as a module?
I have a php setting that can only be changed in the ini file. I can't change this setting in the global php.ini due to conflicts, so I'll need to have this user specific. Can this be done if php is ...
0
votes
1answer
115 views
How do you setup your domains to use same php.cgi but different PHP.ini
I thought I had this figured out.
I built a php.cgi, but rather than have a copy of php.cgi in the /cgi-bin/ dir for each domain I have. I create a sym link to a common directory so they could all ...
0
votes
1answer
869 views
How do you configure the mime_content_type() function to work correctly in php5?
I have a ubuntu 9.04 desktop that i'm using for my development machine with apache2 installed.
What are the steps that I need to go through to ensure that the mime types for files are determined ...
0
votes
2answers
2k views
How can I make the Apache/PHP setup on my VPS show PHP errors and warnings?
I've got a VPS using Suse Linux 10.3.
Apache 2 / PHP 5.2.6 was set up automatically.
When I look at this valid PHP file in a browser, it displays correctly:
<?php
echo 'this is test';
?>
...