I am trying to set php.ini from php file, I am trying to run the following code Without success :
<?php
ini_set('session.upload_progress.prefix', 'my_progress_id_');
echo ini_get('session.upload_progress.prefix');
?>
The code I get is remaining : upload_progress_
what could be the problem