Messed up my coppermine - help please! Messed up my coppermine - help please!
 

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

Messed up my coppermine - help please!

Started by LilAngel, October 27, 2005, 09:23:16 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

LilAngel

/////////////

Nibbler

You'll need to reverse the actions of the 1.3 -> 1.4 update script. This is why downgrading is not recommended. In this case, you'll need to reverse this change


ALTER TABLE `CPG_users` CHANGE `user_location`  `user_profile1` VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_interests` `user_profile2` VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_website` `user_profile3` VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_occupation` `user_profile4` VARCHAR(255);

LilAngel

#2
//////////////

Nibbler

Well yes, you need to do the reverse of that, which would be this:


ALTER TABLE `CPG_users` CHANGE `user_profile1` `user_location`   VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_profile2` `user_interests` VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_profile3 `user_website` ` VARCHAR(255);
ALTER TABLE `CPG_users` CHANGE `user_profile4` `user_occupation`  VARCHAR(255);

LilAngel

#4
//////////////////////

kegobeer

Those are just notices - you can safely ignore them.  Just turn off debug notices in your config settings.
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots