viewforurm.php line ~ 596:
<h2 class="hn"><span><?php echo $forum_page['items_info'] ?></span></h2>
You are not logged in. Please login or register.
PunBB Forums → Posts by hcs
viewforurm.php line ~ 596:
<h2 class="hn"><span><?php echo $forum_page['items_info'] ?></span></h2>
Button duplication is very useful feature but not problem. Of course you can always remove it in include\template\main.tpl by deleting
<!-- forum_main_pagepost_top -->
or
<!-- forum_main_pagepost_end -->
You will see how it will become uncomfortable when the messages will be more than one screen.
Enable DEBUG mode in config.php
Nice theme!
Forum language is english? Switch to english and try download again.
If the problem is solved then check localization. They do not use spaces or other characters (BOM-signature) before the <?php tag.
2 leemore
Enable in config.php
define('FORUM_DEBUG', 1);
define('FORUM_SHOW_QUERIES', 1);
and post bug/image with error here
КT-Mobile is the best choice!
Open your languages folder (ex. lang/English) and find fille common.php
Find in it:
'Powered by' => 'Powered by %s, supported by %s.',
replace with:
'Powered by' => 'Powered by %s',
reigyx_x, necessary to correct bb code parser. this is a very difficult task and there is no time to deal with right now.
editing core files - the wrong way
$query['WHERE'] = 'username=\''.$forum_db->escape($form_username).'\' or email=\''.$forum_db->escape($form_username).'\'';
Administration → Settings → Features
Jump to SC WYSIWYG editor section and edit WYSIWYG Toolbar content
Maybe the server sends forum the same ip address for all users 127.0.0.1?
need install pun_pm
Copy over all files from original archives. Make backup files and database before copying.
Are you sure that are using version 1.4.2?
Please show #193-206 lines from a file include/common_admin.php
This extension allows you to insert icons for forums in admin panel: https://github.com/downloads/ashcs/punb … _image.zip
see php error log
I think South Africa is also has a community of spammers
May be json_decode function not supported in your php installation?
Try add the following code into function.php to end file:
if (!function_exists('json_decode')) {
function json_decode($json) {
$comment = false;
$out = '$x=';
for ($i=0; $i<strlen($json); $i++) {
if (!$comment) {
if (($json[$i] == '{') || ($json[$i] == '[')) {
$out .= 'array(';
}
elseif (($json[$i] == '}') || ($json[$i] == ']')) {
$out .= ')';
}
elseif ($json[$i] == ':') {
$out .= '=>';
}
elseif ($json[$i] == ',') {
$out .= ',';
}
elseif ($json[$i] == '"') {
$out .= '"';
}
/*elseif (!preg_match('/\s/', $json[$i])) {
return null;
}*/
}
else $out .= $json[$i] == '$' ? '\$' : $json[$i];
if ($json[$i] == '"' && $json[($i-1)] != '\\') $comment = !$comment;
}
eval($out. ';');
return $x;
}
}
if (!function_exists('json_encode'))
{
function json_encode($data)
{
switch ($type = gettype($data))
{
case 'NULL':
return 'null';
case 'boolean':
return ($data ? 'true' : 'false');
case 'integer':
case 'double':
case 'float':
return $data;
case 'string':
return '"' . addslashes($data) . '"';
case 'object':
$data = get_object_vars($data);
case 'array':
$output_index_count = 0;
$output_indexed = array();
$output_associative = array();
foreach ($data as $key => $value)
{
$output_indexed[] = json_encode($value);
$output_associative[] = json_encode($key) . ':' . json_encode($value);
if ($output_index_count !== NULL && $output_index_count++ !== $key)
{
$output_index_count = NULL;
}
}
if ($output_index_count !== NULL) {
return '[' . implode(',', $output_indexed) . ']';
} else {
return '{' . implode(',', $output_associative) . '}';
}
default:
return ''; // Not supported
}
}
}
use fancy_video_tag extension
kantribiotis: to disable extension open config and uncomment line:
//define('FORUM_DISABLE_HOOKS', 1);
then go to admin page and uninstall any extension
This is very strange, we will investigate this.
Usually only be removed spam, other questionable messages are moved to the trash.
Release of the extensions is encouraged, there is no justification for deleting the threads.
I hope this is a mistake, and not malice and I apologize for the trouble.
PunBB Forums → Posts by hcs
Powered by PunBB, supported by Informer Technologies, Inc.