Hmm, I don't have that issues. Would you mind posting the line mentioned in the error, as well as a few lines before and after it?
451 2006-11-11 01:25
Re: YouTube Video BBCode (32 replies, posted in PunBB 1.2 modifications, plugins and integrations)
452 2006-11-11 01:18
Re: Return to the previous page after login (5 replies, posted in Feature requests)
If you're purposely blocking your referrer from being sent for privacy reasons and you use Firefox, I recommend that you use the RefControl extension, which allows you to whitelist certain sites.
453 2006-11-11 01:08
Re: PunBB vs. Punres (38 replies, posted in PunBB 1.2 discussion)
Please keep in mind that what I said was merely my personal opinion, and it should be taken lightly. I am only a moderator here and not at all involved in the development of PunBB - these issues are not under my control, nor should they be.
That said, let me begin arguing with you.
Why not show off PBB for all it can be? YES
Why not? Because it gives new users a false impression of what PunBB is, and how it works. What is seen on these forums should be what one sees when he or she downloads and installs PunBB. Otherwise, there is great potential for confusion and frustration.
Also, the fact remains that PunBB is a lightweight forum system, and demonstrates the benefits of such a design philosophy. An official site laden with modifications gives the impression that PunBB - or any other lightweight forum package - is insufficient, which is quite simply false.
Does that limit the ability for stock demonstration? NO
Does it eliminate the ability? Certainly not, but it does indeed limit the ability. An official forum and a separate vanilla installation are counterintuitive to some, including myself. I suppose I may be wrong, but it seems to me that many will go straight to the official forums, quite logically assuming them to exist in stock form, thus limiting the ability for a stock demonstration.
Private messaging capability (if appropriate to the server load capacity here) for those times we need to be collaborating (without having to subscribe to other ircs)
Email?
- 1.x.x Section
- with demo section as above
- with mod+ plugins section as above
- with styles section as above (or see below)
Why keep supporting 1.2.x? Rickard, Paul, and several others have been (and continue to be) working hard to make 1.3 great. Why encourage people to continue using an old version.
Finally, one fundamental problem with this concept of a solitary forum is this - whatever the state of the community, many people will still not search. What posts from the people that do search that are prevented will likely replaced with posts of people asking about "missing" features of their PunBB installs.
Like I said, these are just my opinions, and I'm not making any decision making here. I, like you, am simply stating what I think will work best ( ego is certainly not involved at all ).
454 2006-11-09 00:05
Re: Hi I am new, how to? (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to modifications.
455 2006-11-09 00:00
Re: Image Upload 1.2.1 (114 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It would appear that you need to turn off safe mode (or reconfigure). You'll have to talk to your host.
456 2006-11-08 23:58
Re: Board statistics Help. (11 replies, posted in PunBB 1.2 troubleshooting)
Add the following to your CSS:
#punindex #brdstats {DISPLAY: none; VISIBILITY: hidden}
457 2006-11-08 23:52
Re: Making nav link items visible to only certain user groups (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to modifications.
458 2006-11-07 16:20
Re: Digital Geekcast Audio Podcast (2 replies, posted in PunBB 1.2 show off)
FYI the bans page is 404'd.
459 2006-11-07 16:07
Re: Changing table width on forums. (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to modifications.
460 2006-11-07 16:05
Re: Image Upload 1.2.1 (114 replies, posted in PunBB 1.2 modifications, plugins and integrations)
@iceymoon
2. All images are thumbnailed and placed into an in-post gallery
3. The administrator can define the maximum number of images per post in the mod's configuration
@NImda - this mod will work fine for 1.2.14.
461 2006-11-07 15:54
Re: Attempted hack? (8 replies, posted in General discussion)
Maybe someone was eager to know when a reply got posted.
462 2006-11-03 00:16
Re: speed, titles, and message questions. (7 replies, posted in PunBB 1.2 troubleshooting)
At least browsing, your site seems nice and speedy to me.
will pruning the topics/posts matter?
No. In theory you might be able to get some speed increase, but we're talking tiny fractions of a second. The loss of the posts would not be worth it.
I saw you can redo the search index but it may crashe etc does that do much for speed?
No. Rebuilding the search index is mainly for people who have broken search tables (if search works properly, then your search tables aren't broken).
What about avatars? they are saved right? can I clear all those out?
Why would you clear them out?
So gzip will have a real world effect or not on a pretty busy site?
Probably. The best thing to do would be to enable it and see if it makes a perceptible difference.
463 2006-11-02 02:23
Re: SQLite... what about it (7 replies, posted in Programming)
This post might be a little help: http://punbb.org/forums/viewtopic.php?pid=77066#p77066
Also see: http://www.debianhelp.co.uk/sqliteweb.htm
A nice, simple desktop interface is SQLite Query Browser.
464 2006-11-02 00:45
Re: check out macminds.net (6 replies, posted in PunBB 1.2 show off)
The front page looks great.
465 2006-11-01 00:37
Re: How to!? (10 replies, posted in PunBB 1.2 troubleshooting)
Mark wrote:if you want the link to not be there when not logged in, you could do it in functions.php
that way is a little tricky if you dont know your way around the coding though.Let's say Xariov would have wanted his IRC chat menu to appear only for Mods, wouldn't had it been as easy as entering a new line in the Pun_Mod section of functions.php?
Something like:
$links[] = '<li id="navsearch"><a href="ircchat.html">'.$lang_common['IRC Chat'].'</a>';
?
Yep, that's pretty much it, except it would be in the else section of the conditional.
if ($pun_user['g_id'] > PUN_MOD)
{
if ($pun_user['g_search'] == '1')
$links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';
$links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
$links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
}
else
{
$links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';
$links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
$links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';
$links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'">'.$lang_common['Logout'].'</a>';
}
466 2006-11-01 00:35
Re: problem weth bakub (1 replies, posted in PunBB 1.2 troubleshooting)
You already have an open topic concerning this issue, please stick to that one.
467 2006-11-01 00:29
Re: [Release] AP Book Generator (11 replies, posted in PunBB 1.2 modifications, plugins and integrations)
^
^
easier to find a server to support php 4
And perhaps if less people reverted to PHP 4 solely for its ubiquity, it would be less prevalent.
468 2006-10-30 00:34
Re: The FF2 extension everyone should be using (7 replies, posted in General discussion)
It should be "Fx2".
...what's wrong with "FF2"?
469 2006-10-30 00:26
Re: Group Post Polls (1 replies, posted in PunBB 1.2 discussion)
I asked Rickard about it a few months ago and he told me that he had originally planned to include a poll function, but never fully implemented it (I can't remember whether it was that he decided not to add polls and simply left the value in by mistake or that he left it in in case he released an update with polls included at a later date).
I need to start using Gmail's "archive" button.
470 2006-10-29 03:38
Re: Need programing changes (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to integration.
471 2006-10-28 23:27
Re: PunBB 1.2.14 (95 replies, posted in News)
@Fabiaan: try deleting the files in your PunBB installation's cache folder.
472 2006-10-28 18:16
Re: Please Help with Miniportal Setup (18 replies, posted in PunBB 1.2 troubleshooting)
As long as you had made a new style rule and preceded conl with #brdwelcome, you would have been fine, but I suppose as long as things are working there's no sense on messing with them more (although I tend to do so anyway ).
473 2006-10-28 18:01
Re: How to build a page like the main page of PunBB.org? (8 replies, posted in PunBB 1.2 discussion)
The news is pulled to the front page with the news generator plugin.
474 2006-10-28 18:00
Re: PunBB Newsbox 1.0 (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Link fixed now.
475 2006-10-28 17:55
Re: For the nth time probably -> galleries (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Have you looked at the PBB Gallery mod?
BTW, this isn't really a feature request so I've moved it.