Scusate mi sembra di aver capito che coppermine necessita delle GD library per funzionare, per quello che se anche ho attivato il modulo non riesco a vaderlo girare, sono in locale devo caricare tutto nel server dove ci sono le GD???
devo caricare le tabelle aggiuntive che si trovano dentro alla cartrella sql di coppermine???
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login
Inviato:
Mer Set 08, 2004 8:50 pm
cli Frequentatore
Registrato: Sep 08, 2004 Messaggi: 14
Oggetto:
Ciao grazie ho fatto come hai detto solo andato all'install ma ho trovato questo messaggio:
Citazione:
Coppermine update
The installer noticed you are already running Coppermine 1.1D but it needs to be updated.
Click below to begin update.
clicco e mi ritrovo con una tabella infinita di alter table e punti rossi mi dice: fai i comandi e quando sono tutti verdi riprova.
Io ho installato il nuke 7.5 che ho scaricato dal tuo sito pero l' sql mi genera solo 88 tabelle un po pochine mancano tutte quelle "cgp" che, penso ripeto penso servano a coppermine.
ti salvo la tabella con i comandi se percaso vuoi vederla dimmelo
Copia e incolla questo codice in un file con estensione .sql e caricalo nel database:
Codice:
# Struttura della tabella `nuke_cpg_albums`
#
CREATE TABLE nuke_cpg_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',
pic_count int(11) NOT NULL default '0',
thumb int(11) NOT NULL default '0',
last_addition datetime NOT NULL default '0000-00-00 00:00:00',
stat_uptodate enum('YES','NO') NOT NULL default 'NO',
PRIMARY KEY (aid),
KEY alb_category (category)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_categories`
#
CREATE TABLE nuke_cpg_categories (
cid int(11) NOT NULL auto_increment,
owner_id int(11) NOT NULL default '0',
catname varchar(255) NOT NULL default '',
description text NOT NULL,
pos int(11) NOT NULL default '0',
parent int(11) NOT NULL default '0',
subcat_count int(11) NOT NULL default '0',
alb_count int(11) NOT NULL default '0',
pic_count int(11) NOT NULL default '0',
stat_uptodate enum('YES','NO') NOT NULL default 'NO',
PRIMARY KEY (cid),
KEY cat_parent (parent),
KEY cat_pos (pos),
KEY cat_owner_id (owner_id)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_comments`
#
CREATE TABLE nuke_cpg_comments (
pid mediumint(10) NOT NULL default '0',
msg_id mediumint(10) NOT NULL auto_increment,
msg_author varchar(25) NOT NULL default '',
msg_body text NOT NULL,
msg_date datetime NOT NULL default '0000-00-00 00:00:00',
author_md5_id varchar(32) NOT NULL default '',
author_id int(11) NOT NULL default '0',
msg_raw_ip tinytext,
msg_hdr_ip tinytext,
PRIMARY KEY (msg_id),
KEY com_pic_id (pid)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_config`
#
CREATE TABLE nuke_cpg_config (
name varchar(40) NOT NULL default '',
value varchar(255) NOT NULL default '',
PRIMARY KEY (name)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_exif`
#
CREATE TABLE nuke_cpg_exif (
filename varchar(255) NOT NULL default '',
exifData text NOT NULL,
UNIQUE KEY filename (filename)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_installs`
#
CREATE TABLE nuke_cpg_installs (
cpg_id tinyint(3) NOT NULL auto_increment,
dirname varchar(20) NOT NULL default '',
prefix varchar(20) NOT NULL default '',
version varchar(10) default NULL,
PRIMARY KEY (cpg_id)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_pictures`
#
CREATE TABLE nuke_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(10) 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;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_usergroups`
#
CREATE TABLE nuke_cpg_usergroups (
group_id int(11) NOT NULL auto_increment,
group_name varchar(255) NOT NULL default '',
group_quota int(11) NOT NULL default '0',
has_admin_access tinyint(4) NOT NULL default '0',
can_rate_pictures tinyint(4) NOT NULL default '0',
can_send_ecards tinyint(4) NOT NULL default '0',
can_post_comments tinyint(4) NOT NULL default '0',
can_upload_pictures tinyint(4) NOT NULL default '0',
can_create_albums tinyint(4) NOT NULL default '0',
pub_upl_need_approval tinyint(4) NOT NULL default '1',
priv_upl_need_approval tinyint(4) NOT NULL default '1',
PRIMARY KEY (group_id)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Struttura della tabella `nuke_cpg_votes`
#
CREATE TABLE nuke_cpg_votes (
pic_id mediumint(9) NOT NULL default '0',
user_md5_id varchar(32) NOT NULL default '',
vote_time int(11) NOT NULL default '0',
PRIMARY KEY (pic_id,user_md5_id)
) TYPE=MyISAM;
# --------------------------------------------------------
Fammi sapere se l'installazione è andata a buon fine.
Ciao
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login
Inviato:
Ven Set 10, 2004 1:58 am
cli Frequentatore
Registrato: Sep 08, 2004 Messaggi: 14
Oggetto:
Come gia immagini l'instasllazione non è riuscita ti ringrazio dei tuoi sforzi, ma scusa è possibile che ci siano problemi nel nuke7.5 che ho downlodato qualcuno l'ha provato??????
mi rida quel errore di ieri.
Citazione:
Coppermine update
The installer noticed you are already running Coppermine 1.1D but it needs to be updated.
Click below to begin update.
Inviato:
Ven Set 10, 2004 2:46 pm
cli Frequentatore
Registrato: Sep 08, 2004 Messaggi: 14
Oggetto:
per dirti uno degli errori che mi da è:
Codice:
mySQL Error: La tabella 'nuke.cpg11d_categories' non esiste
la tabella nuke.cpg11d_categories non esiste!?!?!?!?!
ma da dove salta fuori questa tabella e tutto sballato non ci riesco proprio a dimenticavo ho scaricato il nuke 7.3 e ho ributtato su tutto il sito.
mi consigli di pubblicarlo???? su server on line????
Ho testato in locale coperimine su php-nuke 7.5 e l'installazione è riuscita correttamente, l'unico problema come già discusso è il caricamento delle immagini ma per il resto è ok.
Citazione:
mi consigli di pubblicarlo???? su server on line????
Si sicuramente se lo pubblichi su un hosting con server linux non hai problemi.
Ciao
_________________ Non inviatemi pm con richieste di aiuto grazie.
Su questo forum solo gli utenti registrati possono vedere i links! Registrati o fai il login
Non puoi inserire nuovi Topic in questo forum Non puoi rispondere ai Topic in questo forum Non puoi modificare i tuoi messaggi in questo forum Non puoi cancellare i tuoi messaggi in questo forum Non puoi votare nei sondaggi in questo forum