Tagged Questions

A configuration file including directives you can set to configure your PHP setup.

learn more… | top users | synonyms

12
votes
5answers
11k views

How to enable PHP short tags?

I have a web application on a Linux server which starts with <? I needed to copy this application to a windows environment and everything is working fine except that an SQL statement is being ...
6
votes
9answers
4k views

How to find the php.ini file used by the command line?

I need to enable pdo_mysql in my EasyPhp environment, so I went to php.ini file and uncommented the following line: extension=php_pdo_mysql.dll Unfortunately I still have the same problem. I'm ...
6
votes
1answer
2k views

How can I make PHP display the error instead of giving me 500 Internal Server Error

This has never happened before. Usually it displays the error, but now it just gives me a 500 internal server error. Of course before, when it displayed the error, it was different servers. Now I'm on ...
5
votes
6answers
105 views

Is saving MySQL username/password in the php.ini file secure?

I would like to know if it secure to save the username, password, server etc... in the php.ini file so when I connect to the mysql server I don't have to always put the parameters? Also, can this ...
5
votes
6answers
2k views

PHP script stops running arbitrarily with no errors

I was working on a fairly long script that seemed to stop running after about 20 minutes. After days of trying to figure out why, I decided to make a very simple script to see how long it would run ...
4
votes
4answers
359 views

Fatal error: Allowed memory size of 67108864 bytes exhausted

I've got a script that's giving me headaches on a particular server. I keep getting this error: Fatal error: Allowed memory size of 67108864 bytes exhausted Even though I've edited php.ini to ...
4
votes
2answers
71 views

Do these configuration changes suit my needs?

I want to get a reasonably large file (around 45-50M) from user of my application, and then move that file to some other server. I have done following changes to configuration files, can someone ...
4
votes
2answers
391 views

php Contact Form on website and reply-to email

I have a PHP Contact form on a site I am hosing on our mediatemple grid server that was made with Rapidweaver. It works well except that the email it generates to our info@ourdomain.com is sent as ...
4
votes
1answer
1k views

php.ini not being read with windows 7 installation

I have installed php successfully on a Windows 7 machine but I can not for the life of me get it to read the php.ini file. I have uncommented out the line for php to use mysql and when I run ...
4
votes
6answers
2k views

Can't save php.ini

I have PHP for FastCGI installed on Windows 7 through the Web Platform Installer. I need to edit php.ini to enable logging, but I'm not able to overwrite the existing file, apparently because ...
4
votes
1answer
1k views

PHP Warning: Module 'ldap' & 'mysql' already loaded when running PHP at command line

I am getting the following errors: PHP Warning: Module 'ldap' already loaded in Unknown on line 0 PHP Warning: Module 'mysql' already loaded in Unknown on line 0 when running the following ...
3
votes
4answers
149 views

How secure is storing DB variables with SetEnv or in php.ini?

I don't like storing sitewide crypto keys and DB access information under document_root, so I was using Apache's SetEnv and php.ini files under conf.d to separate these from the codebase. The big ...
3
votes
2answers
72 views

create arbitrary values in php.ini

I would like to put some of my app config data in php.ini I tried just to add new values there and then get them with ini_get I get nothing displayed. Do I need to define new entries in an extension? ...
3
votes
1answer
116 views

setting error_reporting in php.ini

for my local machine i'm using the following setting in my php.ini error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED it allows omitting single quotes for fetching data from a recordset ...
3
votes
3answers
325 views

Cannot get php display_errors enabled

Hey i know there are a few posts regarding this topic and i have scoured them all! I cannot not enable the display_errors setting in php no matter what i do!!! Im using virtual box with php 5.3 ...
3
votes
1answer
403 views

PHP Command Line php.ini path error

I am trying to run some PHP pages on the command line but am running into a few problems with mysql and other PHP extensions. Running php --ini produces the following output: Configuration File ...
3
votes
5answers
231 views

multi php.ini files in my system

I have linux ubuntu 10.10 and when i run the below in a terminal php -i |grep php.ini i got Loaded Configuration File => /etc/php5/cli/php.ini while if i use phpinfo() in the browser it will be: ...
3
votes
3answers
391 views

