[x] Navigation

[x] Wer ist wo
 Bots:
1: Google > Forum 9.x
 Visitors:
1: Forum 9.x

[x] Languages

[x] Design
Each user can view the site with a different theme.
Themes marked with a * also change the forum look.

[x] Downloads (Top)

dump strucktur coppermine cpg_picture

Author Message
lexi_
Doppel-Null-Agent


Joined: Jul 07, 2004
Posts: 178

PostPost subject: dump strucktur coppermine cpg_picture
Posted: 05.12.2006 21:20
Reply with quote

Hallo kann mir jemand mal einen dump dert tabelle cpg_pictures zur verfügung stellen nur tabellen-strucktur iss bei mir leider was durcheinander geraten und ich würde es gerne wiederbeheben das kann ich abba leider nur wenn ich die original tabellen struckturen kenne
mfg
lexi
df version 9.0.6.1


lexi_'s Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Server SUSE 9.3 / PHP 4.3.10 / Mysql 4.1.10a / cpg 9.2.0.RC2
Back to top
View user's profile Send e-mail
clubhouse
Special-Agent


Joined: Nov 04, 2004
Posts: 478
Location: Eine Insel mit 2 Bergen

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 05.12.2006 23:36
Reply with quote

Is jetzt aber von der CVS Version, musst du mal schauen obs damit klappt:

Array:
#
# Table structure for table 'cms_cpg_pictures'
#

DROP TABLE IF EXISTS cms_cpg_pictures;
CREATE TABLE cms_cpg_pictures (
	pid INT(11) NOT NULL AUTO_INCREMENT,
	aid INT(11) DEFAULT '0' NOT NULL,
	filepath VARCHAR(255) NOT NULL,
	filename VARCHAR(255) NOT NULL,
	filesize INT(11) DEFAULT '0' NOT NULL,
	total_filesize INT(11) DEFAULT '0' NOT NULL,
	pwidth SMALLINT(6) DEFAULT '0' NOT NULL,
	pheight SMALLINT(6) DEFAULT '0' NOT NULL,
	hits INT(11) DEFAULT '0' NOT NULL,
	mtime TIMESTAMP DEFAULT 'CURRENT_TIMESTAMP',
	ctime INT(11) DEFAULT '0' NOT NULL,
	owner_id INT(11) DEFAULT '0' NOT NULL,
	owner_name VARCHAR(40) NOT NULL,
	pic_rating INT(11) DEFAULT '0' NOT NULL,
	votes INT(11) DEFAULT '0' NOT NULL,
	title VARCHAR(255) NOT NULL,
	caption TEXT NOT NULL,
	keywords VARCHAR(255) NOT NULL,
	approved ENUM('YES','NO') DEFAULT 'NO' NOT NULL,
	user1 VARCHAR(255) NOT NULL,
	user2 VARCHAR(255) NOT NULL,
	user3 VARCHAR(255) NOT NULL,
	user4 VARCHAR(255) NOT NULL,
	url_prefix TINYINT(4) DEFAULT '0' NOT NULL,
	randpos INT(11) DEFAULT '0' NOT NULL,
	pic_raw_ip TINYTEXT,
	pic_hdr_ip TINYTEXT,
	PRIMARY KEY (pid),
	KEY pic_hits (hits),
	KEY pic_rate (pic_rating),
	KEY aid_approved (aid, approved),
	KEY randpos (randpos),
	KEY pic_aid (aid),
	FULLTEXT search (title, caption, keywords, filename, user1, user2, user3, user4)
);

_________________


clubhouse's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux Debian 4.0 / PHP 5.2.0-8+etch13 / SQL 5.0.32 / CMS 9.2.1
Back to top
View user's profile Visit poster's website ICQ Number
lexi_
Doppel-Null-Agent


Joined: Jul 07, 2004
Posts: 178

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 06.12.2006 17:48
Reply with quote

nee cvs klappt leider nich da werden mir dann keine Bilder mehr angezeigt

lexi_'s Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Server SUSE 9.3 / PHP 4.3.10 / Mysql 4.1.10a / cpg 9.2.0.RC2
Back to top
View user's profile Send e-mail
Poldi
Moderator


Joined: Nov 14, 2004
Posts: 705

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 06.12.2006 19:03
Reply with quote

lexi_ wrote:
nee cvs klappt leider nich da werden mir dann keine Bilder mehr angezeigt

