Hamburger Menù
- MasterOfAll
- Nuovo Utente
- Messaggi: 11
- Iscritto il: 09/09/2023, 8:03
- Link del Forum: https://emergenti.altervista.org/hit/index.php
- Località: Da dove l'impossibile diventa possibile.
- Contatta:
Hamburger Menù
Weppa a tutti.
Come inserisco un Hamburger menù in index.html? Ho provato ma mi crea casini e non capisco.
In pratica volevo far si che si potesse girare anche tramite Hamburger Menù.
Come inserisco un Hamburger menù in index.html? Ho provato ma mi crea casini e non capisco.
In pratica volevo far si che si potesse girare anche tramite Hamburger Menù.
Non hai i permessi necessari per visualizzare i file allegati in questo messaggio.
Mi dicono spesso: Tu che sai?
Rispondo: 42.
Rispondo: 42.
- MasterOfAll
- Nuovo Utente
- Messaggi: 11
- Iscritto il: 09/09/2023, 8:03
- Link del Forum: https://emergenti.altervista.org/hit/index.php
- Località: Da dove l'impossibile diventa possibile.
- Contatta:
Re: Hamburger Menù
Ci sarei anche riuscito ... ma come elimino ora il phpBB debug?
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
Così risolvo senza problemi.
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4149: Cannot modify header information - headers already sent by (output started at [ROOT]/test.php:64)
Così risolvo senza problemi.
Non hai i permessi necessari per visualizzare i file allegati in questo messaggio.
Mi dicono spesso: Tu che sai?
Rispondo: 42.
Rispondo: 42.
- alex75
- Amministratore
- Messaggi: 6268
- Iscritto il: 23/08/2012, 23:45
- Link del Forum: www.phpbb-italia.it
- Località: Palermo
Re: Hamburger Menù
il debug si disattiva dal file config.php
troverai questo codice alla fine:
decommentalo e sostituisci "true" con "false". Così:
troverai questo codice alla fine:
Codice: Seleziona tutto
@define('PHPBB_INSTALLED', true);
// define('DEBUG', true);
// define('DEBUG_EXTRA', true);
Codice: Seleziona tutto
@define('PHPBB_INSTALLED', true);
define('DEBUG', false);
define('DEBUG_EXTRA', false);
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
- MasterOfAll
- Nuovo Utente
- Messaggi: 11
- Iscritto il: 09/09/2023, 8:03
- Link del Forum: https://emergenti.altervista.org/hit/index.php
- Località: Da dove l'impossibile diventa possibile.
- Contatta:
- MasterOfAll
- Nuovo Utente
- Messaggi: 11
- Iscritto il: 09/09/2023, 8:03
- Link del Forum: https://emergenti.altervista.org/hit/index.php
- Località: Da dove l'impossibile diventa possibile.
- Contatta:
Re: Hamburger Menù
Codice: Seleziona tutto
<?php
// phpBB 3.3.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = '*******************';
$dbuser = '*****************';
$dbpasswd = '*************';
$table_prefix = 'hit_';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('PHPBB_INSTALLED', true);
@define('PHPBB_ENVIRONMENT', 'production');
// @define('DEBUG_CONTAINER', true);
O.o?
Mi dicono spesso: Tu che sai?
Rispondo: 42.
Rispondo: 42.
- alex75
- Amministratore
- Messaggi: 6268
- Iscritto il: 23/08/2012, 23:45
- Link del Forum: www.phpbb-italia.it
- Località: Palermo
Re: Hamburger Menù
Decommenta l'ultima riga e aggiungi le 2 mancanti, così:
Codice: Seleziona tutto
<?php
// phpBB 3.3.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbhost = 'localhost';
$dbport = '';
$dbname = '*******************';
$dbuser = '*****************';
$dbpasswd = '*************';
$table_prefix = 'hit_';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('PHPBB_INSTALLED', true);
@define('PHPBB_ENVIRONMENT', 'production');
@define('DEBUG_CONTAINER', true);
define('DEBUG', false);
define('DEBUG_EXTRA', false);
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
- MasterOfAll
- Nuovo Utente
- Messaggi: 11
- Iscritto il: 09/09/2023, 8:03
- Link del Forum: https://emergenti.altervista.org/hit/index.php
- Località: Da dove l'impossibile diventa possibile.
- Contatta:
Re: Hamburger Menù
Nulla. Ho fatto. Ma mi da lo stesso l'errore quando metto in modalità cellulare.
Non hai i permessi necessari per visualizzare i file allegati in questo messaggio.
Mi dicono spesso: Tu che sai?
Rispondo: 42.
Rispondo: 42.
- alex75
- Amministratore
- Messaggi: 6268
- Iscritto il: 23/08/2012, 23:45
- Link del Forum: www.phpbb-italia.it
- Località: Palermo
Re: Hamburger Menù
Quali modifiche hai fatto per il menu'?
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<