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

problem con nome pagina

Supporto MODs generale.
Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

problem con nome pagina

Messaggio da xX_Simon_Xx » 28/12/2009, 20:47

ho appena cambiato il nome del portal da "Home" a "PSP e PS3 italian community, forum, news, downloads, modding, temi"

e quindi nella pagina del portal nella barra (quella dove ci sono i tasti indice, FAQ ecc..) non appare più Home
ma appare appunto "PSP e PS3 italian community, forum, news, downloads, modding, temi".

questo però accade solo nel portal , infatti se si va nell' indice si chiama nuovamente home

Come faccio quindi ,nel portal, ha dare il nome home al tasto lasciando Questo nome:

Codice: Seleziona tutto

"PSP e PS3 italian community, forum, news, downloads, modding, temi"
alla pagina :?: :?: :?: :?: :?: :?: :?: :?: :?:

Avatar utente
Carlo
Amministratore
Amministratore
Messaggi: 9957
Iscritto il: 19/04/2009, 10:24
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 7.1.0
Database: MySQL(i) 10.0.27-MariaDB-cll-lve
Località: Puglia
Contatta:

Re: problem con nome pagina

Messaggio da Carlo » 28/12/2009, 21:11

Potresti allegarmi il file portal.php?

P.S.: Sposto.
MODs | Stili | Traduzioni MOD
Ogni MP contenente una richiesta di supporto verrà ignorato.

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: problem con nome pagina

Messaggio da xX_Simon_Xx » 29/12/2009, 13:46

allora questo è il file portal.php:

Codice: Seleziona tutto

<?php
/*
*
* @package phpBB3 Portal  a.k.a canverPortal  ( www.phpbb3portal.com )
* @version $Id: portal.php,v 1.11 2008/02/09 08:18:13 angelside Exp $
* @copyright (c) Canver Software - www.canversoft.net
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

// Note: If you would like to have the portal in a different location than in the main phpBB3 directory
// You must change the following variable, and change the 'U_PORTAL' template variable in functions.php
define('IN_PHPBB', true);
define('IN_PORTAL', true);
define('PHPBB_ROOT_PATH', './');
define('PORTAL_ROOT_PATH','./portal/');

$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$portal_root_path = (defined('PORTAL_ROOT_PATH')) ? PORTAL_ROOT_PATH : './portal/';

$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($portal_root_path . '/includes/functions.'.$phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('portal');

// show login box and user menu

//  acp de aç/kapa yok, dil dosyasýna ek: hiç doðumgünü yoksa evet seçili olsa bile blok görünmez.
// SQL bilgisi yok -  - SQL eklenirse dil deðiþkeni de eklenmeli
//if ($config['portal_user_menu'])
//{
	// only registered user see user menu
	if ($user->data['is_registered'])
	{
		include($portal_root_path . '/block/user_menu.'.$phpEx);
	}
	else
	{
		include($portal_root_path . '/block/login_box.'.$phpEx);
	}
//}

if ($config['portal_attachments'])
{
	include($portal_root_path . '/block/attachments.'.$phpEx);
}

if ($config['portal_recent']) 
{ 
	include($portal_root_path . '/block/recent.'.$phpEx);
}

if ($config['portal_advanced_stat'])
{
	include($portal_root_path . '/block/statistics.'.$phpEx);
}

if ($config['portal_minicalendar'])
{
	include($portal_root_path . '/block/mini_cal.'.$phpEx);
}

if ($config['portal_link_us'])
{
	include($portal_root_path . '/block/link_us.'.$phpEx);
}

if ($config['portal_leaders'])
{
	include($portal_root_path . '/block/leaders.'.$phpEx);
}

if ($config['portal_wordgraph'])
{
	include($portal_root_path . '/block/wordgraph.'.$phpEx);
}

if ( $config['portal_poll_topic'] && $config['portal_poll_topic'] != "" )
{
	include($portal_root_path . '/block/poll.'.$phpEx);
}

if ($config['portal_load_last_visited_bots'])
{
	include($portal_root_path . '/block/latest_bots.'.$phpEx);
}

if ($config['portal_top_posters'])
{
	include($portal_root_path . '/block/top_posters.'.$phpEx);
}

if ($config['portal_latest_members'])
{
	include($portal_root_path . '/block/latest_members.'.$phpEx);
}

if ($config['portal_random_member'])
{
	include($portal_root_path . '/block/random_member.'.$phpEx);
}

if ($config['portal_clock'])
{
	$template->assign_vars(array(
		'S_DISPLAY_CLOCK' => true,
	));
}

if ($config['portal_links'])
{
//	include($portal_root_path . '/block/links.'.$phpEx);
	$template->assign_vars(array(
		'S_DISPLAY_LINKS' => true,
	));
}

if ($config['portal_welcome'])
{
	$template->assign_vars(array(
		'S_DISPLAY_WELCOME' 	=> true,
		'PORTAL_WELCOME_INTRO'	=> $config['portal_welcome_intro'],
	));
}

if ($config['portal_announcements'])
{
	include($portal_root_path . '/block/announcements.'.$phpEx);
	$template->assign_vars(array(
		'S_ANNOUNCE_COMPACT' => ($config['portal_announcements_style']) ? true : false,
	));
}

if ($config['portal_news'])
{
	include($portal_root_path . '/block/news.'.$phpEx);
	$template->assign_vars(array(
		'S_NEWS_COMPACT' => ($config['portal_news_style']) ? true : false,
	));
}

if ($config['portal_pay_s_block'] or $config['portal_pay_c_block'])
{
	include($portal_root_path . '/block/donate.'.$phpEx);
}


if ($config['portal_ads_small'])
{
	$template->assign_vars(array(
		'S_ADS_SMALL' 	=> ($config['portal_ads_small_box']) ? true : false,
		'ADS_SMALL_BOX'	=> $config['portal_ads_small_box'],
	));
}

if ($config['portal_ads_center'])
{
	$template->assign_vars(array(
		'S_ADS_CENTER' 		=> ($config['portal_ads_center_box']) ? true : false,
		'ADS_CENTER_BOX'	=> $config['portal_ads_center_box'],
	));
}


// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli
if ($user->data['is_registered']/* and $config['portal_friends']*/)
{
	include($portal_root_path . '/block/friends.'.$phpEx);
}

// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli
// dil dosyasýna ek: hiç doðumgünü yoksa evet seçili olsa bile blok görünmez.
//if ($config['show_birthdays'])
//{
	include($portal_root_path . '/block/birthday_list.'.$phpEx);
//}

// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli
//if ($config['show_whois_online'])
//{
	include($portal_root_path . '/block/whois_online.'.$phpEx);
//}

// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli
//if ($config['show_search'])
//{
	include($portal_root_path . '/block/search.'.$phpEx);
//}

// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli
//if ($config['change_style'])
//{
//	include($portal_root_path . '/block/change_style.'.$phpEx); // stil seçince hata veriyor
//}

$template->assign_vars(array(
	'S_DISPLAY_JUMPBOX' 	=> true, // SQL + ACP eklenecek
	'PORTAL_LEFT_COLLUMN' 	=> $config['portal_left_collumn_width'],
	'PORTAL_RIGHT_COLLUMN' 	=> $config['portal_right_collumn_width'],
));

// output page
page_header($user->lang['PORTAL']);
//page_header($config['sitename']);

$template->set_filenames(array(
	'body' => 'portal/portal_body.html'
));

// SQL + ACP eklenecek
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));

page_footer();

?>
mentre questo è il file language/it/portal.php:

Codice: Seleziona tutto

    <?php
    /*
    *
    * bb3portal [Italian]
    *
    * @package phpBB3 Portal  a.k.a canverPortal  ( www.phpbb3portal.com )
    * @version $Id: portal.php,v 1.6 2008/02/09 08:18:14 angelside Exp $
    * @copyright (c) Canver Software - www.canversoft.net
    * @license http://opensource.org/licenses/gpl-license.php GNU Public License
    * @translation by: xX_Simon_Xx http://playstationuser.altervista.org  10.10.2009
    */

    /**
    * DO NOT CHANGE
    */
    if (empty($lang) || !is_array($lang))
    {
       $lang = array();
    }

    // DEVELOPERS PLEASE NOTE
    //
    // Placeholders can now contain order information, e.g. instead of
    // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
    // translators to re-order the output of data while ensuring it remains correct
    //
    // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
    // equally where a string contains only two placeholders which are used to wrap text
    // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine


    $lang = array_merge($lang, array(
       // General
       'PORTAL'            => 'PSP e PS3 italian community, forum, news, downloads, modding, temi',
       'WELCOME'            => 'Benvenuti',

       // news & global announcements
       'LATEST_ANNOUNCEMENTS'   => 'Ultimi Annunci Globali',
       'LATEST_NEWS'         => 'News',
       'READ_FULL'            => 'Leggi Tutto',
       'NO_NEWS'            => 'Nessuna News',
       'NO_ANNOUNCEMENTS'      => 'Nessun Annuncio Globale',
       'POSTED_BY'            => 'Postato da',
       'COMMENTS'            => 'Commenti',
       'VIEW_COMMENTS'         => 'Visualizza i Commenti',
       'POST_REPLY'         => 'Scivi un Commento',
       'TOPIC_VIEWS'         => 'Letture',

       // who is online
       'WIO_TOTAL'         => 'Totale',
       'WIO_REGISTERED'   => 'Registrati',
       'WIO_HIDDEN'      => 'Nascosti',
       'WIO_GUEST'         => 'Ospiti',
       //'RECORD_ONLINE_USERS'=> 'View record: <strong>%1$s</strong><br />%2$s',

       // user menu
       'USER_MENU'         => 'Menu Utente',
       'UM_LOG_ME_IN'      => 'Ricordami',
       'UM_HIDE_ME'      => 'Nascondimi',
       'UM_MAIN_SUBSCRIBED'=> 'Sottoscrizioni',
       'UM_BOOKMARKS'      => 'Segnalibri',

       // statistics
       'ST_NEW'      => 'Novo',
       'ST_NEW_POSTS'   => 'Nuovi Post',
       'ST_NEW_TOPICS'   => 'Nuovi Topic',
       'ST_NEW_ANNS'   => 'Nuovi Anunci',
       'ST_NEW_STICKYS'    => 'Nuovi Sticky',
       'ST_TOP'      => 'Totale',
       'ST_TOP_ANNS'   => 'Anunnci',
       'ST_TOP_STICKYS'     => 'Sticky',
       'ST_TOT_ATTACH'   => 'Allegati',

       // search
       'SH'      => 'Cerca',
       'SH_SITE'                   => 'forum',
       'SH_POSTS'   => 'post',
       'SH_AUTHOR'   => 'autore',
       'SH_ENGINE'   => 'Motori di ricerca',
       'SH_ADV'   => 'Ricerca Avanzata',
       
       // recent
       'RECENT_TOPIC'      => 'Topic Recenti',
       'RECENT_ANN'      => 'Annunci recenti',
       'RECENT_HOT_TOPIC'   => 'Topic popolari recenti',

       // random member
       'RND_MEMBER'   => 'Membro casuale',
       'RND_JOIN'      => 'Ultima Visita',
       'RND_POSTS'      => 'Post',
       'RND_OCC'      => 'Occupazione',
       'RND_FROM'      => 'Localita',
       'RND_WWW'      => 'Pagina Web',

       // top poster
       'TOP_POSTER'   => 'Migliori postatori',

       // links
       'LINKS'   => 'Links',

       // latest members
       'LATEST_MEMBERS'   => 'Ultimi Iscritti',

       // make donation
       'DONATION'       => 'Fai una Donazione',
       'DONATION_TEXT'   => 'è un forum che offre servizi gratuiti senza scopi di guadagno. Chiunque voglia farlo può fare una donazione aiutando il webmaster a pagare i server, il dominio e i servizi',
       'PAY_MSG'      => 'Dopo aver selezionato il totale da donare puoi proseguire cliccando sull icona di PayPal.',
       'PAY_ITEM'      => 'Fai una donazione', // paypal item

       // main menu
       'M_MENU'    => 'Menu',
       'M_CONTENT'   => 'Contenuto',
       'M_ACP'      => 'ACP',
       'M_HELP'   => 'Help',
       'M_BBCODE'   => 'BBCode FAQ',
       'M_TERMS'   => 'Condizioni d’uso',
       'M_PRV'      => 'Privacy',
       'M_SEARCH'   => 'Cerca',

       // link us
       'LINK_US'      => 'Linkaci',
       'LINK_US_TXT'   => 'Se vuoi linkare <strong>%s</strong> usa il seguente codice:',

       // friends
       'FRIENDS'            => 'Amici',
       'FRIENDS_OFFLINE'      => 'Offline',
       'FRIENDS_ONLINE'      => 'Online',
       'NO_FRIENDS'         => 'Nessun amico aggiunto',
       'NO_FRIENDS_OFFLINE'   => 'Nessun amico offline',
       'NO_FRIENDS_ONLINE'      => 'Nessun amico online',
       
       // last bots
       'LAST_VISITED_BOTS'      => 'ultimi %s bot',
       
       // wordgraph
       'WORDGRAPH'            => 'Wordgraph',

       // change style
       'BOARD_STYLE'         => 'Board style',
       'STYLE_CHOOSE'         => 'Selezione uno style',
          
       // team
       'NO_ADMINISTRATORS_P'   => 'Nessun amministratore',
       'NO_MODERATORS_P'      => 'Nessun moderatore',

       // average Statistics
       'TOPICS_PER_DAY_OTHER'   => 'Topics per giorno: <strong>%d</strong>',
       'TOPICS_PER_DAY_ZERO'   => 'Topics per giorno: <strong>0</strong>',
       'POSTS_PER_DAY_OTHER'   => 'Posts per giorno: <strong>%d</strong>',
       'POSTS_PER_DAY_ZERO'   => 'Posts per giorno: <strong>0</strong>',
       'USERS_PER_DAY_OTHER'   => 'Users per giorno: <strong>%d</strong>',
       'USERS_PER_DAY_ZERO'   => 'Users per giorno: <strong>0</strong>',
       'TOPICS_PER_USER_OTHER'   => 'Topics per utente: <strong>%d</strong>',
       'TOPICS_PER_USER_ZERO'   => 'Topics per utente: <strong>0</strong>',
       'POSTS_PER_USER_OTHER'   => 'Posts per utente: <strong>%d</strong>',
       'POSTS_PER_USER_ZERO'   => 'Posts per utente: <strong>0</strong>',
       'POSTS_PER_TOPIC_OTHER'   => 'Messaggi per topic: <strong>%d</strong>',
       'POSTS_PER_TOPIC_ZERO'   => 'Messaggi per topic: <strong>0</strong>',

       // poll
       'LATEST_POLLS'         => 'Sondaggi recenti',
       'NO_OPTIONS'         => 'Questo sondaggio non ha opzioni disponibili.',
       'NO_POLL'            => 'Nessun sondaggio disponibile',
       'RETURN_PORTAL'         => '%sReturn to the portal%s',

       // other
       'POLL'      => 'Sondaggi',
       'CLOCK'      => 'Orologio',
       'SPONSOR'   => 'Sponsor',
       
       /**
       * DO NOT REMOVE or CHANGE
       */
       'PORTAL_COPY'   => 'Portal by <a href="http://www.phpbb3portal.com" title="phpBB3 Portal" target="_blank">phpBB3 Portal</a> &copy; <a href="http://www.phpbbturkiye.net" title="phpBB Türkiye" target="_blank">phpBB</a> Türkiye',
       )
    );

    // mini calendar
    $lang = array_merge($lang, array(
       'Mini_Cal_calendar'      => 'Calendario',
       'Mini_Cal_add_event'   => 'Aggiungi Evento',
       'Mini_Cal_events'      => 'Evento',
       'Mini_Cal_no_events'   => 'Nessun Evento',
       'Mini_cal_this_event'   => 'Feste questo mese',
       'View_next_month'      => 'Mese Prossimo',
       'View_previous_month'   => 'Mese Precedente',

    // uses MySQL DATE_FORMAT - %c  long_month, numeric (1..12) - %e  Day of the long_month, numeric (0..31)
    // see http://www.mysql.com/doc/D/a/Date_and_time_functions.html for more details
    // currently supports: %a, %b, %c, %d, %e, %m, %y, %Y, %H, %k, %h, %l, %i, %s, %p
       'Mini_Cal_date_format'      => '%b %e',
       'Mini_Cal_date_format_Time'   => '%H:%i',

    // if you change the first day of the week in constants.php, you should change values for the short day names accordingly
    // e.g. FDOW = Sunday -> $lang['mini_cal']['day'][1] = 'Su'; ... $lang['mini_cal']['day'][7] = 'Sa';
    //      FDOW = Monday -> $lang['mini_cal']['day'][1] = 'Mo'; ... $lang['mini_cal']['day'][7] = 'Su';
       'mini_cal'   => array(
          'day'   => array(
             '1'   => 'Dom',
             '2'   => 'Lun',
             '3'   => 'Mar',
             '4'   => 'Mer',
             '5'   => 'Gio',
             '6'   => 'Ven',
             '7'   => 'Sab',
          ),

          'month'   => array(
             '1'   => 'Gen',
             '2'   => 'Feb',
             '3'   => 'Mar',
             '4'   => 'Apr',
             '5'   => 'Mag',
             '6'   => 'Giu',
             '7'   => 'Lug',
             '8'   => 'Ago',
             '9'   => 'Set',
             '10'=> 'Ott',
             '11'=> 'Nov',
             '12'=> 'Dic',
          ),

          'long_month'=> array(
             '1'   => 'Gennaio',
             '2'   => 'Febraio',
             '3'   => 'Marzo',
             '4'   => 'Aprile',
             '5'   => 'Maggio',
             '6'   => 'Giugno',
             '7'   => 'Luglio',
             '8'   => 'Agosto',
             '9'   => 'Settembre',
             '10'=> 'Ottobre',
             '11'=> 'Novembre',
             '12'=> 'Dicembre',
          ),
       ),
    ));

    ?>

