phpBB Italia chiude!
phpBB Italia ringrazia tutti gli utenti che hanno dato fiducia al nostro progetto per ben 9 anni, e che, grazie al grande lavoro fatto da tutto lo Staff (rigorosamente a titolo gratuito), hanno portato il portale a diventare il principale punto di riferimento italiano alla piattaforma phpBB.

Purtroppo, causa motivi personali, non ho più modo di gestirlo e portarlo avanti. Il forum viene ora posto in uno stato di sola lettura, nonché un archivio storico per permettere a chiunque di fruire di tutte le discussioni trattate.

Il nuovo portale di assistenza per l'Italia di phpBB diventa phpBB-Store.it, cui ringrazio per aver deciso di portare avanti questo grande progetto.

Grazie ancora,
Carlo - Amministratore di phpBB Italia

Problema post aggiornamento

Supporto per phpBB 3.0.x.
REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 25/07/2011, 10:08

Carlo ha scritto:Esegui questa query tramite phpMyAdmin:

Codice: Seleziona tutto

CREATE TABLE IF NOT EXISTS `phpbb_login_attempts` (
  `attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
  `attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
  `attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
  `attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
  `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `username` varchar(255) binary NOT NULL DEFAULT '0',
  `username_clean` varchar(255) binary NOT NULL DEFAULT '0',
  KEY `att_ip` (`attempt_ip`,`attempt_time`),
  KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
  KEY `att_time` (`attempt_time`),
  KEY `user_id` (`user_id`)
) TYPE=MyISAM;
eseguita e mi da il seguente errore:

#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 'TYPE=MyISAM' at line 13

REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 25/07/2011, 18:48

niente da fare, ho eseguito anche questa query:

CREATE TABLE IF NOT EXISTS `phpbb_login_attempts` (
`attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
`attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
`attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
`attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`username` varchar(255) binary NOT NULL DEFAULT '0',
`username_clean` varchar(255) binary NOT NULL DEFAULT '0',
KEY `att_ip` (`attempt_ip`,`attempt_time`),
KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
KEY `att_time` (`attempt_time`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM;

e mi da sempre lo stesso errore nel momento del login ossia:
SQL ERROR [ mysqli ]

Table 'ninja2.phpbb3_login_attempts' doesn't exist [1146]

Si è verificato un errore SQL richiamando questa pagina. Contatta un amministratore se il problema persiste.

Avatar utente
Darkman
Traduttore
Traduttore
Messaggi: 1443
Iscritto il: 16/07/2010, 19:26
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: PHP 5.3.10
Database: 5.1.71
Località: Puglia
Contatta:

Re: Problema post aggiornamento

Messaggio da Darkman » 25/07/2011, 18:58

Fai questa prova: riesegui le query mettendo

Codice: Seleziona tutto

ENGINE=MyISAM
al posto di

Codice: Seleziona tutto

TYPE=MyISAM
potrebbe essere richiesto dalla tua versione MySQL
Non è mai troppo tardi per niente e per nessuno
Darkman

REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 25/07/2011, 19:36

Darkman ha scritto:Fai questa prova: riesegui le query mettendo

Codice: Seleziona tutto

ENGINE=MyISAM
al posto di

Codice: Seleziona tutto

TYPE=MyISAM
potrebbe essere richiesto dalla tua versione MySQL
fattto gia, ma nulla, sempre uguale :cry:

REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 26/07/2011, 17:42

Aiutatemi please

pegasus81
Programmatore
Programmatore
Messaggi: 346
Iscritto il: 24/06/2011, 14:44
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL 4.1.22-standard-log
Contatta:

Re: Problema post aggiornamento

Messaggio da pegasus81 » 26/07/2011, 21:46

Esegui questa query:

Codice: Seleziona tutto

CREATE TABLE IF NOT EXISTS `ninja2.phpbb3_login_attempts` (
      `attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
      `attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
      `attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
      `attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
      `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
      `username` varchar(255) binary NOT NULL DEFAULT '0',
      `username_clean` varchar(255) binary NOT NULL DEFAULT '0',
      KEY `att_ip` (`attempt_ip`,`attempt_time`),
      KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
      KEY `att_time` (`attempt_time`),
      KEY `user_id` (`user_id`)
    ) TYPE=MyISAM;
