Is there a possibility that admins or moderators could change topics' colors ? Is there a mod to make it possible ?

2

(1 replies, posted in PunBB 1.2 troubleshooting)

An appropriate representation of the requested resource /register.php could not be found on this server.

register.php is on the server .

Hi. Some time ago i instaled reputation mod (i have another rep mod) and it dont works 4 me soo i restore this but in topic avatars dont show now.

in profile they show
http://i20.tinypic.com/10ek607.jpg


Display:
http://i23.tinypic.com/2rzvspl.jpg

Administration> options > avatars
http://i23.tinypic.com/2vifv42.jpg

it looks fine but when i go on post avatars dont show for me 'n all ppl
http://i24.tinypic.com/w8nl84.jpg

Somebody can help me? maybe something need to do whit post.php or vietopic.php? hmn... i dont know on this well

today i install User Avatar In Userlist.php and dont show them too

and this is in InternetExpl.
http://i23.tinypic.com/258t4bd.jpg

Any idea?

How can I coloring username of all admins mods etc in topic?

i instal Modern BBcode 1.0.0 'n

when i add tag's img i have <obrazek> in english language <image> and when i click on this i have pic in new window
i just wont screens in forum ...

someone help me?

maybe that help if u don't understand my english xD
http://i24.tinypic.com/znmn35.jpg

EDIT:
problem solved

In IE

http://i23.tinypic.com/258t4bd.jpg

it looks like be page can't load avatars

Any idea??

I translate the movepost.php in lang from english to polish:

<?php

// Language definitions used in the mod "Move Post" 1.2

$lang_movepost = array(

'Mod move post'            =>    '[Move Post 1.2] - Move a post by BiNcZu',
'Intro'                    =>    'Ta modyfikacja umo?liwia przeniesienie do innego watku wybranego posta lub te? wszystkich postów z modyfikowanego watka. Mo?liwe jest równie? utworzenie nowego watka, w którym przenoszony post b?dzie postem rozpoczynaj?cym nowa dyskusj?.',

'Introduction'                =>    'Objasnienie',
'Create topic'                =>    'Utwórz nowy watek',
'Move post'                =>    'Wybierz watek',

'Original topic'            =>    'Bie?acy watek:',
'Original forum'            =>    'Bie?ace forum:',
'Select forum'                =>    'Mo?esz wybra? nowe forum dla tego posta:',
'Move all posts'            =>    'Przenies wszystkie posty nale?ace do tego watka',

'Explain move all posts'        =>    'Bie?acy wstek zostanie usuni?ty.',
'Explain create topic'        =>    'Aby utworzy? nowy watek wpisz jego tytu? w polu poni?ej:',
'Explain move post plain'            =>    'Podaj ID watku ',
'Explain move post radio'            =>    'lub wybie? watek poni?ej',

'Last'                    =>    'Ostatni post',
'Poster'                    =>    'Autor',

'Bad topic'                =>    'Nie znlaleziono watku',
'Bad new topic'            =>    'Pole nie moze by? puste',

'Mark move redirect'        =>    'Post zostal przeniesiony do wybranego watku. Redirecting …'

);

Enjoy wink

Life is Good big_smile

i cann add butoon on rerport?

ok works now u can close this topic thanks

An error was encountered
File: /home/boardh2o/public_html/include/cache.php
Line: 138

PunBB reported: Unable to write bans cache file to cache directory. Please make sure PHP has write access to the directory 'cache'

line 138

error('Unable to write bans cache file to cache directory. Please make sure PHP has write access to the directory \'cache\'', __FILE__, __LINE__);

Someone help me?

how turn down this pun portal??

yes and go on the forum
when i click on index and login i have this ;/

now i have

http://i22.tinypic.com/15zju5d.jpg

i do something and now

http://i22.tinypic.com/1zggako.jpg

How remove this fuckin* pun portal and go on forum??

when i login i have this i can go on users online i can register
but whe i wont go on forum i have this ;/

Can someone help me?

pls help me

Fatal error: Cannot redeclare stripslashes_array() (previously declared in /home/boardh2o/public_html/include/common.php:64) in /home/boardh2o/public_html/include/common.php on line 64

Mu common.php

<?php
/***********************************************************************

  Copyright (C) 2002-2005  Rickard Andersson (rickard@punbb.org)

  This file is part of PunBB.

  PunBB is free software; you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published
  by the Free Software Foundation; either version 2 of the License,
  or (at your option) any later version.

  PunBB is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  MA  02111-1307  USA

************************************************************************/

// Enable DEBUG mode by removing // from the following line
define('PUN_DEBUG', 1);

// This displays all executed queries in the page footer.
// DO NOT enable this in a production environment!
//define('PUN_SHOW_QUERIES', 1);

if (!defined('PUN_ROOT'))
    exit('The constant PUN_ROOT must be defined and point to a valid PunBB installation root directory.');


// Load the functions script
require PUN_ROOT.'include/functions.php';

// Reverse the effect of register_globals
if (@ini_get('register_globals'))
    unregister_globals();


@include PUN_ROOT.'config.php';

// If PUN isn't defined, config.php is missing or corrupt
if (!defined('PUN'))
    exit('The file \'config.php\' doesn\'t exist or is corrupt. Please run <a href="install.php">install.php</a> to install PunBB first.');


