You could select all of them (except admin) and insert login/email in the wordpress database, but the passwords would have to be regenerated - users would have to use the "forgotten password" stuff
The plugin move wordpress users to punBB, but not the other way.
1 2008-07-24 14:41
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
2 2008-07-24 14:35
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It doesn't use punBB users - only wordpress users will be used.
3 2008-07-24 14:15
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
The latest plugin is designed for Wordpress 2.6.
4 2008-07-24 13:55
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
What Wordpress version are you running?
5 2008-07-22 09:55
Re: punFramework (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
it will be pun/flux compatible This is update so it will work with current 1.3 line (last update 7 months ago when the 1.3 was much different )
6 2008-07-22 09:48
Re: punFramework (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
punFramework have been updated to work with fluxBB Beta 2
7 2008-07-18 19:40
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
very strange
8 2008-07-18 18:48
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
../forum
you can add in footer.php:
print_r(base64_decode($_COOKIE['pun_cookie']));
and compare the cookie when you login in punBB and when you login with wordpress if for the same user cookies will be the same (note: WP and punBB admin must have the same password...)
9 2008-07-18 18:34
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
for localhost it works without modification ($cookie_domain = 'localhost'; $cookie_path = 'localhost/'; )
10 2008-07-18 09:03
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
11 2008-07-17 06:33
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
plugin for 1.3 punbb/fluxbb will be released soon
12 2008-07-17 00:08
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Wordpress 2.6 and punBB 1.2.19 working plugin is on my localhost. I'll release it probably tommorow
13 2008-07-08 19:30
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'm preparing (~1 week) an updated version of the plugin for latest punBB 1.2 and latest WP. (and commint soon for 1.3 punBB) and I'll try to add more flexibility to the cookie creation.
14 2008-05-29 22:44
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
it depends on PHP version (probably using PHP5 setcookie function params).
15 2008-04-29 19:23
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Warning: include(../forum/config.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\wp\wp-content\plugins\jl-punbb.php on line 62
there is no ../forum/config.php so check all your paths from WP folder to punBB folder
16 2008-04-29 19:08
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
There is no valid language pack '' installed. Please reinstall a language of that name.
the globals disaster is here. Add: $pun_config, $pun_user, $lang_common to global variables
After that my plan was to change line 71:
setcookie($cookie_name, serialize(array($user->id, md5($cookie_seed.sha1($user_pass)))), time() + 31536000, $cookie_path.'; HttpOnly', $cookie_domain, $cookie_secure);
to:
$user_id = $user->id; $form_password_hash = pun_hash($form_password); // This could result in either an SHA-1 or an MD5 hash (depends on $sha1_available) $expire = ($save_pass == '1') ? time() + 31536000 : 0; pun_setcookie($user_id, $form_password_hash, $expire);
My setcookie is taken form pun_setcookie function to avoid including punBB and playing with $variables globalisation
17 2008-04-29 18:54
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
In the integration function that uses something from punBB code.
function foo()
{
global $db;
// the code
}
18 2008-04-29 18:39
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
punBB integrating has one shit-point - it variables like $db has to be global in classes and functions you want to use - try globaling $db and other variables if it wants to - and that's the reason the jl-punbb is no-punbb-include
19 2008-04-29 06:01
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'll look at this
20 2008-04-25 10:44
Re: Queries of all the type of forum softwares (9 replies, posted in PunBB 1.2 discussion)
you can measure script speed using Linux/BSD box and HTTPERF or Siege tools to launch an army of HTTP requests to tested script and compare times needed to handle all requests. In my old tests with httperf (20 connections with 5 requests per connection) punBB 1.2.14 used 2,93s, txtBB 1.3.rc3 - 3,4s, phpBB 2.0.22 - 3,97s, SMF 1.1.1 - 4,93s, phpBB by Przemo 1.12.5 - 4,93s.
21 2007-12-10 16:33
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I can't change anything in my Punbb profil (avatar, location and so on), because i'm redirect to Worpress user panel.
Did you put the redirect in the right place (for passwor changes) and are you logged in into punBB ?
22 2007-12-04 21:24
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
yes, only then
23 2007-12-04 11:59
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
User can change punBB profile settings but not login/logout/register or change password
24 2007-12-02 22:22
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It works on 2.3.1 on my localhost without any changes.
25 2007-11-07 22:18
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
$cookie_domain = '';
and you don't put www. in domain names