try with Re: $cookie_path set to domain.com
26 2007-11-07 22:06
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
27 2007-11-07 21:59
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
$cookie_path should be domain.com and it should work then.
28 2007-11-07 21:55
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
punBB should redirect as you can't use punBB login system. You must login in WP.
29 2007-11-07 21:49
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
well it should loggin you to punBB also. Are you using WP 2.3? The plugin works with 2.2 but there are some problems with WP 2.3.
Other problem may be with cookie handling...
30 2007-11-06 22:06
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
domain.com
31 2007-11-06 21:30
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It should work like that + log in user in punBB. If you use different subdomains for forum and wordpress then in punBB config.php you have to set cookie domain to your domain.
32 2007-11-06 14:32
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
"BRAK" is a "blank" password for punBB part of the plugin. It will be updated as soon as user loggin to WP.
33 2007-10-07 16:38
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
1. I don't know
2. in the plugin file find:
$wpdb->query("UPDATE ".PUNPREFIX."users SET email='".$wpuser->user_email."' WHERE username = ".$wpuser->user_login."");
change to:
$wpdb->query("UPDATE ".PUNPREFIX."users SET email='".$wpuser->user_email."' WHERE username = '".$wpuser->user_login."'");
should help
34 2007-09-03 13:01
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
path to punBB folder
35 2007-08-20 20:21
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
- for the language yes, change it to "English"
- both scripts have to use the same database to work nicely.
36 2007-08-19 11:29
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
WP version isn't a problem until the plugin works
37 2007-08-18 22:57
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
hard to guess the problem.
1. delete in your browser all cookies for your site and try to login
2. in punBB config.php set $cookie_domain = ''; to $cookie_domain = 'yourdomain.com';
and check (try also with deleted cookies)
3. if it still doesn't work then it must have problem with this (jl-punbb.php plugin):
setcookie($cookie_name, serialize(array($user->id, md5($cookie_seed.sha1($user_pass)))), time() + 31536000, $cookie_path.'; HttpOnly', $cookie_domain, $cookie_secure);
it may need some hacking then like: $cookie_path.'; HttpOnly' to $cookie_path
38 2007-08-11 10:10
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Hi,
I've been looking for a user integration like this for Wordpress and punBB.
I tried to do this but I can't seem to get it to work.
I have installed punBB on http://www.mmo-gamer.com/community/ and WP is installed in the root: http://www.mmo-gamer.com/
In punBB config.php you may try to set the punBB cookie domain to "mmo-gamer.com" and try then.
Now i do have some questions about this plugin tho. Is there a way to make the password's the same or are they the same with this plugin? Because i know when you first register on punbb that it randomly generates a password for you. So i was just wondering if it uses the same password from the WordPress or if it registers you in Punbb with a random one?? Anyone know?
I uses wordpress users and passwords. It does not import users from punBB that aren't in WP Users that exist at both script will have to use WP password in punBB.
39 2007-06-30 23:53
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
path, not an URL. If you have
/forum
/southern
then use ../forum
40 2007-06-30 21:13
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
jl-punbb is a Wordpress plugin and you use it as any other plugin. Put it in /wp-content/plugins/ of your wordpress install, edit the jl-punbb file and add path to punBB folder and it's table prefix. Then install/activate this plugin in Wordpress Admin Panel. The integration is done, but you have to also redirect users from punBB login/register to Wordpress to maintain synchronisation of the tables - you edit in punBB - login.php, register.php and profile.php as described above.
41 2007-06-30 14:59
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
check this: http://www.liewcf.com/blog/archives/200 … wordpress/
and maybe this: http://www.almosteffortless.com/2005/09 … and-punbb/
42 2007-06-28 16:07
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
login.php and register.php - at the start - line 1 (after <?php)
43 2007-06-28 09:11
Re: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
the readme is in Polish, and my first post is the English version of it.
44 2007-06-28 00:30
Topic: Wordpress integration plugin :) (119 replies, posted in PunBB 1.2 modifications, plugins and integrations)
download: link
I used: WP: 2.2.1 | punBB: 1.2.15 - to integrate Wordpress user system with punBB (http://jakilinux.org/ with http://forum.jakilinux.org/ )
I. Instalation
- edit the plugin file and add punBB info:
define('PUNPATH', '../punbb'); // path to punbb folder
define('PUNPREFIX', 'pun_'); // punBB table prefix
- then save & install as any other WP plugin (DB backup is nice idea)
Edit punBB register.php, and at start add:
header('Location: http://www.url/do/wordpress/wp-login.php?action=register');
For login.php:
header('Location: http://www.url/do/wordpress/wp-login.php');
In profile.php find:
if ($action == 'change_pass')
{
Below add:
header('Location: http://www.url/do/wordpress/wp-admin/profile.php');
II. How it works
- punBB user table is synced against WP user table using passwords from WP. When you install users that are registered on WP will be copyed to punBB (but not in the other side).
- If a user have account on punBB and WP - he will user WP login and WP password for both
- it covers login/logout, register and password changes
45 2007-01-28 18:18
Re: php + .net = greatness (29 replies, posted in Programming)
I like multiplatform open solutions and .net / C# isn't that great for me as for scripting languages for C#, Java, .Net there is for example multipurpose Python (also Jython - written in Java, Iron Python written in .Net). Ruby in simillar position. PHP as a versalite scripting language is a bit limited.
46 2006-12-28 18:39
Re: punFramework (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'll update the archives. I've used 681 as it was the current version when I was updating the code
47 2006-12-28 16:37
Re: punFramework (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
it will work with newer version until some bigger code changes
48 2006-12-28 14:45
Re: punFramework (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I've updated punFramework to work with punBB 1.3 r-681 and you can download it from phpclasses. punBB 1.3 r-681 tarballs can be found on sourceforge
49 2006-12-20 13:39
Topic: punBB article in phpSolutions (0 replies, posted in PunBB 1.2 discussion)
Latest number of Polish phpSolutions (http://www.phpsolmag.org/) contains my article about punBB - what is it and what ca it do (features, integrations, migrating from other scripts etc.) The english/other language version of the magazine should show up in other countries soon (I think )
50 2006-12-15 20:15
Re: Sample PunBB 1.3 Board (38 replies, posted in PunBB 1.2 discussion)
http://punbb.tox.pl/board/index.php Polish support forum