Destroying a Bridge Destroying a Bridge
 

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

Destroying a Bridge

Started by rujikin, March 10, 2010, 02:39:21 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

rujikin

I need to know what type of explosives and where to use them to destroy the bridge from PHPbb3 <-> Coppermine. lol

I just want to destroy the bridge and for some reason bridge manager won't let me in and has a 5000 second login timer =/. I want data on coppermine to be preserved but users and stuff from phpbb3 can be purged or destroyed, don't care which. Im deleting my PHPBB3 forum and don't want coppermine to have a heart attack when it cannot find the forum.

Joachim Müller

To manually disable bridging, use a third-party tool like phpMyAdmin that let's you access your mySQL database tables directly. That application phpMyAdmin is free, so if you don't have it and if your webhost isn't providing it for you, you should get it. Once you have that tool, take a look at coppermine's config table and set the value for the record bridge_enable from 1 to 0. Make sure that you understand how to use that database manipulation tool. When in doubt, create a backup first. Coppermine's usergroups table may be distorted as well after manually disabling bridging, so you might have to restore it from a backup (dump). If you need to populate it from scratch, use the queryINSERT INTO CPG_usergroups VALUES (1, 'Administrators', 0, 1, 1, 1, 1, 1, 1, 0, 0, 3, 0, 5, 3);
INSERT INTO CPG_usergroups VALUES (2, 'Registered', 1024, 0, 1, 1, 1, 1, 1, 1, 0, 3, 0, 5, 3);
INSERT INTO CPG_usergroups VALUES (3, 'Anonymous', 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 5, 3);
INSERT INTO CPG_usergroups VALUES (4, 'Banned', 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 5, 3);
(remember to replace the table prefix CPG_ with your actual table prefix.

In the future, respect board rules!

rujikin

Thanks :D got it working now and can delete my old forums!

Joachim Müller