Ninja Text Generator

Agosto 27, 2007 on 12:54 pm | In Cazzate, Myspace, Web, phpBB | No Comments

Ninja!

Ecco un altro generatore di testi dove un ninja scrive cio che hai richiesto nel form del sito.


Usarlo è semplicissimo basta andare sul sito Ninja Text Generator nel form dove c’e’ scritto ENTER YOUR TEXT, inserite il testo che desiderate e una volta finito cliccate su GENERATE.

Vi dara’ una nuova pagina con il codice HTML e il codice phpBB per i forum.!

Popularity: 5% [?]

AntispamBOT - phpBB

Maggio 14, 2007 on 7:00 pm | In phpBB | No Comments

Riprendo un post di GxWare.org che riportava un “hack” di phpbb per evitare la registrazione di Bot “spammosi” che riescono a superare anche la registrazione visiva (il codice).

##############################################################
## Mod Title: Visual Confirm Secure
## Mod Version: 1.0.0
## Date : 14/04/2006
## Author: ceccus http://www.pctrio.com
## Description: -change suffix “agreed” in
##
##
## Installation Level: easy
## Installation Time: 2-5 Minutes
## Files To Edit: Includes/constants.php
## Admin/admin_users.php
## Includes/usercp_Avatar.php
## Includes/usercp_register.php
##############################################################
## History:

##############################################################
## Before Adding This MOD To Your Forum,
## You Should Back Up All Files Related To This MOD
##############################################################

#
#—–[ OPEN ]————————————————
#
Constants.php

#
#—–[ ACTION Find ]—————————————–
#
// Table names

