I'm getting this error

Status
Not open for further replies.

zikazooz68

New Member
Messages
2
Reaction score
0
Points
0
I get that error on the head of all of my pages:
Warning: shell_exec() has been disabled for security reasons in /home/zikazooz/public_html/lib/lib_functions.php

In some pages I get an extra line:
Warning: Cannot modify header information - headers already sent by (output started at /home/zikazooz/public_html/lib/lib_functions.php:12) in /home/zikazooz/public_html/themes/GeN3/register.php

What is the problem with that??

Sorry for my bad English language (^_^)
 

descalzo

Grim Squeaker
Community Support
Messages
9,372
Reaction score
326
Points
83
1. As it said, shell_exec() has been disabled. It will not be enabled, period.

2. If you are saying you get both messages, what is happening is the script register.php is trying to adjust the headers (cookies, redirect, content-type, etc) but since the first message has already been sent to the user (which outputs the headers) you get an error because you can only send the headers once.
 
Status
Not open for further replies.
Top