Advanced search  

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

Pages: [1]   Go Down

Author Topic: Moved servers, Now how do I get my gallery to work  (Read 4212 times)

0 Members and 1 Guest are viewing this topic.

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Moved servers, Now how do I get my gallery to work
« on: January 29, 2007, 08:11:27 pm »

I am using Coppermine Photo Gallery v1.4.4. I moved servers the other day, I install a fresh copy of the gallery on the server then moved my picture folder to the new server, I cant see the pics, How do I go about getting it all to work again??
« Last Edit: January 30, 2007, 07:33:31 pm by Nibbler »
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #2 on: January 29, 2007, 08:46:53 pm »

ve moved the files, This must be where my problem is  use a tool like phpMyAdmin to get a dump (backup) of your mySQL database entries. More info here here

The link doesnt work, What do I have to backup from my .SQL
Logged

Nibbler

  • Guest
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #4 on: January 29, 2007, 09:05:40 pm »

Sorry to sound stupid, Non of that makes any sence, Which file am I to move from mysql?
Logged

Nibbler

  • Guest
Re: Moved servers, Now how do I get my gallery to work
« Reply #5 on: January 29, 2007, 09:41:13 pm »

Which file am I to move from mysql?

None of that makes any sense.

The MySQL database contains information about the pictures, comments, config settings etc. You need to export the data from your old database, save it to your PC, and import it into the new database. phpmyadmin is the de facto standard for doing this on shared hosting. Try searching the web for more detailed instructions/tutorials or see if your new host will help you.

Give it a try and come back with specific questions.
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #6 on: January 29, 2007, 10:45:17 pm »

Right, Think I worked it out, I tried to import but got errors

Code: [Select]
Error
SQL query:

-- phpMyAdmin SQL Dump
-- version 2.9.0.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 29, 2007 at 08:19 PM
-- Server version: 4.1.21
-- PHP Version: 4.4.2
--
DATABASE : `zetectur_zetecturbo` --
-- --------------------------------------------------------
--
-- Table structure for table `cpg143_albums`
--
CREATE TABLE `cpg143_albums` (

`aid` int( 11 ) NOT NULL AUTO_INCREMENT ,
`title` varchar( 255 ) NOT NULL default '',
`description` text NOT NULL ,
`visibility` int( 11 ) NOT NULL default '0',
`uploads` enum( 'YES', 'NO' ) NOT NULL default 'NO',
`comments` enum( 'YES', 'NO' ) NOT NULL default 'YES',
`votes` enum( 'YES', 'NO' ) NOT NULL default 'YES',
`pos` int( 11 ) NOT NULL default '0',
`category` int( 11 ) NOT NULL default '0',
`thumb` int( 11 ) NOT NULL default '0',
`keyword` varchar( 50 ) default NULL ,
`alb_password` varchar( 32 ) default NULL ,
`alb_password_hint` text,
PRIMARY KEY ( `aid` ) ,
KEY `alb_category` ( `category` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =44;



MySQL said: 

#1064 - 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 'Database: `zetectur_zetecturbo`

CREATE TABLE `cpg143_albums` (
  `aid` int(11' at line 1
Logged

Nibbler

  • Guest
Re: Moved servers, Now how do I get my gallery to work
« Reply #7 on: January 29, 2007, 10:59:49 pm »

Remove the line it complains about

Code: [Select]
DATABASE : `zetectur_zetecturbo` --
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #8 on: January 30, 2007, 01:07:54 am »

BAH!! Now I get this

Code: [Select]
CREATE TABLE `cpg1410_albums` (

`aid` int( 11 ) NOT NULL AUTO_INCREMENT ,
`title` varchar( 255 ) NOT NULL default '',
`description` text NOT NULL ,
`visibility` int( 11 ) NOT NULL default '0',
`uploads` enum( 'YES', 'NO' ) NOT NULL default 'NO',
`comments` enum( 'YES', 'NO' ) NOT NULL default 'YES',
`votes` enum( 'YES', 'NO' ) NOT NULL default 'YES',
`pos` int( 11 ) NOT NULL default '0',
`category` int( 11 ) NOT NULL default '0',
`thumb` int( 11 ) NOT NULL default '0',
`keyword` varchar( 50 ) default NULL ,
`alb_password` varchar( 32 ) default NULL ,
`alb_password_hint` text,
PRIMARY KEY ( `aid` ) ,
KEY `alb_category` ( `category` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1 COMMENT = 'Used to store albums' AUTO_INCREMENT =1;



MySQL said: 

#1050 - Table 'cpg1410_albums' already exists
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Moved servers, Now how do I get my gallery to work
« Reply #9 on: January 30, 2007, 08:26:31 am »

Well, then delete (or rename) the table that already exists - the error message should be pretty self-explanatory.
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #10 on: January 30, 2007, 07:07:04 pm »

ARGH!!!!!!!!! I thought I had the hang of it but I thought wrong.

Ive deleted everything and started again, I uploaded all the gallery files and folders, I tried yet again to import the sql but im still getting errors

MySQL said: 

#1064 - 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 'Database: `zetectur_zetecturbo`

CREATE TABLE `cpg143_albums` (
  `aid` int(11' at line 1
Logged

Nibbler

  • Guest
Re: Moved servers, Now how do I get my gallery to work
« Reply #11 on: January 30, 2007, 07:08:41 pm »

That's the same error you had before that I already told you how to fix.
Logged

avinitlarge

  • Coppermine newbie
  • Offline Offline
  • Posts: 7
Re: Moved servers, Now how do I get my gallery to work
« Reply #12 on: January 30, 2007, 07:18:20 pm »

Indeed it was, I deleted that line and it all imported ok, Looked at my gallery and its all there as it was before on my other server.

Sorry for being a pain, I modify cars and im not to up on computers

Thanks for the help  :D
Logged
Pages: [1]   Go Up
 

Page created in 0.022 seconds with 19 queries.