Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

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

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

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
Old
  (#2 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
04-04-2003, 12:47 PM

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
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 56
Join Date: Feb 2003
Location: The Netherlands
04-04-2003, 12:56 PM

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
Old
  (#4 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
04-04-2003, 01:04 PM

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
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 56
Join Date: Feb 2003
Location: The Netherlands
04-04-2003, 01:13 PM

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
Old
  (#6 (permalink))
Moderator
 
Status: Offline
Posts: 338
Join Date: Jan 2003
04-04-2003, 01:28 PM

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
Old
  (#7 (permalink))
Junior Member
 
Status: Offline
Posts: 56
Join Date: Feb 2003
Location: The Netherlands
04-04-2003, 01:49 PM

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




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.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