Avatar utente
Carlo
Amministratore
Amministratore
Messaggi: 9957
Iscritto il: 19/04/2009, 10:24
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 7.1.0
Database: MySQL(i) 10.0.27-MariaDB-cll-lve
Località: Puglia
Contatta:

Re: problem con nome pagina

Messaggio da Carlo » 29/12/2009, 14:04

Beh, dov'è che leggi ancora "Home"?
MODs | Stili | Traduzioni MOD
Ogni MP contenente una richiesta di supporto verrà ignorato.

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: problem con nome pagina

Messaggio da xX_Simon_Xx » 29/12/2009, 19:00

carlino1994 ha scritto:Beh, dov'è che leggi ancora "Home"?
forse tu non hai ben capito quali sono le mie intenzioni :D
ti chiarisco le idee con degli screen:
Immagine

allora come vedi nella parte verde ho circondato il nome della pagina

mentre nella parte rossa ho circondato il nome della paagina nella barra
però io vorrei che nella parte rossa non ci sia quel nome ma ci sia HOME lasciando però il nome alla parte verde :roll:

è possibile?

Avatar utente
Carlo
Amministratore
Amministratore
Messaggi: 9957
Iscritto il: 19/04/2009, 10:24
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 7.1.0
Database: MySQL(i) 10.0.27-MariaDB-cll-lve
Località: Puglia
Contatta:

Re: problem con nome pagina

Messaggio da Carlo » 29/12/2009, 19:07

Sì, è possibile. Devi semplicemente modificare il template overall_header.html. Se non riesci da solo, incolla il tuo header qui così ti aiuto io.
MODs | Stili | Traduzioni MOD
Ogni MP contenente una richiesta di supporto verrà ignorato.

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: problem con nome pagina

Messaggio da xX_Simon_Xx » 29/12/2009, 19:17

eccolo

Codice: Seleziona tutto

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
<head>

<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-language" content="{S_USER_LANG}" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="resource-type" content="document" />
<meta name="distribution" content="global" />
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
<meta name="keywords" content="PlayStationUser,PlaystationUser,playstationuser,PSU,PSUser,PSP,PS3,PS2,NEWS,psp,psp italian,modifica psp,pspgo,psp go, psp forum,modifica,umd,psp modificata,memory stick pro duo,psp games,psp movies,psp emulator,playstation portable,psp video,psp game,psp review,memory stick,ps3, ps 3, playstation 3, play station 3, ps3, 3, specifiche, gioco, novità, sony, europe, europa, scee, gioco ad alta definizione, HD, controller, blu-ray, blu ray, blue, 6 degree, movimento, console, dispositivo,ps3, Playstation3, playstation, 3, psp, linux, Linux, yellow, dog, gentoo, hack, iso, bluray, loader, dump, guide, howto, installare, guida, HOWTO," />
<meta name="description" content="PlayStationUser, il punto di riferimento per la vostra PlayStation. Qui trovate tutte le informazioni che vi servono per godere al massimo della potenza della vostra console." />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
{META}
<!-- BEGIN gym_rsslinks -->
<link rel="alternate" type="application/rss+xml" title="{gym_rsslinks.TITLE}" href="{gym_rsslinks.URL}" />
<!-- END gym_rsslinks -->