Stuck PHP date() shows same day/time

I'm currently having the strangest issue. I have the following php code which should render the current day and date but it's giving me "Mon, Dec 12, 2010" no matter what day it is. <?php echo ...
3
votes
10answers
316 views

PHP closes connection after 10sec without data beeing echoed

I have a PHP webpage, that generates statistics and takes about 15sec to generate them, before sending them to the Browser. The issue I have is that the browser ends up loading with a blank page. ...
3
votes
2answers
4k views

Enabling mod_rewrite on php.ini

If I understand correctly, I need to put something in php.ini to enable mod_rewrite. If this is true, what do I need to put in php.ini? Thanks in advance, John
3
votes
2answers
4k views

PHP - a different open_basedir per each virtual host

Hi I've came across on this problem, I have a sever running apache and php. We have many virtual hosts but we've noticed that a potentially malicious user could use his web space to browse other ...
3
votes
1answer
806 views

How to serve gziped an otf font using htaccess+php.ini? (no mod gzip or deflate)

Im asking this here cause if i try more i think im going to lose my mind for sure it seems i can't use php_value or php_flag but linking a php.ini using suPHP_ConfigPath works (for php files) here's a ...
3
votes
3answers
553 views

Reading php.ini using zend for PHP extension (not PHP language)

I am trying to read some settings from php.ini using zend. The API that I am using is long zend_ini_long(char *name, uint name_length, int orig) But it always returns 0. I have double checked the ...
3
votes
3answers
2k views

PHP / Apache how to set session.cookie_domain from outside php.ini

I need to restrict cookies to my www subdomain, this works by me adding the line session.cookie_domain = www.example.com in the php.ini file. However I have a number of virtual hosts on my server so I ...
2
votes
3answers
29 views

undefined index : Name in ~\order.php on line 12

i create project for customer. when i run the project in wamp server i can view project correctly , but when costumer running project in our wamp server face this error , undefined index : Name in ...
2
votes
0answers
82 views

PDO_OCI: could not find driver

Today my problem is connected with PDO, OCI8 and PDO_OCI. But from the beginning. I'm using Ubuntu 11.10 and PHP version: 5.3.8-1ubuntu3. I have installed Oracle 10g Express, configured it and it ...
2
votes
2answers
68 views

