Plogger Support Forum - Warning: ini_set() Fri, 29 Mar 2024 13:51:35 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Warning: ini_set() http://www.plogger.org/forum/comments.php?DiscussionID=2211&Focus=8856#Comment_8856 http://www.plogger.org/forum/comments.php?DiscussionID=2211&Focus=8856#Comment_8856 Thu, 25 Sep 2008 17:13:34 +0000 karbo13 version Beta 3, when I go to my gallery index page I see
Warning: ini_set() has been disabled for security reasons in /home/my_site/public_html/gal1/plog-globals.php on line 2

Then I go to admin and I see:
Warning: ini_set() has been disabled for security reasons in /home/my_site/public_html/gal1/plog-globals.php on line 2

Warning: Cannot modify header information - headers already sent by (output started at /home/my_site/public_html/gal1/plog-globals.php:2) in /home/my_site/public_html/gal1/admin/plog-admin.php on line 4

Warning: Cannot modify header information - headers already sent by (output started at /home/my_site/public_html/gal1/plog-globals.php:2) in /home/my_site/public_html/gal1/admin/plog-admin.php on line 19


What happen?, what is bad?

I can't get my Admin Page.]]>
Warning: ini_set() http://www.plogger.org/forum/comments.php?DiscussionID=2211&Focus=8861#Comment_8861 http://www.plogger.org/forum/comments.php?DiscussionID=2211&Focus=8861#Comment_8861 Thu, 25 Sep 2008 20:04:39 +0000 kimparsell
Your webhost has disabled ini_set() on your server.

Try opening plog-globals.php and find line 2:
ini_set('include_path', ini_get('include_path'));
Change it to this:
@ini_set('include_path', ini_get('include_path'));
Save the file and upload it to your server in the gal1 directory, making sure to overwrite the existing copy.

Check your public gallery and your admin section and see if you can now access them without error.]]>