I have reinstalled 1.9.4.1 because of a lot of (unsolved) problems with headers could not be sent etc.
Now the frontend (website) seems te work well.
When I try to login in de CMSMS I get the following:
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/admin/login.php on line 287
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/admin/login.php on line 288
Underneath I can login with username and password.
After loggin in I get the following:
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/page.functions.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/page.functions.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 191
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 194
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 195
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 198
Warning: Cannot modify header information - headers already sent by (output started at /home/users/r/e/redeag/www/config.php:1) in /home/users/r/e/redeag/www/lib/classes/class.admintheme.inc.php on line 203
When I try to open f.i. the content tab/pages I get the following with a fully white page (ergo not workable):
Output has already been sent to the browser at /home/users/r/e/redeag/www/config.php:1. Please make sure the command $xajax->processRequest() is placed before this.
In php.ini I have set Outputbuffering = On (that's why the frontend (webpage) seems to work well).
Could someone please help me out??
[ENDED] Login problems after reinstalling 1.9.4.1
[ENDED] Login problems after reinstalling 1.9.4.1
Last edited by chrisbar on Sat May 07, 2011 11:23 am, edited 1 time in total.
Re: Login problems after reinstalling 1.9.4.1
Look close to what your errors tell you!
"Output has already been sent to the browser at /home/users/r/e/redeag/www/config.php:1."
Open your
/config.php
Since the error report
/config.php:1.
its error on line 1 in that file.
The files always starting with
<?php
and no white space or line breaks before this!
"Output has already been sent to the browser at /home/users/r/e/redeag/www/config.php:1."
Open your
/config.php
Since the error report
/config.php:1.
its error on line 1 in that file.
The files always starting with
<?php
and no white space or line breaks before this!
ReneH 
A search will save you hours waiting for an answer!

A search will save you hours waiting for an answer!

Re: Login problems after reinstalling 1.9.4.1
Hello Rene,
Underneath the start of my config.php. No white space before the <?php
Underneath the start of my config.php. No white space before the <?php
Code: Select all
<?php
ini_set("memory_limit", "100M");
ini_set('max_execution_time', 60);
ini_set('output_buffering', true);
#CMS Made Simple Configuration File
#Please clear the cache (Site Admin->Global Settings in the admin panel)
#after making any changes to path or url related options
#-----------------
#Behaviour Settings
#-----------------
etc.etc.