Have you tried consulting with the godaddy support?
77 2010-06-21 08:46
Re: SiteMap (2 replies, posted in PunBB 1.3 discussion)
Have you tried this extension?
78 2010-06-21 08:26
Re: File attachment extension doesn't work (6 replies, posted in PunBB 1.3 troubleshooting)
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 2010-06-21 07:58
Re: Can't upload an avatar (1 replies, posted in PunBB 1.3 troubleshooting)
Are you sure that your server allows file uploading?
80 2010-06-17 11:48
Re: BBCode buttons arent working Please help (13 replies, posted in PunBB 1.3 extensions)
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?
81 2010-06-17 10:40
Re: Make header/banner change when logged in (4 replies, posted in PunBB 1.3 additions)
This piece of code should solve your problem:
if ($forum_user['is_guest'])
{
//banner for guests
}
else
{
//banner for users
}
82 2010-06-16 14:31
Re: How to not display online userstatus (5 replies, posted in PunBB 1.3 discussion)
Just remove the 346-349 lines from the "<FORUM_ROOT>/viewtopic.php" file.
83 2010-06-16 14:23
Re: how do I make deleted forum sections or deleted threads return 404? (4 replies, posted in Discussions)
Try to play with the "message" function in the "<FORUM_ROOT>/include/functions.php" file.
84 2010-06-16 14:17
Re: BBCode buttons arent working Please help (13 replies, posted in PunBB 1.3 extensions)
Thas the code in the manifest.xml right?
Yes, it is.
2) What extensions have you got installed?
85 2010-06-11 11:45
Re: add google adsense (17 replies, posted in PunBB 1.3 troubleshooting)
Have you tried this?
thanks for info but i have resolved with e simply div in main.tpl
<div align="center">google adsense code</div>
86 2010-06-10 08:24
Re: BBCode buttons arent working Please help (13 replies, posted in PunBB 1.3 extensions)
1) Does 'var pun_bbcode_bar = document.getElementById("pun_bbcode_bar");' string exist in the HTML document?
2) What extensions have you got installed?
87 2010-06-07 11:50
Re: Accessibility Features added to Forum (3 replies, posted in PunBB 1.3 extensions)
Nice work!
88 2010-06-07 11:48
Re: Installing Pun_Attachment error (4 replies, posted in PunBB 1.3 troubleshooting)
The "attachments" folder should have 777 file permission.
89 2010-06-04 09:35
Re: Looking for advice. (3 replies, posted in Discussions)
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.
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 2010-06-03 10:30
Re: How do I add a style? (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 2010-06-03 10:12
Re: Autoupdate question (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.
92 2010-06-03 10:02
Re: Portuguese and Dutch language packs (6 replies, posted in PunBB 1.3 troubleshooting)
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.
93 2010-06-03 09:47
Re: [RESOLVED] Searching with accents... (3 replies, posted in PunBB 1.3 troubleshooting)
Thanks for the suggestion, we will think about it.
94 2010-06-03 07:54
Re: Portuguese and Dutch language packs (6 replies, posted in PunBB 1.3 troubleshooting)
Well, it means that it is not finished yet.
95 2010-06-03 07:48
Re: Debugging help? (4 replies, posted in PunBB 1.3 troubleshooting)
Please, post here your config.php.
96 2010-06-03 07:45
Re: a Question about changing picture (14 replies, posted in PunBB 1.3 troubleshooting)
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 2010-06-02 14:20
Re: Curious (3 replies, posted in Discussions)
Here you can find all official styles for PunBB 1.3.
98 2010-06-02 14:17
Re: Portuguese and Dutch language packs (6 replies, posted in PunBB 1.3 troubleshooting)
All language packs you can find here.
99 2010-06-02 14:15
Re: Autoupdate question (4 replies, posted in PunBB 1.3 troubleshooting)
You should merge your files with new manually.
100 2010-06-01 11:50
Re: People being logged out (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?