PHP.ini is very useful and it is a configuration file that is used to customize behavior of PHP at runtime - http://php.net/configuration.file.
1
vote
1answer
11 views
What does zend.multibyte directive exactly affect?
I am using UTF8 encoding without BOM for all my php scripts for years, and they work fine.
Today i discovered that thereis core directive named zend.multibyte, and it is zero (disabled) by default.
...
1
vote
1answer
33 views
Why pear and phpunit is not installed in xampp on ubuntu? [closed]
I have installed xampp 1.8 on my ubuntu 12.04. In /opt/lampp/lib/php/PEAR I can see there are two directory named PEAR and PHPUnit.
But when I run pear -V or phpunit from terminal it gives the below ...
0
votes
1answer
19 views
PyroCMS - Cannot send session cache limiter - headers already sent
Im receiving an error after testing my PyroCMS module on my hosted test server.
I think it has something to do with the php.ini file and sessions (I have included a subset from the phpinfo output).
...
1
vote
1answer
41 views
How To Increase Maximum File Upload Size (PHP)?
I am running a XAMPP server on my computer. The maximum file size I've uploaded is 24.3kb. My server fails to upload a 78kb file. I know because I get an empty $_FILES['file']['tmp_name'] and an error ...
-2
votes
3answers
44 views
Shut off php strict reporting in production
I am getting these errors from php:
Strict Standards: Redefining already defined constructor for class WP_Widget in /home/kyle/WordPressDev/wp-includes/widgets.php on line 93
Strict Standards: ...
-1
votes
0answers
68 views
PHP checkbox array count always equals 1 since moving to new server [closed]
I have a bunch of checkboxes in html with name="id[]" val="someUniqueValue" and when we had it deployed on our dev server (Mac OSX Mountain Lion built in Apache/PHP) and on our old production server ...
1
vote
1answer
27 views
Server cuts array post data
I have a form with values like bars[4]. So I have about 1480 items. When I press submit and check post data the array contains exactly 1000 items. What the settings do that?
-1
votes
1answer
336 views
i can't send emails from localhost xampp [closed]
i need help how do i send emails from localhost xampp using gmail account i have tried it but i can't send email and also there is no error on the localhost testing page ?
1) where i'm doing wrong in ...
0
votes
0answers
46 views
php version issue in auto_prepend_file
I am trying to include a class file using auto_prepend_file feature in php.ini
I added below line in PHP
auto_prepend_file="file.php"
It is working fine from the browser but when i am running from ...
3
votes
1answer
94 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
14 views
If I Specify a Path in include_path in php.ini, do I have to keep all my includes in one directory?
This wouldn't really work for me since I have layers of sub-directories that have their own includes directories.
Is there a way to override it on individual pages? [rather not have to do this]
Is ...
0
votes
1answer
47 views
imageflip() in PHP is undefined
Hi folks, whenever I am trying to use the funtion imageflip(), it shows me the following message
Fatal error: Call to undefined function imageflip() in D:\xampp\htdocs\temp1\image_flip.php on line ...
0
votes
2answers
77 views
Load php.ini to terminal
I'm using Git Bash terminal, php 5.4.10, OpenServer (wamp), windows 7
I am trying to load some library by Composer, but I can not because it says:
Kinda weird because curl is working at php
...
0
votes
1answer
103 views
php.ini file for eclipse php debugging
I have been searching high and low and still cannot get debugging working with 'eclipse for PHP Developers 3.0.2'.
At the moment eclipse is just hanging at 57% with 'Launching: waiting for XDebug ...
1
vote
1answer
63 views
PHP form submit ends after 271 submitted variables
I got a little problem regarding the submit of multiple forms:
I'm trying to submit a bigger number of $_POST-variables, however, my server-side script ends (or just breaks down) after, in total 271 ...