Many Trouble ...

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
nazar
Posts: 2
Joined: Sun 22. Feb 2004, 07:59

Many Trouble ...

Post by nazar »

Warning: Cannot modify header information - headers already sent by (output started at /home/MYDOMAIN/public_html/phpwcms/include/inc_conf/conf.inc.php:76) in /home/MYDOMAIN/public_html/phpwcms/login.php on line 122


---------------

Warning: main(/home/MYDOMAIN/public_html/include/inc_conf/conf.pagelayout.inc.php): failed to open stream: No such file or directory in /home/MYDOMAIN/public_html/phpwcms/include/inc_front/content.func.inc.php on line 128

Warning: main(): Failed opening '/home/MYDOMAIN/public_html/include/inc_conf/conf.pagelayout.inc.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/MYDOMAIN/public_html/phpwcms/include/inc_front/content.func.inc.php on line 128

:(
How this CMS be compatible and famous like PhpNuke
Pappnase

Post by Pappnase »

hello

did you set all pathes right!?
and did you download the conf.inc.php and replace the existing file in the include/conf/ folder!?

Pappnase
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

Pappnase wrote:hello

did you set all pathes right!?
and did you download the conf.inc.php and replace the existing file in the include/conf/ folder!?

Pappnase
Yes you need to:
1) DIR phpwcms_tmp/thumb_list 777
2) DIR phpwcms_tmp/thumb_preview 777
3) DIR phpwcms_ftp 766
4) DIR phpwcms_filestorage 777
5) DIR content/images 777
6) FILE setup/setup.conf.inc.php 666
7) FILE phpwcms_template/inc_css/frontend.css 666
8) FILE include/inc_conf/conf.pagelayout.inc.php 666


All other files listed above can set to 644, directories to 755. Sometimes it can help to set mode to 766 for the following directories: phpwcms_tmp, phpwcms_template, phpwcms_ftptakeover, inc_css, content. If you have further access problems try to set all files and directories to 777 (not recommend).
And to replace conf.inc.php with the one generated during the install....
http://www.studmed.dk Portal for doctors and medical students in Denmark
nazar
Posts: 2
Joined: Sun 22. Feb 2004, 07:59

Post by nazar »

frold wrote:
Pappnase wrote:hello

did you set all pathes right!?
and did you download the conf.inc.php and replace the existing file in the include/conf/ folder!?

Pappnase
Yes you need to:
1) DIR phpwcms_tmp/thumb_list 777
2) DIR phpwcms_tmp/thumb_preview 777
3) DIR phpwcms_ftp 766
4) DIR phpwcms_filestorage 777
5) DIR content/images 777
6) FILE setup/setup.conf.inc.php 666
7) FILE phpwcms_template/inc_css/frontend.css 666
8) FILE include/inc_conf/conf.pagelayout.inc.php 666


All other files listed above can set to 644, directories to 755. Sometimes it can help to set mode to 766 for the following directories: phpwcms_tmp, phpwcms_template, phpwcms_ftptakeover, inc_css, content. If you have further access problems try to set all files and directories to 777 (not recommend).
And to replace conf.inc.php with the one generated during the install....
I have do all above, but still error. Thanks for your information, but I decided to leave it and try another CMS. Thanks you very much
frold
Posts: 2151
Joined: Tue 25. Nov 2003, 22:42

Post by frold »

nazar wrote:I have do all above, but still error. Thanks for your information, but I decided to leave it and try another CMS. Thanks you very much
But you will not find a better one (only if you need a portal like one) and one there is more userfriendly but it is your choise!!
http://www.studmed.dk Portal for doctors and medical students in Denmark
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

frold wrote:But you will not find a better one (only if you need a portal like one) and one there is more userfriendly but it is your choise!!
He'll be B-A-C-K... once he realizes that his server/PHP/mySQL configuration is not quite right :wink: :lol: :D
User avatar
pSouper
Posts: 1552
Joined: Tue 11. Nov 2003, 15:45
Location: London
Contact:

Post by pSouper »

i posted a workaround for this error a long time ago so all he needed t odo was search.
I thnink the reason for the problem is probably as simple as an accidental space/return while outside the <php> code (a the top of te page or something). Headers can only be used BEFORE any html output and that incluse a spece/return ect.

php.ini has a setting to ignore this error and carry on regardless :)...

Code: Select all

; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a
; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by
; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as
; a value for this directive (e.g., output_buffering=4096).
output_buffering = Off
Post Reply