You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 1 of 65)
thanks , so the solution was to add/change install.php
// Check if InnoDB is available
if ($db_type == 'mysql_innodb' || $db_type == 'mysqli_innodb')
{
$result = $db->query('SELECT SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE = \'InnoDB\'');
list ($result) = $db->fetch_row($result);
if (!in_array($result, array('YES', 'DEFAULT')))
error($lang_install['InnoDB off']);
}
from
// Check InnoDB support in DB
if (in_array($db_type, array('mysql_innodb', 'mysqli_innodb')))
{
$result = $forum_db->query('SHOW VARIABLES LIKE \'have_innodb\'');
$row = $forum_db->fetch_assoc($result);
if (!$row || !isset($row['Value']) || strtolower($row['Value']) != 'yes')
{
error($lang_install['MySQL InnoDB Not Supported']);
}
}
based on
http://stackoverflow.com/questions/1051 … 2#10517292
@sanchell
1) are you using extensions that may be interferring?
2) instead of global mail to all users, you could post message
/admin/settings.php?section=announcements
while you sort out the issue... ?
This part in the .next include/parser.php (line 803)
$text = preg_replace($pattern, $replace, $text);
still throws
Deprecated: preg_replace() [function.preg-replace.php]: The /e modifier is deprecated, use preg_replace_callback instead in
at me...
any idea, anyone?
EDIT:
It was
Fancy Video Tag 0.4.9
that was causing the problem.
Now solved...
I was just pm'ed about this code I had on my website (published end of 2011)
seems it doesn't work
if someone could get it to work please feel free to publish!
<extension engine="1.0">
<id>ignore_user</id>
<title>Ignore User</title>
<version>0.2</version>
−
<description>
Allows users to ignore posts of other users. Links are added to the post header to ignore and to ignored posts for un-ignore.
Changes for v0.2 - removed user information for ignored users.
</description>
<author>eliot</author>
<minversion>1.3 Beta</minversion>
<maxtestedon>1.3 Beta</maxtestedon>
−
<install>
if (!$forum_db->table_exists($forum_db->prefix.'ignore_users'))
{
$sql = 'CREATE TABLE '.$forum_db->prefix.'ignore_users (
user_id INT(10) UNSIGNED NOT NULL,
ignore_user_id INT(10) UNSIGNED NOT NULL ,
PRIMARY KEY (user_id,ignore_user_id)
)' ;
$forum_db->query($sql) or error(__FILE__, __LINE__);
}
</install>
−
<uninstall>
// Uninstall code here
$forum_db->query('DROP TABLE '.$forum_db->prefix.'ignore_users');
</uninstall>
−
<hooks>
−
<hook id="vt_qr_get_posts">
// Hook code here
$query['SELECT'] .= ',iu.ignore_user_id as ignore_user_id';
$query['JOINS'][] =array(
'LEFT JOIN' => 'ignore_users AS iu',
'ON' => 'p.poster_id = iu.ignore_user_id AND iu.user_id ='.$forum_user['id']);
</hook>
−
<hook id="vt_start">
if (file_exists($ext_info['path'].'/lang/'.$forum_user['language'].'.php'))
require $ext_info['path'].'/lang/'.$forum_user['language'].'.php';
else
require $ext_info['path'].'/lang/English.php';
</hook>
−
<hook id="vt_row_pre_display">
// Hook code here
if(!$forum_user['is_guest'])
{
if($cur_post['ignore_user_id'])
{
$forum_page['message']['message']= '<span id="ignore_msg">'.$lang_ignore['ignore_message'].'<a href="'.$ext_info['path'].'/ignore_funcs.php?type=unignore&id='.$cur_post['poster_id'].'&redir='.forum_link($forum_url['post'], $cur_post['id']).'" >'.$lang_ignore['ignore_click'].'</a>'.$lang_ignore['ignore_click_end'].'</span>';
$forum_page['message']['edited'] = '';
$forum_page['message']['signature']= '';
$forum_page['user_ident']['avatar']='';
$forum_page['user_ident']['usertitle']='';
$forum_page['user_ident']['status']='';
$forum_page['user_status']='';
if ($cur_post['location'] != '')
$forum_page['user_info']['from'] ='';
$forum_page['user_info']['registered']='';
$forum_page['user_info']['posts']='';
$forum_page['user_info']['ignore'] = '<li><span><a href="'.$ext_info['path'].'/ignore_funcs.php?type=unignore&id='.$cur_post['poster_id'].'&redir='.forum_link($forum_url['post'], $cur_post['id']).'" >'.$lang_ignore['un-ignore_message'].'</a></span></li>';
}
else
{
$forum_page['user_info']['ignore'] = '<li><span><a href="'.$ext_info['path'].'/ignore_funcs.php?type=ignore&id='.$cur_post['poster_id'].'&redir='.forum_link($forum_url['post'], $cur_post['id']).'" >'.$lang_ignore['ignore_user'].'</a></span></li>';
}
}
</hook>
</hooks>
</extension>
Your first task now is to reinstall the default style (if necessary re-upload entire forum).
then upload the downloaded theme to 'yourforum/style/' folder.
There are two places you need to change the theme so that it shows across the site for all users including yourself
1. in profile of administrator
2. in administration area general settings
kenshi64 wrote:UPDATE: So far I uploaded the unzipped contents individually to the folder ( don't ask) and I selected hydrogen from the drop down in settings and saved. But no changes, do I need to clear my cache?
Hi, you need to change your profile default theme aswell, if you want to see it when logged in.
If you log out you should see the theme you selected and saved initially.
Rudi Timmermans wrote:Hi,
Is there already a new update of the Dutch version for the last version of the forum?
Thanks.
Regarding dutch pack:
Download
http://www.mediafire.com/?ymiddny5zmy
Info Thread
http://punbb.informer.com/forums/topic/ … uage-pack/
You just need to add a few translations of new text that didn't exist in 1.3 yet... but it will save you lots of time!
sypie wrote:I just wanted to download this mod but all the downloadlinks are giving me an error.
Anyone to give me a hand (or the zipped file of the latest version?).
1.1.5
Orginal on Quadric Website
http://quadric.goblix.pl/wp-content/plu … php?id=105
Upload to Mediafire
http://www.mediafire.com/?xy4l76p46cfxx0u
Thanks!
english language "Download" on that site wouldn't be bad idea though!
Try this link
http://www.mediafire.com/?oe5muvsuzk6fkr2
his website is working though!
you uploaded 'folder contents' instead of 'folder'....
Thanks,
but you need to use an existing hook... line 50 of your manifest.xml below, or ask for addition of a hook where you need it in source code....
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">
<!--
/**
* Automatically detect correct originating IP when using Incapsula
*
*
* @copyright (C) 2012 incapsula_k0nsl for PunBB (C)
* @copyright Copyright (C) 2012 k0nsl ([url]http://k0nsl.org/blog[/url])
* @license [url]http://www.gnu.org/licenses/gpl.html[/url] GPL version 2 or higher
* @package incapsula_k0nsl
*/
-->
<extension engine="1.0">
<id>incapsula_k0nsl</id>
<title>Incapsula IP Correction Plugin</title>
<version>1.0</version>
<description>Automatically detect correct originating IP when using Incapsula</description>
<author>i.am@k0nsl.org</author>
<!-- -->
<minversion>1.4.2</minversion>
<maxtestedon>1.4.3</maxtestedon>
<install><![CDATA[
// Add extension options to the config table
forum_config_add('incapsula_k0nsl_index', '1');
forum_config_add('incapsula_k0nsl_enable', '1');
]]></install>
<uninstall><![CDATA[
// Remove extension options
forum_config_remove(array(
'incapsula_k0nsl_index',
'incapsula_k0nsl_enable',
));
]]></uninstall>
<hooks>
<!-- that's my one and only hook, so simple. -->
<hook id="k0nsl_main_hook"><![CDATA[
if ($form['incapsula_k0nsl_enable'] == '0') {
require_once $ext_info['path'].'/incapsula_k0nsl.php';
}
]]></hook>
</hooks>
</extension>
just as a sidenote... with AKISMET and FANCY STOP SPAM you should eradicte most of the spam with no moderating on your part...
If you're getting spam posts with the same URL time after time I recommend URL Checker (if you report the offending URL to me, I add it to the database and from that point onwards, all attempts to post that URL will be blocked)
Batman wrote:i wish we can get the page making kind of function extension to create contact form and for other pages
You can use this extension
http://punbb.informer.com/forums/topic/ … cy-policy/
to add extra pages.... instead of FAQ and Privacy you can name them as you wish....
Not solution for contact form neccessarily but help for extra pages...
did you make sure you're saving as UTF-8 ?
Over 1.3 Million URLs checked this month with this extension web-wide.
Thanks downloadable here with your changes Chipotle
Hi
Easiest would be to block the ip number block from bangladesh...
via htaccess....
A user on the french support board reported trouble seeing the avatars;
the solution he found:
file /img/avatars/.htaccess
from
Deny from all
<FilesMatch "\.(gif|jpg|png)$">
Allow from all
</FilesMatch>
to
Deny from all
<Files "*.gif">
Allow from all
</Files>
<Files "*.png">
Allow from all
</Files>
<Files "*.jpg">
Allow from all
</Files>
readme
Copyright and disclaimer
--------------------------
This package and its contents are (C) 2002-2012 PunBB, all rights reserved.
Partially based on code (C) 2008-2009 FluxBB.org.
There's no need for a link in admin user interface.
Have a lawyer put forward your counter arguments if you disagree...
halsafar wrote:Yes I have all the captcha and anti spam extensions commonly used which seem completely ineffective.
Just on your last point:
Captcha = ineffective, not recommended (unless, maybe, you have ReCaptcha extension)
Recommended:
Q&A = pun_stop_bots v0.3.3 (minus the code for checking registered users posting)
Fancy_stop_spam
Akismet
Posts found: 1 to 25 of 1,606