Pastebin in iframe

Area dedicata a tutte le MODs per phpBB 3.0.X
Rispondi
Avatar utente
Lucky
Utente
Utente
Messaggi: 159
Iscritto il: 15/10/2012, 20:33
Link del Forum: http://www.portalxl.eu
Località: Bari
Contatta:

Pastebin in iframe

Messaggio da Lucky »

Piccola modifica che consente di creare una pagina con pastabin incorporato.
Copia e incolla il tuo codice con Pastebin

Istruzioni

Create un file pastebin.php che invierete nella root del forum, al suo interno aggiungete:

Codice: Seleziona tutto

<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);

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

page_header('Pastebin - Copia e incolla il tuo codice con Pastebin');

$template->set_filenames(array(
'body' => 'pastebin_body.html',
));

make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
create un file che chiamerete pastebin_body.html e posizionatelo in styles/prosilver/template al suo interno, aggiungete questo codice:

Codice: Seleziona tutto

<!-- INCLUDE overall_header.html -->

<title>Pastebin</title>

<center><div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<div class="content">     
<div style="text-align: center;padding: 10px;">
<iframe id="pixlr" type="text/html" width="850px" height="700px" src="http://pastebin.com/index" frameborder="0"> </iframe>
</div>
</div>
          
<br>
          
<div class="copyright"><font style="margin: 0px; padding: 0px; color: rgb(83, 100, 130); font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 15px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); "><font style="margin: 0px; padding: 0px; color: rgb(83, 100, 130); font-family: 'Lucida Grande', Verdana, Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 15px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); ">Custom Page Pastebin by <a href="http://www.portalxl.eu/">&copy; Portal XL Italia</a></font></font></body>





<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
Aprite il file con vostroforum/pastebin.php

Esempio
pastebin.jpg
Demo
Non hai i permessi necessari per visualizzare i file allegati in questo messaggio.
Rispondi