coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 bridging => Topic started by: djspugna on January 09, 2008, 04:45:11 PM

Title: mybb & cpg integrated but xp publish don't work
Post by: djspugna on January 09, 2008, 04:45:11 PM
hi all

mybb & cpg integrated but xp publish don't work. why?

Coppermine install: http://www.djspugna.org/photogallery
Forum install: http://www.djspugna.org/pub/forum/mybb
Coppermine version: cpg1.4.14
Forum version: mybb 1.2.11
Test user account: angelsex/ azzurra

BridgeManager settings:
Forum URL:  http://www.djspugna.org/pub/forum/mybb
Relative path to your BBS's config file:  ../pub/forum/mybb
Use post-based groups?:  0
Cookie name/preifx (if applicable)


help me pls
Title: Re: mybb & cpg integrated but xp publish don't work
Post by: djspugna on January 10, 2008, 11:57:05 AM
nothing yet?

pls :'(
Title: Re: mybb & cpg integrated but xp publish don't work
Post by: Joachim Müller on January 10, 2008, 04:54:56 PM
This is not a hotline! Allow days for answers, not just hours.
Regular http uploads work as expected, see http://www.djspugna.org/photogallery/displayimage.php?pos=-25355
Can't say more, as I don't have Windows XP. What browser do you use to log in? You have to use IE, that's for sure.
Title: Re: mybb & cpg integrated but xp publish don't work
Post by: djspugna on January 11, 2008, 10:19:07 AM
thanks for answer.
But Now work fine because I applied some modifications:
in login php:

change
setcookie('mybbadmin', $user['uid']."_".$user['loginkey'], 0, $admin_path);
in
setcookie('mybbadmin', $user['uid']."_".$user['loginkey'], 1, $admin_path);

change
setcookie('sid', $sid, 0, '/');
in
setcookie('sid', $sid, 1, '/');

change
setcookie('mybbuser', $user['uid']."_".$user['loginkey'], 0, "/");
setcookie('mybb[lastvisit]', $time, 0, '/');
setcookie('mybb[lastactive]', $time, 0, '/');
in
setcookie('mybbuser', $user['uid']."_".$user['loginkey'], 1, "/");
setcookie('mybb[lastvisit]', $time, 1, '/');
setcookie('mybb[lastactive]', $time, 1, '/');

I hope to be useful to someone

Angelo