Pagina 2 di 4 PrimaPrima 1234 UltimaUltima
Risultati da 11 a 20 di 31

Discussione: Per Vinkx, passaggio da Snitz a VB

  1. #11
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    Allora, un passo avanti ma subito un blocco, ora mi appaiono i vari moduli per l'import ma al primo (quello che controlla il database) succede questo:

    Altering tables
    ImpEx will now Alter the tables in the vB database to include import id numbers.This is needed during the import process for maintaining refrences between the tables during an import.If you have large tables (i.e. lots of posts) this can take some time.They will also be left after the import if you need to link back to the origional vB userid.
    moderator - importmoderatorid Completed
    usergroup - importusergroupid Completed
    ranks - importrankid Completed
    poll - importpollid Completed
    forum - importforumid Completed
    forum - importcategoryid Completed
    user - importuserid Completed
    style - importstyleid Completed
    thread - importthreadid Completed
    post - importthreadid Completed
    thread - importforumid Completed
    smilie - importsmilieid Completed
    pmtext - importpmid Completed
    avatar - importavatarid Completed
    customavatar - importcustomavatarid Completed
    customprofilepic - importcustomprofilepicid Completed
    post - importpostid Completed
    attachment - importattachmentid Completed
    pm - importpmid Completed
    usernote - importusernoteid Completed
    phrase - importphraseid Completed
    subscription - importsubscriptionid Completed
    subscriptionlog - importsubscriptionlogid Completed

    Valid found tables :


    Possiablly custom tables or incorrect prefix :

    forum_ACTIVE_USERS NOT found.
    forum_ALBUM NOT found.
    forum_ALBUM_CAT NOT found.
    forum_ALBUM_CONFIG NOT found.
    forum_ALBUM_USERS NOT found.
    forum_ALLOWED_MEMBERS NOT found.
    forum_AVATAR NOT found.
    forum_AVATAR2 NOT found.
    forum_A_REPLY NOT found.
    forum_A_TOPICS NOT found.
    forum_BADWORDS NOT found.
    forum_BOOKMARKS NOT found.
    forum_CATEGORY NOT found.
    forum_CONFIG_NEW NOT found.
    forum_FILELISTER NOT found.
    forum_FILELISTER_CAT NOT found.
    forum_FILELISTER_CONFIG NOT found.
    forum_FILELISTER_USERS NOT found.
    forum_FILES NOT found.
    forum_FORUM NOT found.
    forum_GB_OPTIONS NOT found.
    forum_GROUPS NOT found.
    forum_GROUP_NAMES NOT found.
    forum_GUESTBOOK NOT found.
    forum_IPLIST NOT found.
    forum_IPLOG NOT found.
    forum_MAILLIST NOT found.
    forum_MEMBERS NOT found.
    forum_MEMBERS_PENDING NOT found.
    forum_MODERATOR NOT found.
    forum_NAMEFILTER NOT found.
    forum_NOTES NOT found.
    forum_PM NOT found.
    forum_POLLS NOT found.
    forum_POLL_VOTES NOT found.
    forum_RATINGS NOT found.
    forum_REPLY NOT found.
    forum_REV NOT found.
    forum_REVIEWS NOT found.
    forum_REV_OPTIONS NOT found.
    forum_SMILES NOT found.
    forum_SMILES2 NOT found.
    forum_SMILES_CUSTOM NOT found.
    forum_SUBSCRIPTIONS NOT found.
    forum_TOPICS NOT found.
    forum_TOTALS NOT found.
    forum_ANNOUNCE NOT found. Failed Check database permissions and connection, or table prefix to ensure its correct.
    Naturalmente i parametri per la connessione al db vanno bene perche mi collego usando un programma di accesso, il prefisso delle tabelle e' "forum_"..quindi dove potrebbe essere il problema, mica il fatto che ho le tabelle scritte in minuscolo spero.
    Ultima modifica di Vinkx; 17-09-2006 alle 23:47

  2. #12
    Bodyweb.com L'avatar di Sergio
    Data Registrazione
    Oct 2004
    Località
    Sezana, Slovenia
    Età
    55
    Messaggi
    2,754
    Dopo che hai fatto questo passaggio hai ottenuto un forum parzialmente funzionante?
    Sembra che parte delle tabelle sono state importate ed altre non riconosciute

  3. #13
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    No Sergio credo che il sistema non sia riuscito a riconoscere manco una tabella, quello che fa all'inizio va a buon fine perchè opera sulle tabelle del db vbulletin ma quando si trasferisce sul db del forum "vecchio" non trova nulla. Accede ma non riconosce i nomi delle tabelle..mah

  4. #14
    Bodyweb.com L'avatar di Sergio
    Data Registrazione
    Oct 2004
    Località
    Sezana, Slovenia
    Età
    55
    Messaggi
    2,754
    Dovrei vedere il file di configurazione.
    Controlla anche che il prefix sia solo "forum" e non "forum_" .

  5. #15
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    Il prefisso va bene, è "forum_", il file di configurazione se intendi quello di impex è questo:

    if (!defined('IDIR')) { die; }

    $impexconfig['target']['databasetype'] = 'mysql';
    $impexconfig['target']['server'] = 'localhost';
    $impexconfig['target']['user'] = '****';
    $impexconfig['target']['password'] = '****';
    $impexconfig['target']['database'] = 'forumvb';
    $impexconfig['target']['tableprefix'] = '';


    # If the system that is being imported from uses a database,
    # enter the details for it here and set 'sourceexists' to true.
    # If the source data is NOT stored in a database, set 'sourceexists' to false

    $impexconfig['sourceexists'] = true;

    # mysql / mssql
    $impexconfig['source']['databasetype'] = 'mysql';
    $impexconfig['source']['server'] = 'localhost';
    $impexconfig['source']['user'] = '********';
    $impexconfig['source']['password'] = '******';
    $impexconfig['source']['database'] = 'forumsnitz';
    $impexconfig['source']['tableprefix'] = 'forum_';


    # Error logging will log import errors to a database table impexerror
    # for use with support.
    # Language file is the file of phrases to be used, default is english.
    # pagespeed is the second(s) wait before the page refreshes.

    $impexconfig['system']['errorlogging'] = true;
    $impexconfig['system']['language'] = '/impex_language.php';
    $impexconfig['system']['pagespeed'] = 1;

    define('impexdebug', false);
    define('emailcasesensitive', false);
    define('forcesqlmode', false);
    define('skipparentids', false);
    define('shortoutput', false);
    define('do_mysql_fetch_assoc', false);
    ?>

  6. #16
    Bodyweb.com L'avatar di Sergio
    Data Registrazione
    Oct 2004
    Località
    Sezana, Slovenia
    Età
    55
    Messaggi
    2,754
    Io proverei con $impexconfig['source']['tableprefix'] = 'forum';

  7. #17
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    già fatto identico risultato. Visto come mi dà la segnalazione non voglio credere che non trova le tabelle perchè le cerca in maiuscolo, sarebbe il colmo e quindi devo pensare ad altro ma non so a cosa, i settaggi sono pochi.

  8. #18
    Bodyweb.com L'avatar di Sergio
    Data Registrazione
    Oct 2004
    Località
    Sezana, Slovenia
    Età
    55
    Messaggi
    2,754
    Che strano... mi piacerebbe farlo dal tuo pc un giorno.

    Hai guardato anche su questa tabella ? # Error logging will log import errors to a database table impexerror
    Forse ci sono delle informazioni extra.

    Evidentemente ci sfugge qualche cosa ora, un settaggio non è corretto, l'errore è generico non si capisce neanche se si collega al MySql.

  9. #19
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    Per collegarsi si collega, ho provato a cambiare la pass e come è giusto mi da' errore di connessione, quindi il sistema si collega al db ma poi si aspetta delle tabelle che non trova.

  10. #20
    Account disattivato
    Data Registrazione
    Sep 2006
    Messaggi
    15
    Trovato..dai retta al vecio! Erano proprio le maiuscole e minuscole nei nomi delle tabelle! eheh cose da pazzi.