<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>
<link rel="alternate" type="application/rss+xml" title="RSS Feeds - {SITENAME}" href="./rss.php" />


<script type="text/javascript">
// <![CDATA[
	var jump_page = '{LA_JUMP_PAGE}:';
	var on_page = '{ON_PAGE}';
	var per_page = '{PER_PAGE}';
	var base_url = '{A_BASE_URL}';
	var style_cookie = 'phpBBstyle';
	var style_cookie_settings = '{A_COOKIE_SETTINGS}';
	var onload_functions = new Array();
	var onunload_functions = new Array();

	<!-- IF S_USER_PM_POPUP -->
		if ({S_NEW_PM})
		{
			var url = '{UA_POPUP_PM}';
			window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
		}
	<!-- ENDIF -->

	/**
	* Find a member
	*/
	function find_username(url)
	{
		popup(url, 760, 570, '_usersearch');
		return false;
	}

	/**
	* New function for handling multiple calls to window.onload and window.unload by pentapenguin
	*/
	window.onload = function()
	{
		for (var i = 0; i < onload_functions.length; i++)
		{
			eval(onload_functions[i]);
		}
	}

	window.onunload = function()
	{
		for (var i = 0; i < onunload_functions.length; i++)
		{
			eval(onunload_functions[i]);
		}
	}

// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />

<link href="{T_THEME_PATH}/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
<!-- ENDIF -->

</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">

<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>

<script type="text/javascript">
//<![CDATA[
   document.write('<s'+'cript type="text/javascript" src="http://ad.altervista.org/js.ad/size=0X1/r='+new Date().getTime()+'"><\/s'+'cript>');

//]]>
</script>

<div id="bodybg">
	<div id="wrapper">
		<div id="shad-l">
			<div id="shad-r">
				<div id="header">

					<div id="head-l">
						<div id="head-r">
							<div id="userarea" class="smalltext"><p class="{S_CONTENT_FLOW_END}<!-- IF S_USER_LOGGED_IN --> rightside<!-- ENDIF -->"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></p>

							</div>
							<div id="" class="smalltext">
						<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->
			<div id="search-box">

				<form action="{U_SEARCH}" method="post" id="search">
				<fieldset>
					<input name="keywords" id="keywords" type="text" maxlength="128" title="{L_SEARCH_KEYWORDS}" class="inputbox search" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
					<input class="button2" value="{L_SEARCH}" type="submit" /><br />
					<a href="{U_SEARCH}" title="{L_SEARCH_ADV_EXPLAIN}">{L_SEARCH_ADV}</a> {S_SEARCH_HIDDEN_FIELDS}
				</fieldset>
				</form>
			</div>

		<!-- ENDIF -->


							</div>
						<a href="{U_INDEX}" title=""><span id="logo">&nbsp;</span></a>
						</div>
					</div>
				</div>
				<div id="toolbar">
					
		<div id="topmenu">

			<ul>
			<li><a href="{U_PORTAL}"><span>{L_PORTAL}</span></a></li>
                                                <li><a class="current"  href="{U_INDEX}"><span>{L_INDEX}</span></a></li>
			<li><a href="{U_PROFILE}"><span>{L_PROFILE}</span></a></li>
			<li><a href="{U_SEARCH}"><span>{L_SEARCH}</span></a></li>
			<li><a href="{U_FAQ}"><span>{L_FAQ}</span></a></li>
			<li><a href="{U_MEMBERLIST}"><span>{L_MEMBERLIST}</span></a></li>
			<li><a href="{U_REGISTER}"><span>{L_REGISTER}</span></a></li>
				<li><a href="{U_LOGIN_LOGOUT}"><span>{L_LOGIN_LOGOUT}</span></a></li>
			<li><a href="#"><span></span></a></li>

			<li><a href="#"><span></span></a></li>
			</ul>
		</div>
				</div>
