Tagged Questions
The ini-set tag has no wiki summary.
3
votes
3answers
424 views
Strange problem while uploading large files
I am having a strange problem while uploading large files in PHP.
In php.ini, max_execution_time is set to 30, post_max_size is set to 32M, upload_max_filesize is set to 32M. When I tried to upload a ...
3
votes
5answers
1k views
Reasons why PHP would echo errors, even with error_reporting(0)?
What are some reasons why php would force errors to show, no matter what you tell it to disable?
I have tried error_reporting(0) and ini_set('display_errors',0) with no luck.
2
votes
3answers
843 views
Php CLI script ignoring memory_limit, crashing at much lower number than limit
for some reason, my one of my php scripts are ignoring the php.ini memory limit or ini_set.
When i do a print_r(ini_get_all) it shows the global memory limit set to 100M (and local for that matter), ...
1
vote
1answer
137 views
using ini_set in php to enable zip decompression
Can't find anything on this one. I have a zip file on my server that doesn't openly support the zip_*() functions. DreamHost's support staff has said that I can modify the php.ini file to allow these… ...
1
vote
1answer
72 views
Uploading two files on one form?
Ok so i have the form setup perfect but only the first upload is coming through. When i debug the PHP $_FILES i get this
Array (
[download] => Array (
[name] => Array ( [0] ...
1
vote
2answers
86 views
How to set up a secure PHP environment on a wide base of PHP configurations
I'm just finishing a CMS that I want to release as open source. The program has some ini_set() directives to set a secure environment, like session.use_only_cookies, etc. The problem is that some ...
1
vote
3answers
211 views
I can't specify a custom error log in PHP
ini_set('error_log', $custom_error_log_location);
print ini_get('error_log');
The result of the above code? Nothing! It literally prints nothing as the value of ini_get('error_log'). I'm running ...
1
vote
3answers
2k views
How do I check if ini_set() is enabled either in the global PHP.INI or in my PHP script?
I have an app that is failing on the install. The vendor says I probably have ini_set() disabled. How can I check this?
0
votes
0answers
52 views
UTF-8 not used properly despite multiple correct declarations
The odd characters on my website (ë, é, etc) aren't displaying properly.
All the tables and columns in the mysql database have been set to utf8_general_ci.
I always declare utf-8 as character set in ...
0
votes
1answer
26 views
Hoster blocking php config changes?
my client gave me access to the shared hosting (that he chose and paid) for a website I'm doing. PHP is running as CGI. I can't change PHP settings through ini_set at all! Is this possible? Is this a ...
0
votes
2answers
904 views
PHP Multi-Domain Sessions; ini_set Not Working?
I'm trying to set it up so if you log in to my website the session carries over to all sub-domains of my website. For example, if you go to domain.com and log in, then go to sub.domain.com, you'll ...
0
votes
2answers
71 views
Is it possible to set a location of a library extension within a Php file
I want to load an extension within a Php file as I don't have access to the php.ini file.
I tried:
ini_set('extension','php_gd2.dll');
With the file in the same directory as the Php page but it ...
0
votes
5answers
178 views
PHP does not return errors at all
I am running PHP and nginx and I use a production version of php.ini. So the variable display_error is set to Off and there is a good reason I want it this way. But for certain files I need to enable ...
0
votes
2answers
396 views
Changing upload_max_filesize on a shared webhost? (Apache, PHP)
I want to change upload_max_filesize on my shared webhosting account to something greater than 2M.
Since I don't have access to php.ini, and apparently you can't use ini_set to change ...
0
votes
2answers
350 views
php session and path setting
I would like to separate my source folders into two: The folders that contain the code that you type into the address bar and those that make up parts of the page (tiles) and other code (classes, ...
0
votes
4answers
7k views
passing session id via url
I'm trying to get my script to use url session id instead of cookies.
The following page is not picking up the variable in the url as the session id.
I must be missing something.
First page ...
0
votes
1answer
228 views
PHP script will not end when completed
I am working on an image upload script and ran into this problem. Using ImageMagick I would run out of time resizing and uploading images so I inserted these two lines:
set_time_limit(120);
...
-1
votes
2answers
90 views
sending email in php
When I tried to send email in php with code:
<?php
ini_set("SMTP","netvigator.com");
ini_set("SMTP_PORT", 25);
ini_set("sendmail_from","honmen@netvigator.com");
$to = ...