• the gallery installs fine but it has some issues with wordpress install, i am running coppermine with wordpress and minibb forums, forums and wordpress are on same database coppermine is on its own db, process of install was smooth thanks to plugin, and hacks but following are the issues that i encounter upon,

    1. i dont see the image selection bar on write post screen (just upload and more images links are visible) i dont know why but need help with that.

    2. i get this error in write page and upon advance edit option on write post page
    WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘WHERE pictures.aid = albums.aid AND albums.visibility=0 ORDER BY pid DESC LIMIT’ at line 1]
    SELECT ID, user_login, user_firstname, user_lastname FROM wp_users WHERE user_level <= 10 AND user_level > 0

    3. also there should be an option for cookie timeout on coppermine plugin so that user logs out automatically, i encounter this problem if someone logs out from forms but not from wordpress, if someone can resolve that issue it will be big help, as of now i have limited the cookie time for coppermine to 20 mins.

    4. after uploading the images from write post screen the logged user can see the complete users list when he/she clicks on more pictures, this kind of kills the privacy of other users, this definitely need another look,

    thanks alot, hope i helped in making this wonderful plugin even better, looking foreward to a reply.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter sllugger

    (@sllugger)

    Solved Issue 4 on the list, edited coppermine-brower.php on the plugin directory and ommitted these lines and it took out listings of all other users…

    so remove this
    /* insert other users albums */
    print “d.add(2,0,’Other Users’,”,’Other Users’,”,$icon,$icon);”;
    $users = cpg_db_get_all_userdata();
    if ($users) foreach($users as $user) {
    if ($cpg_user && $user->user_id==$cpg_user->user_id) {
    continue;
    }
    $iid = $arbitrary_offset+$user->user_id;
    $name=quotequotes($user->user_name);
    print “d.add($iid,2,’$name’,”,’a User’,”,$picon,$picon);”;

    $albums = cpg_db_get_albums($user->user_id);
    if ($albums) foreach ($albums as $album) {
    if (cpg_can_access_album($cpguserid,$album->aid)) {
    $iaid = $arbitrary_offset+$user->user_id*10000+$album->aid;
    $title=quotequotes($album->title);
    $description=quotequotes($album->description);
    print “d.add($iaid, $iid, ‘$title’, ‘javascript:openAlbum($album->aid)’, ‘$description’, ”, ‘img/icons.gif’);”;
    }
    }
    }

    and logged in users cant see member list in coppermine/wordpress

    Thread Starter sllugger

    (@sllugger)

    STILLLL NEEED HEELPP With Issue 1 & 2

    Thread Starter sllugger

    (@sllugger)

    resloved on my own, that 3.0 release was buggy, 3.2 is working fine.

    Sorry sllugger, I don’t visit this forum very often (not often enough..). If you have more questions, please use the comments section on the plugin page

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘problems with coppermine integration ?’ is closed to new replies.