Versuchs mal damit :
Array:
CREATE TABLE `cms_cpg_pictures` (
  `pid` int(11) NOT NULL auto_increment,
  `aid` int(11) NOT NULL default '0',
  `filepath` varchar(255) NOT NULL default '',
  `filename` varchar(255) NOT NULL default '',
  `filesize` int(11) NOT NULL default '0',
  `total_filesize` int(11) NOT NULL default '0',
  `pwidth` smallint(6) NOT NULL default '0',
  `pheight` smallint(6) NOT NULL default '0',
  `hits` int(11) NOT NULL default '0',
  `mtime` timestamp(14) NOT NULL,
  `ctime` int(11) NOT NULL default '0',
  `owner_id` int(11) NOT NULL default '0',
  `owner_name` varchar(40) NOT NULL default '',
  `pic_rating` int(11) NOT NULL default '0',
  `votes` int(11) NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `caption` text NOT NULL,
  `keywords` varchar(255) NOT NULL default '',
  `approved` enum('YES','NO') NOT NULL default 'NO',
  `user1` varchar(255) NOT NULL default '',
  `user2` varchar(255) NOT NULL default '',
  `user3` varchar(255) NOT NULL default '',
  `user4` varchar(255) NOT NULL default '',
  `url_prefix` tinyint(4) NOT NULL default '0',
  `randpos` int(11) NOT NULL default '0',
  `pic_raw_ip` tinytext,
  `pic_hdr_ip` tinytext,
  PRIMARY KEY  (`pid`),
  KEY `pic_hits` (`hits`),
  KEY `pic_rate` (`pic_rating`),
  KEY `aid_approved` (`aid`,`approved`),
  KEY `randpos` (`randpos`),
  KEY `pic_aid` (`aid`),
  FULLTEXT KEY `search` (`title`,`caption`,`keywords`,`filename`,`user1`,`user2`,`user3`,`user4`)
) TYPE=MyISAM

_________________
gG,
Poldi
www.green-dragon.de (Dragonfly 9.2.1)
www.tampones.de (Dragonfly 9.2.1)
www.bfg-deggendorf.de (Dragonfly 9.2.1)
www.sexy-goths.de (Dragonfly 9.1.2.1)
www.gig-hunter.de (deceased)
www.green-dragon.net (Dragonfly CVS ... Testseite)

Poldi's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/1.3.37/4.0.27-5.0.18/4.4.9-5.2.1/9.1.0.0-9.2.1
Back to top
View user's profile Visit poster's website
lexi_
Doppel-Null-Agent


Joined: Jul 07, 2004
Posts: 178

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 07.12.2006 18:26
Reply with quote

danke Poldi das wars

lexi_'s Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Server SUSE 9.3 / PHP 4.3.10 / Mysql 4.1.10a / cpg 9.2.0.RC2
Back to top
View user's profile Send e-mail
SAZKURSU
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 09.12.2006 01:03
Reply with quote

hmmmmmm also ich habs probiert aber habe kein usterschied gesehen ? wie soll das aus sehen ?
_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Poldi
Moderator


Joined: Nov 14, 2004
Posts: 705

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 09.12.2006 09:16
Reply with quote

Aussehen garnicht Wink
Lexi hatte sich lediglich seine Tabelle zerlegt und nach der orginalstrucktur gefragt, um seine seite wieder zum laufen zu bringen.
Da die erste Tabelle von der CVS-Version war, und die etwas anders ist, als die von der 9.0.x-Version, hat das ganze nicht funktioniert.

_________________
gG,
Poldi
www.green-dragon.de (Dragonfly 9.2.1)
www.tampones.de (Dragonfly 9.2.1)
www.bfg-deggendorf.de (Dragonfly 9.2.1)
www.sexy-goths.de (Dragonfly 9.1.2.1)
www.gig-hunter.de (deceased)
www.green-dragon.net (Dragonfly CVS ... Testseite)

Poldi's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/1.3.37/4.0.27-5.0.18/4.4.9-5.2.1/9.1.0.0-9.2.1
Back to top
View user's profile Visit poster's website
SAZKURSU
Doppel-Null-Agent


Joined: Sep 27, 2005
Posts: 129
Location: wien

PostPost subject: Re: dump strucktur coppermine cpg_picture
Posted: 11.12.2006 10:57
Reply with quote

Mr. Green Mr. Green bin doch spät drauf gekommen Wink danke
_________________
CMS Version 9.0.5.0
PHP Version 4.4.1
MySQL Version 4.0.23-Max-log
Server API Apache Linux

SAZKURSU's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Apache/4.4.1/4.0.23/9.0.5.0
Back to top
View user's profile Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic   Printer Friendly Page    Forum Index > > Installation & Upgrades 9.x
Page 1 of 1
All times are GMT + 1 Hour



Jump to:  


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum




Interactive software released under GNU GPL, Code Credits, Privacy Policy