76

(2 replies, posted in General discussion)

Have you tried consulting with the godaddy support?

77

(2 replies, posted in PunBB 1.3 discussion)

Have you tried this extension?

Bellic wrote:

Do I need to contact my webhost to change the setting, or do I have some other options? There's tons of settings in the webhost CP but I'm not sure what to look for... I did find the htacces file, but that's probably not what I'm looking for, right?

I think the easiest way is to contact the support of your host, they should be able to help you with settings.

79

(1 replies, posted in PunBB 1.3 troubleshooting)

Are you sure that your server allows file uploading?

I have installed these extensions on my localhost, but I can't reproduce your problem. Are you sure that the punbb_code extension is enabled and the "Use BBCode Bar Enable BBCode Bar when writing posts (extension Pun BBCode)" option is turned on in your profile?

This piece of code should solve your problem:

if ($forum_user['is_guest'])
{
  //banner for guests
}
else
{
  //banner for users
}

Just remove the 346-349 lines from the "<FORUM_ROOT>/viewtopic.php" file.

Try to play with the "message" function in the "<FORUM_ROOT>/include/functions.php" file.

Droo wrote:

Thas the code in the manifest.xml right?

Yes, it is.

Slavok wrote:

2) What extensions have you got installed?

85

(17 replies, posted in PunBB 1.3 troubleshooting)

Have you tried this?

fantasma wrote:

thanks for info but i have resolved with e simply div in main.tpl

<div align="center">google adsense code</div>

1) Does 'var pun_bbcode_bar = document.getElementById("pun_bbcode_bar");' string exist in the HTML document?
2) What extensions have you got installed?

Nice work!

The "attachments" folder should have 777 file permission.

89

(3 replies, posted in Discussions)

trenchnz wrote:

How easy is it to chop up the coding?. I need to remove a lot of functionality that just won't be needed, but can I do this without ending up killing the software completely?

In my opinion, it will be very easy to remove some functionality.

trenchnz wrote:

As an example, i would be removing links like "active topics, new topics and unanswered topics from the top right hand side of the page.

To remove the "Active topics" link, you need to remove the 204 line of the "<FORUM_ROOT>/header.php" file. Other links removed in the same way. To completely forbid these actions, remove the 'show_new', 'show_recent', 'show_unanswered' values from the $valid_actions array at the 823 line of the "<FORUM_ROOT>/include/search_functions.php" file.

If you have some questions, ask here.

90

(3 replies, posted in PunBB 1.3 troubleshooting)

Steps to add your own style:

  • Make a directory with the name of your style;

  • Place all the files of the style to this directory;

  • Create the "<FORUM_ROOT>/style/<YOUR_STYLE_NAME>/<YOUR_STYLE_NAME>.php" file in the directory. This file will contain php code with links to your css files or some other things you need. For example, here is the content of this file for Oxygen style:

<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $base_url.'/style/'.$forum_user['style'] ?>/Oxygen.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $base_url.'/style/'.$forum_user['style'] ?>/Oxygen_cs.css" />
<!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="<?php echo $base_url.'/style/'.$forum_user['style'] ?>/Oxygen_ie6.css" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo $base_url.'/style/'.$forum_user['style'] ?>/Oxygen_ie7.css" /><![endif]-->

91

(4 replies, posted in PunBB 1.3 troubleshooting)

There is now such function as "autoupdate", automatic update checking. If there are new versions of the forum, you will receive a notification. The forum will not overwrite anything automatically, you should think what to do with modified files. Update instructions can be found here.

The author of the translation or some other user added the language pack to our Wiki on their own. We weren't watching whether the language pack was added to the Wiki or not, it is our mistake.

Thanks for the suggestion, we will think about it.

Well, it means that it is not finished yet.

95

(4 replies, posted in PunBB 1.3 troubleshooting)

Please, post here your config.php.

ahmad1989 wrote:

how to change this picture?

Here is an example. Go to the 999 line of the "<FORUM_ROOT>/style/Oxygen/Oxygen.css" and replace the css rule with this one:

.brd .main-content .main-item .icon {
    height: 16px;
    width: 16px;
    background-image: url('http://punbb.informer.com/favicon.ico');
    background-repeat: no-repeat;
    float: left;
    margin-top: 0.667em;
    margin-left: -2.417em;
    }

97

(3 replies, posted in Discussions)

Here you can find all official styles for PunBB 1.3.

All language packs you can find here.

99

(4 replies, posted in PunBB 1.3 troubleshooting)

You should merge your files with new manually.

100

(1 replies, posted in PunBB 1.3 bug reports)

After which actions did this problem appear? What are the values of online timeout and visit timeout?