FLOW3 requires the PHP setting “magic_quotes_gpc” set to Off. (Error #1224003190)

While configuring FLOW3 on mac, I modified the php.ini in terms of setting magic_quotes_gpc = off and on restarting server I get the magic_quotes_gpc = off by browsing ...
2
votes
4answers
223 views

Solution for “Fatal error: Maximum function nesting level of '100' reached, aborting!” in PHP

I have made a function that finds all the URLs within an html file and repeats the same process for each html content linked to the discovered URLs. The function is recursive and can go on endlessly. ...
2
votes
2answers
177 views

How to install oAuth if I cannot access the server?

I'm trying to create a Webapp which can read the user's Dropbox files. If it helps to answer the question, I request the username and password. I've been searching and I found in Google Code a library ...
2
votes
1answer
66 views

php mail() won't send attachment over 10MB

I have set these variables in php.ini but mail will not send an attachment over 10MB: max_execution_time = 8000 ; Maximum execution time of each script, in seconds max_input_time = 8000 ; Maximum ...
2
votes
2answers
209 views

PHP Date() error after upgrading to 5.3.8

I'm getting the following error all over my websites after upgrading to PHP 5.3.8: Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are ...
2
votes
1answer
134 views

Disable ETags in php?

Our webhoster moved the site to a newer server and now i have the problem that i have ETags everywhere. I tried FileETag None in the htaccess but that does not work. They told me on the phone that ...
2
votes
2answers
402 views

php5.3.3 date.timezone again php.ini directive not taken into account

System: Debian Lenny/Apache 2.2/php5.3.3 compiled from sources I'm strugglying with the date.timezone within php.ini. I can define the TZ using in the php source code but I'd like to fix that at ...
2
votes
4answers
133 views

php.ini wont work outside public_html directory

Just very quick question about php.ini file. I created my own on my php.ini file and it works fine if I put it inside my 'public_html' directory. However the problem is it can obviously be viewed in ...
2
votes
2answers
137 views

PHP timezone not set

First of all, i don't have access to the php.ini in the webserver. In my local server I put date.timezone = "Europe/Lisbon" in my php.ini. Is it possible to change this in .htaccess? or, what is the ...
2
votes
2answers
217 views

Do I need the Suhosin security patch on a VPS?

I have a VPS with Linode and the out-of-the-box Ubuntu server setup comes with the Suhosin PHP security patch. The annoying problem is that it's effecting a few things, namely CakePHP session/cookies ...
2
votes
1answer
147 views

PHP ENV_ variables: UTF-8 encoding of £ (Pound)

I'm having issues with the encoding of the the '£' character. (Issue: When POSTing '£' from a form field and doing an insert, nothing is inserted in the MySQL table). I've checked everything wrt to ...
2
votes
6answers
667 views

Cannot turn off short_open_tag with ini_set

I'm embedding a javascript syntax highlighter to a PHP script that reads source file and echos it back. The js highlighter has this string on one line: ... [z,/^[^<?]+/], ... The short_open_tag ...
2
votes
3answers
148 views

php.ini path inside code

To get php.ini path i simply run <?php phpinfo(); ?> what is the way to get the php.ini path to show to the user. without showing the whole phpinfo file.
2
votes
4answers
977 views

CakePHP cake bake giving error after selecting default

I just created a new project with CakePHP according to the main page you get after configuring everything i'm all in the green even database connection. i run this command: ...
2
votes
3answers
779 views

Where does PHP store the error log?

I am on shared hosting and have Cpanel, Apache, PHP is run by fastcgi i think. I tend to notice that php error logs are created in the directory the error happened which i find somewhat silly which ...
2
votes
4answers
286 views

Why php mail() require mail program like sendmail/postfix/etc.. for sending emails?

Why php mail() require mail program like sendmail/postfix/etc.. for sending emails? I asking because sending email is client action and not something that need to run server. Edit: why is soo ...
2
votes
2answers
253 views

Why do my php error_log() statements get sent to the apache error.log?

What I've tried: php.ini log_errors = On error_log = /etc/httpd/logs/php_error.log httpd.conf php_value error_log /etc/httpd/logs/php_error.log I've tried these in different combinations, ...
2
votes
1answer
341 views

Problem with magic_quotes_gpc in PHP symfony

I am using Symfony 1.4 and ORM as Propel, to create my project. Last time i have upgraded my server's PHP version from 5.2 to 5.3, from that time i am getting the error as PHP Deprecated: ...
2
votes
2answers
39 views

Are duplicate directives in php.ini going to cause an issue?

I sent a request to ops today to update some php.ini directives, and found out that he merely appended them to the end of the file. My google search didn't really come up with any info on whether ...
2
votes
2answers
552 views

php.ini configuration changes in shared hosting account

Am trying to override the default php.ini configuration using .htaccess / ini_set, but the configurations are not getting reflected while executing the script. Here the PHP is installed as fastcgi and ...
2
votes
1answer
726 views

What is PHP track_errors?

I was just glancing through my Cpanel's php.ini EZConfig (basically php.ini; it just allows me to change some settings in php.ini through Cpanel) and noticed track_errors , Can someone tell me what ...
2
votes
5answers
269 views

Keep Accounts Logged In

We have an internal control panel that all employees in the office are logged into all day, including customer service. I'd like for it to be setup so that it keeps you logged in for 1 hour before ...
2
votes
3answers
1k views

php -i | find “extension_dir” don't take effect after modified its value

i wanna using curl in php script and run it in command line mode. here is the script <?php //enable_dl("php_curl.dll"); $ch = curl_init(); $options=array( ...
2
votes
3answers
777 views

Include path of php.ini ignored by Eclipse

I have a PHP script to run. If I run it from the command line, it works fine (include path is set correctly). If I want to run it inside Eclipse (Run as script), then the PHP include path of my ...

1 2 3 4 5 7