mybb & cpg integrated but xp publish don't work mybb & cpg integrated but xp publish don't work
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

mybb & cpg integrated but xp publish don't work

Started by djspugna, January 09, 2008, 04:45:11 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

djspugna

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

djspugna


Joachim Müller

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.

djspugna

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