#
#—–[ ADD BEFORE WITH ]—————————————-
#
// Visual Confirm
define(’AGREED’,'xyz-agreed’); //where xyz is all value that you should - change for each User or Server Web

#
#—–[ OPEN ]————————————————
#
Admin/Admin_users.php

#
#—–[ ACTION Find ]—————————————–
else
{
$s_hidden_fields = ‘

‘;
$s_hidden_fields .= ‘

‘;#
#—–[ ACTION Replace With ]———————————
#
else
{
$s_hidden_fields = ‘
‘;
$s_hidden_fields .= ‘

‘;#
#—–[ ACTION Find ]—————————————–
$coppa = ( ( !$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa'] ) || $mode == “register”) ? 0 : TRUE;$s_hidden_fields = ‘

‘;
$s_hidden_fields .= ‘

‘;#
#—–[ ACTION Replace With ]———————————
#
$coppa = ( ( !$HTTP_POST_VARS['coppa'] && !$HTTP_GET_VARS['coppa'] ) || $mode == “register”) ? 0 : TRUE;$s_hidden_fields = ‘

‘; // modcec
$s_hidden_fields .= ‘

‘;#
#—–[ OPEN ]————————————————
#
Include/Usercp_avatar.php#
#—–[ ACTION Find ]—————————————–
$params = array(’coppa’, ‘user_id’, ‘username’, ‘email’, ‘current_email’, ‘cur_password’, ‘new_password’, ‘password_confirm’, ‘icq’, ‘aim’, ‘msn’, ‘yim’, ‘website’, ‘location’, ‘occupation’, ‘interests’, ’signature’, ‘viewemail’, ‘notifypm’, ‘popup_pm’, ‘notifyreply’, ‘attachsig’, ‘allowhtml’, ‘allowbbcode’, ‘allowsmilies’, ‘hideonline’, ’style’, ‘language’, ‘timezone’, ‘dateformat’);

$s_hidden_vars = ‘

‘;#
#—–[ ACTION Replace With ]———————————
#
$params = array(’coppa’, ‘user_id’, ‘username’, ‘email’, ‘current_email’, ‘cur_password’, ‘new_password’, ‘password_confirm’, ‘icq’, ‘aim’, ‘msn’, ‘yim’, ‘website’, ‘location’, ‘occupation’, ‘interests’, ’signature’, ‘viewemail’, ‘notifypm’, ‘popup_pm’, ‘notifyreply’, ‘attachsig’, ‘allowhtml’, ‘allowbbcode’, ‘allowsmilies’, ‘hideonline’, ’style’, ‘language’, ‘timezone’, ‘dateformat’);$s_hidden_vars = ‘

‘;#
#—–[ OPEN ]————————————————
#
Include/Usercp_register.php#
#—–[ ACTION Find ]—————————————–
#
$template->assign_vars(array(
‘REGISTRATION’ => $lang['Registration'],
‘AGREEMENT’ => $lang['Reg_agreement'],
“AGREE_OVER_13″ => $lang['Agree_over_13'],
“AGREE_UNDER_13″ => $lang['Agree_under_13'],
‘DO_NOT_AGREE’ => $lang['Agree_not'],

“U_AGREE_OVER13″ => append_sid(”profile.$phpEx?mode=register&agreed=true”),
“U_AGREE_UNDER13″ => append_sid(”profile.$phpEx?mode=register&agreed=true&coppa=true”))
);

#
#—–[ ACTION Replace With ]———————————
#
$template->assign_vars(array(
‘REGISTRATION’ => $lang['Registration'],
‘AGREEMENT’ => $lang['Reg_agreement'],
“AGREE_OVER_13″ => $lang['Agree_over_13'],
“AGREE_UNDER_13″ => $lang['Agree_under_13'],
‘DO_NOT_AGREE’ => $lang['Agree_not'],

“U_AGREE_OVER13″ => append_sid(”profile.$phpEx?mode=register&”.AGREED.”=true”), //modcec
“U_AGREE_UNDER13″ => append_sid(”profile.$phpEx?mode=register&”.AGREED.”=true&coppa=true”))
);

#
#—–[ ACTION Find ]—————————————–
#
if ( $mode == ‘register’ && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
{
include($phpbb_root_path . ‘includes/page_header.’.$phpEx);

show_coppa();

include($phpbb_root_path . ‘includes/page_tail.’.$phpEx);
}

#
#—–[ ACTION Replace With ]———————————
#
if ( $mode == ‘register’ && !isset($HTTP_POST_VARS[AGREED]) && !isset($HTTP_GET_VARS[AGREED]) )
{
include($phpbb_root_path . ‘includes/page_header.’.$phpEx);

show_coppa();

include($phpbb_root_path . ‘includes/page_tail.’.$phpEx);
}

#
#—–[ ACTION Find ]—————————————–
#
$s_hidden_fields = ‘

‘;
if( $mode == ‘editprofile’ )
{
$s_hidden_fields .= ‘

‘;
//
// Send the users current email address. If they change it, and account activation is turned on
// the user account will be disabled and the user will have to reactivate their account.
//
$s_hidden_fields .= ‘

‘;
}#
#—–[ ACTION Replace With ]———————————
#
$s_hidden_fields = ‘
‘;
if( $mode == ‘editprofile’ )
{
$s_hidden_fields .= ‘

‘;
//
// Send the users current email address. If they change it, and account activation is turned on
// the user account will be disabled and the user will have to reactivate their account.
//
$s_hidden_fields .= ‘

‘;
}#
#—–[ SAVE/CLOSE ALL FILES ]———————————-
#

Se non sapete installare un “hack” di phpbb potete seguire questa guida GUIDA IN ITALIANO

Popularity: 4% [?]

Topics Anywhere - Ultime Dal Forum

Maggio 13, 2007 on 1:07 pm | In phpBB | 2 Comments


Volete avere nel vostro sito magari nella home page uno scrtipt che ti pasta gli ultimi post?

  • Scarica Topics Anywhere 1.11.0
  • Scarica il Pacchetto in ITALIANO
  • Perfetto Continuiamo…

    Scompattate il file topics_anywhere_1110 e uppate i vari file nelle seguenti cartelle..

  • Uppate topics_anywhere.php Nella Root della cartella del vostro forum.
  • Uppate Il file topics_anywhere_body.tpl Nella Cartella templates/subSilver/
  • Uppate il file topics_anywhere_result.tpl Nella Cartella templates/subSilver/
  • Uppate Il file topics_anywhere_result_rss.tpl Nella Cartella templates/subSilver/
  • Lasciate perdere il file che trovate nella cartella Language, perchè noi come ben vi ricordate abbiamo scaricato quello italiano quindi ora upperemo quel file li.Scompattate il rar e uppate il file lang_topics_anywhere.php nella cartella language/lang_italian/lang_topics_anywhere.phpPerfetto se tutto è andato ok non dovrebbero esserci errori..

    Ora puntate nel vostro Browser l’url http://www.sito.com/forum/topics_anywhere.php e vi apparira’ una schermata dove scegliere vari parametri.. tipo quanti messaggi far vedere,che thread far vedere ecc… una volta scelte le vostre opzioni preferite date l’ok e lo script vi dara’ una pagina con un codice HTML da uppare nella vostra Home page.

    Ovviamente se siete un po esperti di Css potete modificarlo un po per esempio incorniciandolo tra un div.. ecco un esempio di come lo uso io andate su www.s0ka.com e potete ammirarlo…

    Popularity: 13% [?]

    Rss su phpBB

    Maggio 8, 2007 on 9:59 pm | In phpBB | No Comments

    Volete inserire gli RSS sul vostro forum phpbb?

    Perfetto allora scaricate questo File

    Scompattatelo, e uppate:

    rss.php Nella root del vostro forum (es. www.sito.com/forum )
    rss_body.tpl Nella cartella del vostro template, se non avete cambiato template 99 su 100 è SuBSilver.

    Perfetto ora avete anche nel vostro forum gli RSS, puntando su (es. www.sito.com/forum/rss.php)

    Popularity: 1% [?]

    Aggiornare phpBB

    Maggio 7, 2007 on 4:59 pm | In phpBB | 2 Comments


    Molti una volta installato il mitico forum phpBB si chiederanno..Ma come lo aggiorno?

    Ecco qua una semplice guida su come aggiornarlo.

    1)Andare sul sito www.phpbb.com e scaricate questo phpBB 2.0.XX Patch File Only ( al posto di XX ci sara’ la versione piu’ recente ).
    2)Una volta scaricato scompattate il rar e uppate nella home della cartella dove avete uppate il vostro forum (es. www.sito.com/forum )
    3)Finito di uppare dovete puntare su (es. www.sito.com/forum/install/update_to_latest.php.
    4)Se tutto è andato a buon fine non vi dara’ nessun errore.
    5)Cancellate la cartella contrib e install
    6)Fine, avete aggiornato il vostro phpBB.

    Saluti

    Popularity: 11% [?]

    Powered by WordPress and by s0ka.com & goFFi Top