» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 34
1 members and 33 guests
doctornuke
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on Error at memberslist and Private messages within the Nuke 6.5 to 6.9 - Modules forums, part of the PHP-Nuke 6.5 to 6.9 category; I get these errors at memberslist and private messages: Code: Warning: Cannot modify header information - headers already sent by &#...


Go Back   Nukemods Forum » PHP-Nuke 6.5 to 6.9 » Nuke 6.5 to 6.9 - Modules

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-04-2003, 10:12 AM
Junior Member
 
Join Date: Feb 2003
Location: The Netherlands
Posts: 56
Error at memberslist and Private messages
I get these errors at memberslist and private messages:

Code:
Warning: Cannot modify header information - headers already sent by (output started at /domains/dj-loki.com/public_html/www/themes/phpib2/theme.php:69) in /domains/dj-loki.com/public_html/www/includes/sessions.php on line 222
Code:
Warning: Cannot modify header information - headers already sent by (output started at /domains/dj-loki.com/public_html/www/themes/phpib2/theme.php:69) in /domains/dj-loki.com/public_html/www/includes/sessions.php on line 223
What can be wrong. I use 6.5, and i have a new install with a few modules added already.

And now i also have errors at Webmail:

Code:
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fsockopen(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /domains/dj-loki.com/public_html/www/modules/WebMail/pop3.php on line 70

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fsockopen(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /domains/dj-loki.com/public_html/www/modules/WebMail/pop3.php on line 70

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /domains/dj-loki.com/public_html/www/modules/WebMail/pop3.php on line 138

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /domains/dj-loki.com/public_html/www/modules/WebMail/pop3.php on line 140

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /domains/dj-loki.com/public_html/www/modules/WebMail/pop3.php on line 162
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-04-2003, 12:47 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
For the first error:

Near the start of mainfile.php find:

Code:
$phpver = phpversion(); 
if ($phpver >= '4.0.4pl1' && strstr($HTTP_USER_AGENT,'compatible')) { 
    if (extension_loaded('zlib')) { 
        ob_end_clean(); 
        ob_start('ob_gzhandler'); 
    } 
} else if ($phpver > '4.0') {

change to:

Code:
$phpver = phpversion(); 
if ($phpver >= '4.0.4pl1') 
{ 
    ob_start('ob_gzhandler'); 
}else if ($phpver > '4.0') {
------------------------------------------

for the second one:

In your php.ini file find:

allow_call_time_pass_reference

And make sure it looks like this:

allow_call_time_pass_reference = On

Without any semi-colons in front of it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-04-2003, 12:56 PM
Junior Member
 
Join Date: Feb 2003
Location: The Netherlands
Posts: 56
Ok, thanks!! The first one worked! But.... where is the second PHP.ini file?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-04-2003, 01:04 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
If you don't run your own server contact your webhost provider about this second problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-04-2003, 01:13 PM
Junior Member
 
Join Date: Feb 2003
Location: The Netherlands
Posts: 56
Nope, i do not run my own server. What should i tell my host?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-04-2003, 01:28 PM
Moderator
 
Join Date: Jan 2003
Posts: 338
That you need allow_call_time_pass_reference to be turned on i think.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-04-2003, 01:49 PM
Junior Member
 
Join Date: Feb 2003
Location: The Netherlands
Posts: 56
Ok, thanks!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
SkyLineBlue Private messages Mizzat Theme packs 0 08-08-2003 09:58 PM
Error on forums and private messages k9canada Nuke 6.5 to 6.9 - Modules 3 05-04-2003 07:10 AM
Member list & Private Messages nikitas Purged Topics 6 04-02-2003 11:51 AM
Private messages not visible in the inbox?? robomanusa Purged Topics 3 03-11-2003 09:58 PM
Private Messages been read yet? Martin Purged Topics 2 12-17-2002 09:28 PM


All times are GMT -5. The time now is 12:05 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31