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

Eliminare Utima Visita

Supporto per phpBB 3.0.x.
Avatar utente
arnold layne
Utente
Utente
Messaggi: 147
Iscritto il: 23/07/2012, 9:04
Sesso: Maschio
Versione: 3.0.13-PL1
Server: UNIX/Linux
PHP: 5.3.29
Database: MySQL 5.5.42
Contatta:

Eliminare Utima Visita

Messaggio da arnold layne » 22/11/2013, 21:40

Come eliminare la scritta dal profilo, ad esempio " Ultima visita: 22 nov 2013, 15:04"

Angolo
Leader Traduttori
Leader Traduttori
Messaggi: 7237
Iscritto il: 11/03/2011, 17:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.6.18
Database: MySQL 5.6.33-log
Contatta:

Re: Eliminare Utima Visita

Messaggio da Angolo » 22/11/2013, 21:49

Quella dicitura è usata più volte con diversi richiami. Può essere complicato trovarla.

Inizia con il file common.php

Avatar utente
arnold layne
Utente
Utente
Messaggi: 147
Iscritto il: 23/07/2012, 9:04
Sesso: Maschio
Versione: 3.0.13-PL1
Server: UNIX/Linux
PHP: 5.3.29
Database: MySQL 5.5.42
Contatta:

Re: Eliminare Utima Visita

Messaggio da arnold layne » 23/11/2013, 10:20

Angolo ha scritto:Quella dicitura è usata più volte con diversi richiami. Può essere complicato trovarla.

Inizia con il file common.php

cercando quale comando?

Angolo
Leader Traduttori
Leader Traduttori
Messaggi: 7237
Iscritto il: 11/03/2011, 17:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.6.18
Database: MySQL 5.6.33-log
Contatta:

Re: Eliminare Utima Visita

Messaggio da Angolo » 23/11/2013, 10:20

Cercando la dicitura stessa.

Avatar utente
arnold layne
Utente
Utente
Messaggi: 147
Iscritto il: 23/07/2012, 9:04
Sesso: Maschio
Versione: 3.0.13-PL1
Server: UNIX/Linux
PHP: 5.3.29
Database: MySQL 5.5.42
Contatta:

Re: Eliminare Utima Visita

Messaggio da arnold layne » 23/11/2013, 15:35

Angolo ha scritto:Cercando la dicitura stessa.
a parte che è in inglese, non parla di quella parte di codice

Codice: Seleziona tutto

<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Minimum Requirement: PHP 4.3.3
*/

