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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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