<div id="bodyarea">
<br /><br />
<div class="navbar">
<div class="inner"><span class="corners-top"><span></span></span>
</div>
 			<ul class="linklist navlinks">
        				<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>

        
        				<li class="rightside"><a href="#" onclick="fontsizeup(); return false;" onkeypress="fontsizeup(); return false;" class="fontsize" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a></li>
        
        				<!-- IF U_EMAIL_TOPIC --><li class="rightside"><a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}" class="sendemail">{L_EMAIL_TOPIC}</a></li><!-- ENDIF -->
        				<!-- IF U_EMAIL_PM --><li class="rightside"><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}" class="sendemail">{L_EMAIL_PM}</a></li><!-- ENDIF -->
        				<!-- IF U_PRINT_TOPIC --><li class="rightside"><a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p" class="print">{L_PRINT_TOPIC}</a></li><!-- ENDIF -->
        				<!-- IF U_PRINT_PM --><li class="rightside"><a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p" class="print">{L_PRINT_PM}</a></li><!-- ENDIF -->
        			</ul>

        <!-- IF not S_USER_LOGGED_IN and not S_IS_BOT and S_LOGIN_ANYWHERE and not AUTO_REFRESH -->
			<form method="post" action="{S_LOGIN_ANYWHERE}">
				<fieldset class="quick-login" style="float:left;position:relative;white-space:nowrap">
					<label for="prime_login_username">Login:</label>&nbsp;<input tabindex="100" type="text" name="username" id="prime_login_username" size="10" class="inputbox" style="min-width:100px" title="{L_USERNAME}" />  
					<label for="prime_login_password">HasÅ?o:</label>&nbsp;<input tabindex="101" type="password" name="password" id="prime_login_password" size="10" class="inputbox" title="{L_PASSWORD}" />
					<!-- IF S_AUTOLOGIN_ENABLED --><label for="prime_login_autologin"><input tabindex="102" type="checkbox" name="autologin" id="prime_login_autologin" /> {L_PRIME_REMEMBER_ME}</label><!-- ENDIF -->
					<input tabindex="103" type="submit" name="login" value="{L_LOGIN}" class="button2" />

				</fieldset>
			</form>
			<!-- ENDIF -->
        			<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
        			<ul class="linklist leftside">
        				<li class="icon-ucp">
        					<a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u">{L_PROFILE}</a>
        						<!-- IF S_DISPLAY_PM --> (<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>)<!-- ENDIF --> &bull; 
        					<a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>

        					<!-- IF U_RESTORE_PERMISSIONS --> &bull;
        					<a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a>
        					<!-- ENDIF -->
        				</li>
        			</ul>
        			<!-- ENDIF -->

        			<ul class="linklist rightside">

<li class="icon-search"><a href="../search.php" title="Szukajka">Wyszukiwarka</a></li>
        				<!-- IF not S_IS_BOT -->
        					<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
        					<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
        					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
        				
        		</ul>

        
        			<span class="corners-bottom"><span></span></span></div>
<!-- ENDIF -->
        
      
        
        	<a name="start_here"></a>
        	<div id="page-body">


<div style="margin: 0;  position: fixed;  top: 0px;  left: 0px;  right: auto;">
       <img src="http://playstationuser.altervista.org/images/barra.php" />
        </div>

		
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) --> 
        		<div id="message" class="rules">
        			<div class="inner"><span class="corners-top"><span></span></span>
        				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
        			<span class="corners-bottom"><span></span></span></div>

        		</div>
        		<!-- ENDIF -->
</div>			

Avatar utente
Carlo
Amministratore
Amministratore
Messaggi: 9957
Iscritto il: 19/04/2009, 10:24
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 7.1.0
Database: MySQL(i) 10.0.27-MariaDB-cll-lve
Località: Puglia
Contatta:

Re: problem con nome pagina

Messaggio da Carlo » 29/12/2009, 19:20

Trova questa riga:

Codice: Seleziona tutto

<li><a href="{U_PORTAL}"><span>{L_PORTAL}</span></a></li>
e sostituiscila con:

Codice: Seleziona tutto

<li><a href="{U_PORTAL}"><span>Home</span></a></li>
MODs | Stili | Traduzioni MOD
Ogni MP contenente una richiesta di supporto verrà ignorato.

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: problem con nome pagina

Messaggio da xX_Simon_Xx » 29/12/2009, 19:28

grazie 1000000000

Rispondi

Torna a “Supporto MODs”

Chi c’è in linea

Visitano il forum: Nessuno e 70 ospiti