/**
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

require($phpbb_root_path . 'includes/startup.' . $phpEx);

if (file_exists($phpbb_root_path . 'config.' . $phpEx))
{
	require($phpbb_root_path . 'config.' . $phpEx);
}

if (!defined('PHPBB_INSTALLED'))
{
	// Redirect the user to the installer
	// We have to generate a full HTTP/1.1 header here since we can't guarantee to have any of the information
	// available as used by the redirect function
	$server_name = (!empty($_SERVER['HTTP_HOST'])) ? strtolower($_SERVER['HTTP_HOST']) : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME'));
	$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
	$secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0;

	$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
	if (!$script_name)
	{
		$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
	}

	// Replace any number of consecutive backslashes and/or slashes with a single slash
	// (could happen on some proxy setups and/or Windows servers)
	$script_path = trim(dirname($script_name)) . '/install/index.' . $phpEx;
	$script_path = preg_replace('#[\\\\/]{2,}#', '/', $script_path);

	$url = (($secure) ? 'https://' : 'http://') . $server_name;

	if ($server_port && (($secure && $server_port <> 443) || (!$secure && $server_port <> 80)))
	{
		// HTTP HOST can carry a port number...
		if (strpos($server_name, ':') === false)
		{
			$url .= ':' . $server_port;
		}
	}

	$url .= $script_path;
	header('Location: ' . $url);
	exit;
}

if (defined('DEBUG_EXTRA'))
{
	$base_memory_usage = 0;
	if (function_exists('memory_get_usage'))
	{
		$base_memory_usage = memory_get_usage();
	}
}

// Load Extensions
// dl() is deprecated and disabled by default as of PHP 5.3.
if (!empty($load_extensions) && function_exists('dl'))
{
	$load_extensions = explode(',', $load_extensions);

	foreach ($load_extensions as $extension)
	{
		@dl(trim($extension));
	}
}

// Include files
require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
require($phpbb_root_path . 'includes/cache.' . $phpEx);
require($phpbb_root_path . 'includes/template.' . $phpEx);
require($phpbb_root_path . 'includes/session.' . $phpEx);
require($phpbb_root_path . 'includes/auth.' . $phpEx);

require($phpbb_root_path . 'includes/functions.' . $phpEx);
require($phpbb_root_path . 'includes/functions_content.' . $phpEx);

require($phpbb_root_path . 'includes/constants.' . $phpEx);
require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);

// Set PHP error handler to ours
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');

// Instantiate some basic classes
$user		= new user();
$auth		= new auth();
$template	= new template();
$cache		= new cache();
$db			= new $sql_db();

// Connect to DB
$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, defined('PHPBB_DB_NEW_LINK') ? PHPBB_DB_NEW_LINK : false);

// We do not need this any longer, unset for safety purposes
unset($dbpasswd);

// Grab global variables, re-cache if necessary
$config = $cache->obtain_config();

// Add own hook handler
require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);
$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display')));

foreach ($cache->obtain_hooks() as $hook)
{
	@include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx);
}

?>

Angolo
Leader Traduttori
Leader Traduttori
Messaggi: 7237
Iscritto il: 11/03/2011, 17:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.6.18
Database: MySQL 5.6.33-log
Contatta:

Re: Eliminare Utima Visita

Messaggio da Angolo » 23/11/2013, 15:43

Ovviamente, il common.php della cartella language/it.

Avatar utente
arnold layne
Utente
Utente
Messaggi: 147
Iscritto il: 23/07/2012, 9:04
Sesso: Maschio
Versione: 3.0.13-PL1
Server: UNIX/Linux
PHP: 5.3.29
Database: MySQL 5.5.42
Contatta:

Re: Eliminare Utima Visita

Messaggio da arnold layne » 23/11/2013, 16:01

Angolo ha scritto:Ovviamente, il common.php della cartella language/it.

cè solo la traduzione

Codice: Seleziona tutto

'LAST_VISIT'						=> 'Ultima visita'

Angolo
Leader Traduttori
Leader Traduttori
Messaggi: 7237
Iscritto il: 11/03/2011, 17:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.6.18
Database: MySQL 5.6.33-log
Contatta:

Re: Eliminare Utima Visita

Messaggio da Angolo » 23/11/2013, 16:05

Modificala.

Codice: Seleziona tutto

 'LAST_VISIT'                  => ''
Verifica e prova. Come ho detto, si devono fare diversi tentativi. Essendo una voce ripetuta e richiamata più volte.
Inizia con questo primo tentativo.

Avatar utente
arnold layne
Utente
Utente
Messaggi: 147
Iscritto il: 23/07/2012, 9:04
Sesso: Maschio
Versione: 3.0.13-PL1
Server: UNIX/Linux
PHP: 5.3.29
Database: MySQL 5.5.42
Contatta:

Re: Eliminare Utima Visita

Messaggio da arnold layne » 23/11/2013, 16:09

no, non funzia

rimane la data e compare questo

[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4894: Cannot modify header information - headers already sent by (output started at [ROOT]/language/it/common.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4896: Cannot modify header information - headers already sent by (output started at [ROOT]/language/it/common.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4897: Cannot modify header information - headers already sent by (output started at [ROOT]/language/it/common.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4898: Cannot modify header information - headers already sent by (output started at [ROOT]/language/it/common.php:1)


Angolo
Leader Traduttori
Leader Traduttori
Messaggi: 7237
Iscritto il: 11/03/2011, 17:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.6.18
Database: MySQL 5.6.33-log
Contatta:

Re: Eliminare Utima Visita

Messaggio da Angolo » 23/11/2013, 16:13

Però per cortesia, non si devono avere i paraocchi.
Io ho citato la tua citazione, che non conteneva la virgola.

La stringa corretta è con la virgola:

Codice: Seleziona tutto

'LAST_VISIT'						=> 'Ultima visita',
quindi:

Codice: Seleziona tutto

'LAST_VISIT'						=> '',
senza toccare altro. Se tu aggiungi o levi anche uno spazio, ti dà errore. La struttura, il formato, devono essere rispettati con assoluto rigore. Il notepad++ cambia colore, quando alteri la struttura.

Do per scontata la conoscenza di tutti i rigorosi requisiti dei file della lingua: utf8 senza BOM, formato UNIX, ecc.

Rispondi

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

Chi c’è in linea

Visitano il forum: Bing [Bot] e 95 ospiti