puzzlepets.net
Il socialnetwork che ama gli animali!
ingegneriapisa.altervista.org
Il forum degli studenti della Facoltà di Ingegneria Informatica di Pisa

REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 27/07/2011, 9:44

pegasus81 ha scritto:Esegui questa query:

Codice: Seleziona tutto

CREATE TABLE IF NOT EXISTS `ninja2.phpbb3_login_attempts` (
      `attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
      `attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
      `attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
      `attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
      `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
      `username` varchar(255) binary NOT NULL DEFAULT '0',
      `username_clean` varchar(255) binary NOT NULL DEFAULT '0',
      KEY `att_ip` (`attempt_ip`,`attempt_time`),
      KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
      KEY `att_time` (`attempt_time`),
      KEY `user_id` (`user_id`)
    ) TYPE=MyISAM;
la avevo gia eseguita, e comunque mi da questo errore:
#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 'TYPE=MyISAM' at line 13

pegasus81
Programmatore
Programmatore
Messaggi: 346
Iscritto il: 24/06/2011, 14:44
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL 4.1.22-standard-log
Contatta:

Re: Problema post aggiornamento

Messaggio da pegasus81 » 27/07/2011, 14:56

E cosi?

Codice: Seleziona tutto

CREATE TABLE IF NOT EXISTS `ninja2.phpbb3_login_attempts` (
          `attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
          `attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
          `attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
          `attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
          `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
          `username` varchar(255) binary NOT NULL DEFAULT '0',
          `username_clean` varchar(255) binary NOT NULL DEFAULT '0',
          KEY `att_ip` (`attempt_ip`,`attempt_time`),
          KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
          KEY `att_time` (`attempt_time`),
          KEY `user_id` (`user_id`)
        ) ENGINE=MyISAM
puzzlepets.net
Il socialnetwork che ama gli animali!
ingegneriapisa.altervista.org
Il forum degli studenti della Facoltà di Ingegneria Informatica di Pisa

REVERENDO
Utente
Utente
Messaggi: 45
Iscritto il: 22/06/2011, 16:26
Versione: 3.0.7-PL1
Server: UNIX/Linux
PHP: 5.1.6
Database: MySQL(i) 5.0.45

Re: Problema post aggiornamento

Messaggio da REVERENDO » 27/07/2011, 15:56

pegasus81 ha scritto:E cosi?

Codice: Seleziona tutto

CREATE TABLE IF NOT EXISTS `ninja2.phpbb3_login_attempts` (
          `attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
          `attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
          `attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
          `attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
          `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
          `username` varchar(255) binary NOT NULL DEFAULT '0',
          `username_clean` varchar(255) binary NOT NULL DEFAULT '0',
          KEY `att_ip` (`attempt_ip`,`attempt_time`),
          KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
          KEY `att_time` (`attempt_time`),
          KEY `user_id` (`user_id`)
        ) ENGINE=MyISAM
CREATE TABLE IF NOT EXISTS `phpbb_login_attempts` (
`attempt_ip` varchar(40) binary NOT NULL DEFAULT '',
`attempt_browser` varchar(150) binary NOT NULL DEFAULT '',
`attempt_forwarded_for` varchar(255) binary NOT NULL DEFAULT '',
`attempt_time` int(11) unsigned NOT NULL DEFAULT '0',
`user_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`username` varchar(255) binary NOT NULL DEFAULT '0',
`username_clean` varchar(255) binary NOT NULL DEFAULT '0',
KEY `att_ip` (`attempt_ip`,`attempt_time`),
KEY `att_for` (`attempt_forwarded_for`,`attempt_time`),
KEY `att_time` (`attempt_time`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM;
come allegato si gia fatto, ma sempre uguale come errore

pegasus81
Programmatore
Programmatore
Messaggi: 346
Iscritto il: 24/06/2011, 14:44
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL 4.1.22-standard-log
Contatta:

Re: Problema post aggiornamento

Messaggio da pegasus81 » 27/07/2011, 17:09

Ma hai utilizzato questo prefisso per la tabella al posto di phpbb?

Codice: Seleziona tutto

ninja2.phpbb3
puzzlepets.net
Il socialnetwork che ama gli animali!
ingegneriapisa.altervista.org
Il forum degli studenti della Facoltà di Ingegneria Informatica di Pisa

Rispondi

Torna a “[3.0.x] Forum di Supporto”

Chi c’è in linea

Visitano il forum: Baidu [Spider] e 12 ospiti