Pagina 2 di 4 PrimaPrima 1234 UltimaUltima

Discussioni Simili

  1. Passaggio da snitz in access a vBulletin in Mysql
    Di ippocrate nel forum Agorà di vBulletin
    Risposte: 7
    Ultimo Messaggio: 18-09-2006, 01:02
  2. Language Packs per vB
    Di Danny nel forum Annunci & News
    Risposte: 11
    Ultimo Messaggio: 29-06-2006, 16:44
  3. vBulletin 3.0.x VB mi mangia tutta la ram del server
    Di andreamarucci nel forum VBulletin 3
    Risposte: 1
    Ultimo Messaggio: 22-11-2005, 12:33
  4. vBulletin 3.0.x Server Mail per vB
    Di King nel forum VBulletin 3
    Risposte: 16
    Ultimo Messaggio: 19-04-2005, 21:26
  5. vBulletin 3.0.x Help!!!!!! Vb Vb Vb Vb
    Di Perkins nel forum VBulletin 3
    Risposte: 8
    Ultimo Messaggio: 21-01-2005, 11:53

Segnalibri

Permessi di Scrittura

  • Tu non puoi inviare nuove discussioni
  • Tu non puoi inviare risposte
  • Tu non puoi inviare allegati
  • Tu non puoi modificare i tuoi messaggi
  •