help me
52 2013-01-27 10:39
Topic: i have problem this (3 replies, posted in PunBB 1.4 troubleshooting)
place help me
53 2013-01-25 16:29
Re: how to Private Messaging......?? (7 replies, posted in PunBB 1.4 additions)
i it know write messages if i change
but i have messages only one user prohibition
54 2013-01-25 16:17
Re: how to laste 10 topic ..........??? (7 replies, posted in PunBB 1.4 additions)
this is forum fo 1.2 lain
but how i can for 1.4 make ?? don't ribbon
55 2013-01-24 16:43
Re: how to Private Messaging......?? (7 replies, posted in PunBB 1.4 additions)
i do question
I don't know there is extension exist or nay
but i say if hurray
thanks for you
56 2013-01-23 21:23
Topic: how to laste 10 topic ..........??? (7 replies, posted in PunBB 1.4 additions)
how to laste 10 topic ambition for 1.4
57 2013-01-23 20:13
Re: how to Private Messaging......?? (7 replies, posted in PunBB 1.4 additions)
yes
but I have Private Messaging one member don't lively only one member
58 2013-01-23 18:23
Topic: how to Private Messaging......?? (7 replies, posted in PunBB 1.4 additions)
hi dears
how to Private Messaging one member don't lively
extension exist it action do??
59 2013-01-23 08:15
Re: i wont style (2 replies, posted in PunBB 1.4 additions)
فهرمووو براكهم ئهوستایله داگره كوردیه
زۆر جوانه
http://www.webchinupload.com/files/Kurd … wan_95.zip
60 2013-01-23 07:00
Re: haw to extension 1.3 must for1.4 (4 replies, posted in PunBB 1.4 additions)
Wow very nice prosperous now no problem getoff
very very thank for you hand fine
61 2013-01-22 21:04
Re: haw to extension 1.3 must for1.4 (4 replies, posted in PunBB 1.4 additions)
I examination but don't he's allege not encourage
disproportionate
you can he's action
say me editor what do
manifest.xml anti spam
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">
<!--
/**
* Adds CAPTCHA to the register, login and guest post form
*
* @copyright Copyright (C) 2008 PunBB, partially based on code by Jamie Furness
* @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
* @package pun_antispam
*/
-->
<extension engine="1.0">
<id>pun_antispam</id>
<title>Antispam System</title>
<version>1.2</version>
<description>Adds CAPTCHA to the register, login and guest post form.</description>
<author>PunBB Development Team</author>
<minversion>1.3dev</minversion>
<maxtestedon>1.3</maxtestedon>
<install><![CDATA[
if(!function_exists('imagejpeg'))
message('This extension requires the <a href="http://www.php.net/gd">PHP GD library</a> to be installed.');
if (!isset($forum_config['o_pun_antispam_captcha_register']))
{
$query = array(
'INSERT' => 'conf_name, conf_value',
'INTO' => 'config',
'VALUES' => '\'o_pun_antispam_captcha_register\', \'1\''
);
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
if (!isset($forum_config['o_pun_antispam_captcha_guestpost']))
{
$query = array(
'INSERT' => 'conf_name, conf_value',
'INTO' => 'config',
'VALUES' => '\'o_pun_antispam_captcha_guestpost\', \'1\''
);
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
if (!isset($forum_config['o_pun_antispam_captcha_login']))
{
$query = array(
'INSERT' => 'conf_name, conf_value',
'INTO' => 'config',
'VALUES' => '\'o_pun_antispam_captcha_login\', \'1\''
);
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
if (!isset($forum_config['o_pun_antispam_captcha_restorepass']))
{
$query = array(
'INSERT' => 'conf_name, conf_value',
'INTO' => 'config',
'VALUES' => '\'o_pun_antispam_captcha_restorepass\', \'1\''
);
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
]]></install>
<uninstall><![CDATA[
$query = array(
'DELETE' => 'config',
'WHERE' => 'conf_name IN (\'o_pun_antispam_captcha_register\', \'o_pun_antispam_captcha_guestpost\', \'o_pun_antispam_captcha_login\', \'o_pun_antispam_captcha_restorepass\')'
);
$forum_db->query_build($query) or error(__FILE__, __LINE__);
]]></uninstall>
<hooks>
<hook id="rg_start,aop_start,li_start,po_start"><![CDATA[
// Load the captcha language file
if (file_exists($ext_info['path'].'/lang/'.$forum_user['language'].'/'.$ext_info['id'].'.php'))
require $ext_info['path'].'/lang/'.$forum_user['language'].'/'.$ext_info['id'].'.php';
else
require $ext_info['path'].'/lang/English/'.$ext_info['id'].'.php';
]]></hook>
<hook id="rg_register_form_submitted"><![CDATA[
if ($forum_config['o_pun_antispam_captcha_register'] == '1')
{
session_start();
if (empty($_SESSION['pun_antispam_confirmed_user']))
{
if ((empty($_SESSION['pun_antispam_text']) || strcasecmp(trim($_POST['pun_antispam_input']), $_SESSION['pun_antispam_text']) !== 0))
$errors[] = $lang_pun_antispam['Invalid Text'];
else
$_SESSION['pun_antispam_confirmed_user'] = 1;
}
$_SESSION['pun_antispam_text'] = '';
}
]]></hook>
<hook id="rg_register_pre_add_user"><![CDATA[
$_SESSION['pun_antispam_confirmed_user'] = 0;
]]></hook>
<hook id="rg_register_pre_language"><![CDATA[
if ($forum_config['o_pun_antispam_captcha_register'] == '1' && empty($_SESSION['pun_antispam_confirmed_user']))
{
?>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box text required">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_pun_antispam['Captcha'] ?> <em><?php echo $lang_common['Required'] ?></em></span> <small><?php echo $lang_pun_antispam['Captcha Info'] ?></small></label><br />
<span class="fld-input"><input id="fld<?php echo $forum_page['fld_count'] ?>" type="text" name="pun_antispam_input" value="" size="20" maxlength="10" /> <img src="<?php echo $ext_info['url'].'/image.php?'.md5(time()) ?>" alt="" /></span>
</div>
</div>
<?php
}
]]></hook>
<hook id="li_login_form_submitted"><![CDATA[
session_start();
if ($forum_config['o_pun_antispam_captcha_login'] == '1' && (isset($_SESSION['pun_antispam_logins']) && $_SESSION['pun_antispam_logins'] > 5) && (empty($_SESSION['pun_antispam_text']) || strcasecmp(trim($_POST['pun_antispam_input']), $_SESSION['pun_antispam_text']) !== 0))
$errors[] = $lang_pun_antispam['Invalid Text'];
$_SESSION['pun_antispam_text'] = '';
]]></hook>
<hook id="li_login_pre_auth_message"><![CDATA[
if ($authorized && empty($errors))
$_SESSION['pun_antispam_logins'] = 0;
]]></hook>
<hook id="li_login_pre_remember_me_checkbox"><![CDATA[
if ($forum_config['o_pun_antispam_captcha_login'] == '1')
{
if (empty($errors))
session_start();
// Output CAPTCHA if first attempts failed
if (!isset($_SESSION['pun_antispam_logins']))
$_SESSION['pun_antispam_logins'] = 1;
else
$_SESSION['pun_antispam_logins']++;
if ($_SESSION['pun_antispam_logins'] > 5)
{
?>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box text required">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_pun_antispam['Captcha'] ?> <em><?php echo $lang_common['Required'] ?></em></span> <small><?php echo $lang_pun_antispam['Captcha Info'] ?></small></label><br />
<span class="fld-input"><input id="fld<?php echo $forum_page['fld_count'] ?>" type="text" name="pun_antispam_input" value="" size="20" maxlength="10" /> <img src="<?php echo $ext_info['url'].'/image.php?'.md5(time()) ?>" alt="" /></span>
</div>
</div>
<?php
}
}
]]></hook>
<hook id="li_forgot_pass_selected"><![CDATA[
if (isset($_POST['form_sent']))
{
session_start();
if ($forum_config['o_pun_antispam_captcha_restorepass'] == '1' && (empty($_SESSION['pun_antispam_text']) || strcasecmp(trim($_POST['pun_antispam_input']), $_SESSION['pun_antispam_text']) !== 0))
$errors[] = $lang_pun_antispam['Invalid Text'];
$_SESSION['pun_antispam_text'] = '';
}
]]></hook>
<hook id="li_forgot_pass_pre_group_end"><![CDATA[
if ($forum_config['o_pun_antispam_captcha_restorepass'] == '1')
{
?>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box text required">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_pun_antispam['Captcha'] ?> <em><?php echo $lang_common['Required'] ?></em></span> <small><?php echo $lang_pun_antispam['Captcha Info'] ?></small></label><br />
<span class="fld-input"><input id="fld<?php echo $forum_page['fld_count'] ?>" type="text" name="pun_antispam_input" value="" size="20" maxlength="10" /> <img src="<?php echo $ext_info['url'].'/image.php?'.md5(time()) ?>" alt="" /></span>
</div>
</div>
<?php
}
]]></hook>
<hook id="po_end_validation"><![CDATA[
if ($forum_user['is_guest'] && $forum_config['o_pun_antispam_captcha_guestpost'] == '1')
{
session_start();
if (empty($_SESSION['pun_antispam_confirmed_user']))
{
if ((empty($_SESSION['pun_antispam_text']) || strcasecmp(trim($_POST['pun_antispam_input']), $_SESSION['pun_antispam_text']) !== 0))
{
if (!isset($_POST['preview']))
$errors[] = $lang_pun_antispam['Invalid Text'];
}
else
$_SESSION['pun_antispam_confirmed_user'] = 1;
}
$_SESSION['pun_antispam_text'] = '';
// Post is to be written to DB, ask CAPTCHA for the next posting
if (empty($errors) && !isset($_POST['preview']))
$_SESSION['pun_antispam_confirmed_user'] = 0;
}
]]></hook>
<hook id="po_pre_guest_info_fieldset_end"><![CDATA[
if ($forum_config['o_pun_antispam_captcha_guestpost'] == '1' && empty($_SESSION['pun_antispam_confirmed_user']))
{
?>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box text required">
<label for="fld<?php echo ++$forum_page['fld_count'] ?>"><span><?php echo $lang_pun_antispam['Captcha'] ?> <em><?php echo $lang_common['Required'] ?></em></span> <small><?php echo $lang_pun_antispam['Captcha Info'] ?></small></label><br />
<span class="fld-input"><input id="fld<?php echo $forum_page['fld_count'] ?>" type="text" name="pun_antispam_input" value="" size="20" maxlength="10" /> <img src="<?php echo $ext_info['url'].'/image.php?'.md5(time()) ?>" alt="" /></span>
</div>
</div>
<?php
}
]]></hook>
<hook id="aop_features_avatars_fieldset_end"><![CDATA[
$forum_page['group_count'] = $forum_page['item_count'] = 0;
?>
<div class="content-head">
<h2 class="hn"><span><?php echo $lang_pun_antispam['Captcha admin head'] ?></span></h2>
</div>
<div class="ct-box"><p><?php echo $lang_pun_antispam['Captcha admin info'] ?></p></div>
<fieldset class="frm-group group<?php echo ++$forum_page['group_count'] ?>">
<legend class="group-legend"><span><?php echo $lang_pun_antispam['Captcha admin legend'] ?></span></legend>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box checkbox">
<span class="fld-input"><input type="checkbox" id="fld<?php echo ++$forum_page['fld_count'] ?>" name="form[pun_antispam_captcha_register]" value="1"<?php if ($forum_config['o_pun_antispam_captcha_register'] == '1') echo ' checked="checked"' ?> /></span>
<label for="fld<?php echo $forum_page['fld_count'] ?>"><span><?php echo $lang_pun_antispam['Captcha admin legend'] ?></span><?php echo $lang_pun_antispam['Captcha registrations info'] ?></label>
</div>
</div>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box checkbox">
<span class="fld-input"><input type="checkbox" id="fld<?php echo ++$forum_page['fld_count'] ?>" name="form[pun_antispam_captcha_login]" value="1"<?php if ($forum_config['o_pun_antispam_captcha_login'] == '1') echo ' checked="checked"' ?> /></span>
<label for="fld<?php echo $forum_page['fld_count'] ?>"> <?php echo $lang_pun_antispam['Captcha login info'] ?></label>
</div>
</div>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box checkbox">
<span class="fld-input"><input type="checkbox" id="fld<?php echo ++$forum_page['fld_count'] ?>" name="form[pun_antispam_captcha_guestpost]" value="1"<?php if ($forum_config['o_pun_antispam_captcha_guestpost'] == '1') echo ' checked="checked"' ?> /></span>
<label for="fld<?php echo $forum_page['fld_count'] ?>"> <?php echo $lang_pun_antispam['Captcha guestpost info'] ?></label>
</div>
</div>
<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>">
<div class="sf-box checkbox">
<span class="fld-input"><input type="checkbox" id="fld<?php echo ++$forum_page['fld_count'] ?>" name="form[pun_antispam_captcha_restorepass]" value="1"<?php if ($forum_config['o_pun_antispam_captcha_restorepass'] == '1') echo ' checked="checked"' ?> /></span>
<label for="fld<?php echo $forum_page['fld_count'] ?>"> <?php echo $lang_pun_antispam['Captcha reset info'] ?></label>
</div>
</div>
</fieldset>
<?php
// Reset fieldset counter
$forum_page['set_count'] = 0;
]]></hook>
<hook id="aop_features_validation"><![CDATA[
if (!isset($form['pun_antispam_captcha_register']) || $form['pun_antispam_captcha_register'] != '1') $form['pun_antispam_captcha_register'] = '0';
if (!isset($form['pun_antispam_captcha_login']) || $form['pun_antispam_captcha_login'] != '1') $form['pun_antispam_captcha_login'] = '0';
if (!isset($form['pun_antispam_captcha_guestpost']) || $form['pun_antispam_captcha_guestpost'] != '1') $form['pun_antispam_captcha_guestpost'] = '0';
if (!isset($form['pun_antispam_captcha_restorepass']) || $form['pun_antispam_captcha_restorepass'] != '1') $form['pun_antispam_captcha_restorepass'] = '0';
]]></hook>
<hook id="co_common"><![CDATA[
$pun_extensions_used = array_merge(isset($pun_extensions_used) ? $pun_extensions_used : array(), array($ext_info['id']));
]]></hook>
<hook id="ft_about_end" priority="10"><![CDATA[
if (!defined('PUN_EXTENSIONS_USED') && !empty($pun_extensions_used))
{
define('PUN_EXTENSIONS_USED', 1);
echo '<p id="extensions-used">Currently used extensions: '.implode(', ', $pun_extensions_used).'. Copyright © 2008 <a href="http://punbb.informer.com/">PunBB</a></p>';
}
]]></hook>
</hooks>
</extension>
62 2013-01-22 17:46
Topic: haw to extension 1.3 must for1.4 (4 replies, posted in PunBB 1.4 additions)
haw to extension 1.3 must for1.4 ???
extension exist he action do ???
63 2013-01-22 17:02
Re: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
walla I don't understand you too
adequacy no problem very thank you
64 2013-01-22 16:01
Re: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
no contain language kurdish
I mean haw to download for computer
65 2013-01-22 12:37
Re: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
but Idon't know free depression haw to depression extension
66 2013-01-22 12:13
Re: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
sorry i don't know english
but this money
this don't cater for ?!!
very thank you for extension
67 2013-01-22 11:42
Re: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
I cann't plugin depression
you can?? if not duty
but Ican plugin founder for extension fancy_stop_spam
notably must fancy_stop_spam to 1.4 ??
soooorry
68 2013-01-22 10:58
Re: help me (2 replies, posted in PunBB 1.4 additions)
yes me mean but I english not good
I know but i like here air
ok no problem
thank you
sorry nevermore don't try again
69 2013-01-22 09:51
Topic: please i wont anti spam (25 replies, posted in PunBB 1.4 additions)
please this is anti spam exist
if give me very thanks
70 2013-01-22 09:26
Topic: help me (2 replies, posted in PunBB 1.4 additions)
hi..
haw to Last visit holdoffice for 1.4
71 2013-01-20 17:06
Re: helpe me (6 replies, posted in PunBB 1.4 additions)
very thank you
sorry do you painstaking
72 2013-01-20 14:54
Re: helpe me (6 replies, posted in PunBB 1.4 additions)
but by me donot apparent see you
how to applying me
73 2013-01-20 13:13
Re: helpe me (6 replies, posted in PunBB 1.4 additions)
thank you
but i have not those Downloads
how to Downloads ?? please
74 2013-01-20 07:26
Topic: helpe me (6 replies, posted in PunBB 1.4 additions)
Iwont Extension online today 1.4
Extension 1.3 must not woof 1.4
75 2013-01-19 15:13
Re: i wont style (2 replies, posted in PunBB 1.4 additions)
i have no English
him words in dictionary beat off
i have no partial style
Thank you very much
very nice