// Record the start time (will be used to calculate the generation time for the page)
list($usec, $sec) = explode(' ', microtime());
$pun_start = ((float)$usec + (float)$sec);

// Make sure PHP reports all errors except E_NOTICE. PunBB supports E_ALL, but a lot of scripts it may interact with, do not.
error_reporting(E_ALL ^ E_NOTICE);

// Turn off magic_quotes_runtime
set_magic_quotes_runtime(0);

// Strip slashes from GET/POST/COOKIE (if magic_quotes_gpc is enabled)
if (get_magic_quotes_gpc())
{
    function stripslashes_array($array)
    {
        return is_array($array) ? array_map('stripslashes_array', $array) : stripslashes($array);
    }

    $_GET = stripslashes_array($_GET);
    $_POST = stripslashes_array($_POST);
    $_COOKIE = stripslashes_array($_COOKIE);
}

// Seed the random number generator
mt_srand((double)microtime()*1000000);

// If a cookie name is not specified in config.php, we use the default (punbb_cookie)
if (empty($cookie_name))
    $cookie_name = 'punbb_cookie';

// Define a few commonly used constants
define('PUN_UNVERIFIED', 32000);
define('PUN_ADMIN', 1);
define('PUN_MOD', 2);
define('PUN_GUEST', 3);
define('PUN_MEMBER', 4);


// Load DB abstraction layer and connect
require PUN_ROOT.'include/dblayer/common_db.php';

// Start a transaction
$db->start_transaction();

// Load cached config
@include PUN_ROOT.'cache/cache_config.php';
if (!defined('PUN_CONFIG_LOADED'))
{
    require PUN_ROOT.'include/cache.php';
    generate_config_cache();
    require PUN_ROOT.'cache/cache_config.php';
}

@include PUN_ROOT.'cache/cache_adsense_config.php';
    if (!defined('PUN_ADSENSE_CONFIG_LOADED'))
    {
        require_once PUN_ROOT.'include/cache.php';
        generate_adsense_config_cache();
        require PUN_ROOT.'cache/cache_adsense_config.php';
    }


// Enable output buffering
if (!defined('PUN_DISABLE_BUFFERING'))
{
    // For some very odd reason, "Norton Internet Security" unsets this
    $_SERVER['HTTP_ACCEPT_ENCODING'] = isset($_SERVER['HTTP_ACCEPT_ENCODING']) ? $_SERVER['HTTP_ACCEPT_ENCODING'] : '';

    // Should we use gzip output compression?
    if ($pun_config['o_gzip'] && extension_loaded('zlib') && (strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false || strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') !== false))
        ob_start();
    else
        ob_start();
}


// Check/update/set cookie and fetch user info
$pun_user = array();
check_cookie($pun_user);

// Attempt to load the common language file
@include PUN_ROOT.'lang/'.$pun_user['language'].'/common.php';
if (!isset($lang_common))
    exit('There is no valid language pack \''.pun_htmlspecialchars($pun_user['language']).'\' installed. Please reinstall a language of that name.');

// Check if we are to display a maintenance message
if ($pun_config['o_maintenance'] && $pun_user['g_id'] > PUN_ADMIN && !defined('PUN_TURN_OFF_MAINT'))
    maintenance_message();


// Load cached bans
@include PUN_ROOT.'cache/cache_bans.php';
if (!defined('PUN_BANS_LOADED'))
{
    require_once PUN_ROOT.'include/cache.php';
    generate_bans_cache();
    require PUN_ROOT.'cache/cache_bans.php';
}

// Check if current user is banned
check_bans();


// Update online list
update_users_online();

Some body help me? my forum don't work ;[

something wrong whit this

function stripslashes_array($array)

whe i click on move

Warning: main(./lang/Polish/movepost.php) [function.main]: failed to open stream: No such file or directory in /home/boardh2o/public_html/movepost.php on line 64

Warning: main(./lang/Polish/movepost.php) [function.main]: failed to open stream: No such file or directory in /home/boardh2o/public_html/movepost.php on line 64

Fatal error: main() [function.require]: Failed opening required './lang/Polish/movepost.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/boardh2o/public_html/movepost.php on line 64

Any idea?

but works for eng language

ok i do
works now Thabks!

16

(10 replies, posted in PunBB 1.2 troubleshooting)

ok i do it

just delete this line in post.php

$errors[] = "Nie odpowiadaj na w?asny post!!! Zamiast tego u?yj edycji i dopisz to co chcesz do poprzedniego.";

It means

Dont anser on your post, edit your post and add what u wont

i send u on @mial

Any idea?

if i instal 1.2.15 update i will be works?

i copy orginal files but it don't work ;/

where i make mistake?

yes

this

http://www.punres.org/viewtopic.php?pid=19897#p19897

before instal it avatar works

on my own punBB

Use avatars        
Yes    No 
When enabled, users will be able to upload an avatar which will be displayed under their title/rank.

And in profile
"Show user avatars in posts."  marked

i mark all and dont work

i enable use avatar in profil  and it profil works
but in post dont se avatars

Hi i see avatars in profile but in post not
avatars in administration panel are enabled

Can u help me?

25

(10 replies, posted in PunBB 1.2 troubleshooting)

http://i21.tinypic.com/mlk1ti.jpg

The following errors need to be corrected before the message can be posted:
Dont anser on your post, edit your post and add what u wont

I translate from polish big_smile