php - i moved opencart on another domain and error ini_set() is disable -


i moved opencart website on server, receiving following errors.

warning: ini_set() has been disabled security reasons in /home/shoppin6/public_html/system/library/session.php on line 7warning: ini_set() has been disabled security reasons in /home/shoppin6/public_html/system/library/session.php on line 8warning: ini_set() has been disabled security reasons in /home/shoppin6/public_html/system/library/session.php on line 9warning: ini_set() has been disabled security reasons in /home/shoppin6/public_html/system/library/session.php on line 10warning: session_start(): cannot send session cache limiter - headers sent (output started @ /home/shoppin6/public_html/index.php:102) in /home/shoppin6/public_html/system/library/session.php on line 21 

ive edited php.ini file this

disable_functions = allow_url_fopen, escapeshellarg, escapeshellcmd, ini_alter, passthru, parse_ini_file, popen, proc_open, proc_close, proc_terminate, proc_get_status, proc_nice, readfile, show_source, system 

and seted ini_set = on; php.ini file, error same, there no changes in errors, here website link, shoppingdice.com

please give me solution quick please

normally need restart web server service changes in php.ini take effect. may not applicable on shared hosting if don't have control of own web server process. if can restart service (and didn't after changing php.ini) suggest that.

if still having problems might want take @ output of following (you can put page test.php) , recall page in browser:

<?php phpinfo(); 

it should show location of php configuration under "loaded configuration file" , 1 changed. under "core" section should able see value of "disable_functions". if not value set, changes not effective. security reasons delete file test.php once you've finished debugging issue.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -