Visualizzazione risultati 1 fino 25 di 25

Discussione: [vBulletin] Dati DB MySQL per installazione.

  1. #1
    Guest

    Predefinito [vBulletin] Dati DB MySQL per installazione.

    Ciao,ho preso VBulletin.v3.5.2,ora lo messo nel mio server ma ovviamente mi serve il database.

    Adesso sono entrato nella cartella Install e tutto funziona finchè mi dice.

    Step 2) Connect to the database

    Attempting to attach to database

    Connect failed: unexpected error from the database.

    Error number: 1044

    Error description: Access denied for user: 'mionomeutente@localhost' to database 'forum'

    Please ensure that the database and server is correctly configured and try again.


    Il mio database che mi offre Altervista è attivato alla classe 4. Ma allora perchè il forum non riconosce il database?

  2. #2
    L'avatar di binarysun
    binarysun non è connesso Utente storico
    Data registrazione
    02-07-2004
    Messaggi
    2,017

    Predefinito

    Probabilmente hai sbagliato ad inserire i dati di connessione.
    "L'intelligenza è una pianta che va curata continuamente.
    Dovreste vedere com'è bello, il mio bonsai."
    Rat-man®

    [Gradient Text]
    [Su che server sei?]
    ->flickr

  3. #3
    Guest

    Predefinito

    Citazione Originalmente inviato da binarysun
    Probabilmente hai sbagliato ad inserire i dati di connessione.
    ?? Quali dati?

  4. #4
    Guest

    Predefinito

    Ho tradotto l'errore ed ecco che vuol dire ,più meno.


    Tentando per collegarsi a database collegarsi non riuscito: errore inatteso dal database. Numero di errore: 1044 descrizione dell'errore: L'accesso ha negato per utente: '****@localhost' a database 'sede' per favore assicurate che il database e il server è configurato correttamente e provare di nuovo.


    Che cosa signfica? Aiuto!!

  5. #5
    Guest

    Predefinito

    Citazione Originalmente inviato da Mantis
    Error description: Access denied for user: 'mionomeutente@localhost' to database 'forum'
    il database si chiama my_miousername

  6. #6
    Guest

    Predefinito

    quando vb ti chiede di impostare l'utente che ha accesso al database devi mettere:
    Mantis
    quanto ti chiede la password devi scrivere:
    la tua password di altervista
    quando ti chiede il nome del database devi scrivere:
    my_Mantis

  7. #7
    Guest

    Predefinito

    Ma a me non li chiede proprio questi dati!

    Allora: ho inserito questo forum nello spazio web di un mio amico. Ora lo devo installare quindi digito ( provate anche voi)

    http://www.micelforum.altervista.org...ll/install.php

    Arrivato al passaggio 3 non posso proseguire..

    Ultima modifica di Mantis : 22-01-2006 alle ore 18.01.18

  8. #8
    Guest

    Predefinito

    la pagina non esiste...

  9. #9
    Guest

    Predefinito

    Adesso dovrebbe andare.

  10. #10
    Guest

    Predefinito

    http://www.micelforum.altervista.org...all.php?step=1
    qui ti dice che esiste un config file
    devi modificare quello per poter inserire i dati che ti ho postato sopra

  11. #11
    Guest

    Predefinito

    adesso provo immediatamente,sei molto gentile,grazie.

  12. #12
    Guest

    Predefinito

    QUesto file config si trova nella cartella "Includes" ed è chiamato Config.php.

    Ecco il contenuto:
    Codice PHP:
    ?php
    /*======================================================================*\
    || #################################################################### ||
    || # vBulletin 3.5.2 - Licence Number $sm_lickey
    || # ---------------------------------------------------------------- # ||
    || # All PHP code in this file is ©2000-2005 Jelsoft Enterprises Ltd. # ||
    || # This file may not be redistributed in whole or significant part. # ||
    || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
    || # [url]http://www.vbulletin.com[/url] | [url]http://www.vbulletin.com/license.html[/url] # ||
    || #################################################################### ||
    \*======================================================================*/

    /*-------------------------------------------------------*\
    | ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |
    +---------------------------------------------------------+
    | If you get any errors while attempting to connect to |
    | MySQL, you will need to email your webhost because we |
    | cannot tell you the correct values for the variables |
    | in this file. |
    \*-------------------------------------------------------*/

    // ****** DATABASE TYPE ******
    // This is the type of the database server on which your vBulletin database will be located.
    // Valid options are mysql and mysqli. Try to use mysqli if you are using PHP 5 and MySQL 4.1+
    $config['Database']['dbtype'] = 'mysql';

    // ****** DATABASE NAME ******
    // This is the name of the database where your vBulletin will be located.
    // This must be created by your webhost.
    $config['Database']['dbname'] = 'forum';

    // ****** TABLE PREFIX ******
    // Prefix that your vBulletin tables have in the database.
    $config['Database']['tableprefix'] = '';

    // ****** TECHNICAL EMAIL ADDRESS ******
    // If any database errors occur, they will be emailed to the address specified here.
    // Leave this blank to not send any emails when there is a database error.
    $config['Database']['technicalemail'] = 'dbmaster@example.com';

    // ****** FORCE EMPTY SQL MODE ******
    // New versions of MySQL (4.1+) have introduced some behaviors that are
    // incompatible with vBulletin. Setting this value to "true" disables those
    // behaviors. You only need to modify this value if vBulletin recommends it.
    $config['Database']['force_sql_mode'] = false;



    // ****** MASTER DATABASE SERVER NAME AND PORT ******
    // This is the hostname or IP address and port of the database server.
    // If you are unsure of what to put here, leave the default values.
    $config['MasterServer']['servername'] = 'localhost';
    $config['MasterServer']['port'] = 3306;

    // ****** MASTER DATABASE USERNAME & PASSWORD ******
    // This is the username and password you use to access MySQL.
    // These must be obtained through your webhost.
    $config['MasterServer']['username'] = 'root';
    $config['MasterServer']['password'] = '';

    // ****** MASTER DATABASE PERSISTENT CONNECTIONS ******
    // This option allows you to turn persistent connections to MySQL on or off.
    // The difference in performance is negligible for all but the largest boards.
    // If you are unsure what this should be, leave it off. (0 = off; 1 = on)
    $config['MasterServer']['usepconnect'] = 0;



    // ****** SLAVE DATABASE CONFIGURATION ******
    // If you have multiple database backends, this is the information for your slave
    // server. If you are not 100% sure you need to fill in this information,
    // do not change any of the values here.
    $config['SlaveServer']['servername'] = '';
    $config['SlaveServer']['port'] = 3306;
    $config['SlaveServer']['username'] = '';
    $config['SlaveServer']['password'] = '';
    $config['SlaveServer']['usepconnect'] = 0;



    // ****** PATH TO ADMIN & MODERATOR CONTROL PANELS ******
    // This setting allows you to change the name of the folders that the admin and
    // moderator control panels reside in. You may wish to do this for security purposes.
    // Please note that if you change the name of the directory here, you will still need
    // to manually change the name of the directory on the server.
    $config['Misc']['admincpdir'] = 'admincp';
    $config['Misc']['modcpdir'] = 'modcp';

    // Prefix that all vBulletin cookies will have
    // Keep this short and only use numbers and letters, i.e. 1-9 and a-Z
    $config['Misc']['cookieprefix'] = 'bb';

    // ******** FULL PATH TO FORUMS DIRECTORY ******
    // On a few systems it may be necessary to input the full path to your forums directory
    // for vBulletin to function normally. You can ignore this setting unless vBulletin
    // tells you to fill this in. Do not include a trailing slash!
    // Example Unix:
    // $config['Misc']['forumpath'] = '/home/users/public_html/forums';
    // Example Win32:
    // $config['Misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3';
    $config['Misc']['forumpath'] = '';



    // ****** USERS WITH ADMIN LOG VIEWING PERMISSIONS ******
    // The users specified here will be allowed to view the admin log in the control panel.
    // Users must be specified by *ID number* here. To obtain a user's ID number,
    // view their profile via the control panel. If this is a new installation, leave
    // the first user created will have a user ID of 1. Seperate each userid with a comma.
    $config['SpecialUsers']['canviewadminlog'] = '1';

    // ****** USERS WITH ADMIN LOG PRUNING PERMISSIONS ******
    // The users specified here will be allowed to remove ("prune") entries from the admin
    // log. See the above entry for more information on the format.
    $config['SpecialUsers']['canpruneadminlog'] = '1';

    // ****** USERS WITH QUERY RUNNING PERMISSIONS ******
    // The users specified here will be allowed to run queries from the control panel.
    // See the above entries for more information on the format.
    // Please note that the ability to run queries is quite powerful. You may wish
    // to remove all user IDs from this list for security reasons.
    $config['SpecialUsers']['canrunqueries'] = '';

    // ****** UNDELETABLE / UNALTERABLE USERS ******
    // The users specified here will not be deletable or alterable from the control panel by any users.
    // To specify more than one user, separate userids with commas.
    $config['SpecialUsers']['undeletableusers'] = '';

    // ****** SUPER ADMINISTRATORS ******
    // The users specified below will have permission to access the administrator permissions
    // page, which controls the permissions of other administrators
    $config['SpecialUsers']['superadministrators'] = '1';

    // ****** The following options are only needed in special cases ******

    // ****** MySQLI OPTIONS *****
    // When using MySQL 4.1+, MySQLi should be used to connect to the database.
    // If you need to set the default connection charset because your database
    // is using a charset other than latin1, you can set the charset here.
    // If you don't set the charset to be the same as your database, you
    // may receive collation errors. Ignore this setting unless you are sure
    // you need to use it.
    // $config['Mysqli']['charset'] = 'utf8';

    // Optionally, PHP can be instructed to set connection paramaters by reading from the
    // file named in 'ini_file'. Please use a full path to the file.
    // Example:
    // $config['Mysqli']['ini_file'] = 'c:\program files\MySQL\MySQL Server 4.1\my.ini';
    $config['Mysqli']['ini_file'] = '';

    /*======================================================================*\
    || ####################################################################
    || # Downloaded: $sm_time, $sm_date
    || # CVS: $RCSfile: config.php.new,v $ - $Revision: 1.31.2.1 $
    || ####################################################################
    \*======================================================================*/
    ?>


    Sapete dirmi dove devo inserire questi valori?
    Ultima modifica di radioradianti : 23-01-2006 alle ore 17.38.13

  13. #13
    Guest

    Predefinito

    l'inglese lo conosci poco vero

    nome database qui:
    Codice:
      // ****** DATABASE NAME ******
    // This is the name of the database where your vBulletin will be located.
    // This must be created by your webhost.
    $config['Database']['dbname'] = 'forum';
    al posto di forum
    user e password del database qui:
    Codice:
     // ****** MASTER DATABASE USERNAME & PASSWORD ******
    // This is the username and password you use to access MySQL.
    // These must be obtained through your webhost.
    $config['MasterServer']['username'] = 'root';
    $config['MasterServer']['password'] = '';
    al posto di root l'username e sotto la password
    mantenedo gli apci ' '
    Ultima modifica di JoErNanO : 22-01-2006 alle ore 18.25.49

  14. #14
    Guest

    Predefinito

    SI SI SI SI SI!! Và perfettamente!!! Una cosa,è tutto in inglese il forum,posso importarlo in italiano?

    P.S Foza Roma

  15. #15
    Guest

    Predefinito

    se vai sul sito di vb dovresti trovare una qualche traduzione in italiano...
    av è su vb ed è in italiano ...

  16. #16
    Guest

    Wink

    Citazione Originalmente inviato da JoErNanO
    se vai sul sito di vb dovresti trovare una qualche traduzione in italiano...
    av è su vb ed è in italiano ...
    E c'è da dire che fu tradotto in parte da noi dello staff del forum questo vb che state usando adesso (ancora non c'era la trad. italiana disponibile).

    PS: ho modificato il titolo e spostato il post in liv4...

  17. #17
    Guest

    Predefinito

    nessuno mette in dubbio i "vostri" superpoteri

  18. #18
    Guest

    Predefinito

    Sapete cmq dove posso scaricare di preciso la traduzione? sul sito ufficiale non ho trovato nulla..

  19. #19
    Guest

    Predefinito

    Quindi non essite una versione in Italiano del forum?

  20. #20
    L'avatar di radioradianti
    radioradianti non è connesso Utente storico
    Data registrazione
    26-11-2003
    Residenza
    Roma
    Messaggi
    1,000

    Predefinito

    @Mantis : evita i post consecutivi, non sono ben visti quì su AV

    Ciao

    Leandro

    E' on line il numero 12 di Topolinux - Totalmente rinnovato!
    TopoLinux è anche chat! irc.azzurra.org canale #topolinux
    La semplicità di questo dono è inversamente proporzionale alla qualità della nostra amicizia

  21. #21
    Guest

    Predefinito

    Citazione Originalmente inviato da radioradianti
    @Mantis : evita i post consecutivi, non sono ben visti quì su AV

    Ciao

    Leandro
    Oppsss,scusa sono nuovo come vedi e non sò praticament enulla di come ci si comporta apparte il regolamento..

  22. #22
    Guest

    Predefinito

    se vai su www.vbulletinitalia.it la dovresti trovare

  23. #23
    Guest

    Predefinito

    Grazie stò risolvendo..

  24. #24
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    qui trovi tutte le lingue:
    http://www.vbulletin.com/forum/showthread.php?t=99151

    devi usare i dati che ti sono stati consegnati all'acquisto della licenza per scaricarle.
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  25. #25
    Guest

    Predefinito

    Citazione Originalmente inviato da Evcz
    qui trovi tutte le lingue:
    http://www.vbulletin.com/forum/showthread.php?t=99151

    devi usare i dati che ti sono stati consegnati all'acquisto della licenza per scaricarle.
    purtroppo le traduzioni linkate in quel thread sono per versioni 3.0.x quindi non utilizzabili per la v 3.5.2 di Mantis

    Qui è possibile trovare un pacchetto realizzato "artigianalmente".

    mavericck

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •