this i guess is b'cos punbb change password salt every time when someone log in. Thats why passwords are changing, bcoz of the salt.
2 2012-03-08 18:25
Topic: md5 hashing for punbb (0 replies, posted in PunBB 1.4 troubleshooting)
Hello all,
i've migrating from another board which using md5($pass.$salt) hashing for users passwords. Thats i've trying is to change the punbb code to use this hashing method, instead of sha1($salt.sha1($pass)) but no results at all. Is there some solution for this problem?
greetingz, Stoyan
3 2011-05-06 11:20
Re: cannot modify header information -headers already sent (3 replies, posted in PunBB 1.3 troubleshooting)
oh i see now.. i need to put common.php at the very top of my page.
problem SOLVED..
please someone lock this topic
4 2011-05-06 11:02
Re: cannot modify header information -headers already sent (3 replies, posted in PunBB 1.3 troubleshooting)
this is my code
....
</head>
<body style="background-color:white;">
<?php
define('FORUM_ROOT', './punbb/');
require FORUM_ROOT.'include/common.php';
...
i dont have anything before head tag except regular this (doctype html tag)
5 2011-05-05 20:02
Topic: cannot modify header information -headers already sent (3 replies, posted in PunBB 1.3 troubleshooting)
Hey all,
I've trying to integrate punbb forums (which i found are the best by the way) into my own web site who has nothing to deal with any CMS.
I have that error:
warning: Cannot modify header information - headers already sent by (output started at MYWEB/index.php:7) in MYWEB/punbb/include/functions.php on line 152 --- AND THE SAME ERROR ON LINE 155
that lines are: function forum_setcookie
line 152: header('P3P: CP="CUR ADM"');
line 155: setcookie($name, $value, $expire, $cookie_path, $cookie_domain, $cookie_secure, true);
well i dont know where the error is.. i know headers can be send once and i can avoid that problem with headers_sent() function but is that ok? that was for line 152
well truly i dunno why setcookie give me header error.. (line 155)
this is happening only with logged users..
if someone can help me i will appreciate it!
Greetings!