Jansson wrote:
Smartys wrote:

faceface: There's one issue with that, which is that PunBB doesn't do threaded discussions

I'm quite sure he meant that he would like to have several threads per page, as in one forum per page.

I wasn't so sure, since wiki talk pages I've seen are typically real threaded discussions

2,952

(10 replies, posted in PunBB 1.2 troubleshooting)

Now then, please do what Strofanto asked you to do in the first place and enable debug mode and paste the full error
If you make one more trolling post this topic is closed.

faceface: There's one issue with that, which is that PunBB doesn't do threaded discussions
Plus, I'm not so sure how easy it would be to integrate those systems (I know next to nothing about MediaWiki, so I don't know how easy it is to completely replace the Talk page system tongue)

2,954

(8 replies, posted in PunBB 1.2 discussion)

Oh, so when they go to login they have one IP but when they submit the form they have a different IP?
There really isn't a good way to deal with that (because there's no way to track what IP someone previously had when the method you're tracking them with requires an IP. You just have to wait for the timeout.

2,955

(4 replies, posted in PunBB 1.2 troubleshooting)

Make sure to choose SQLite from the dropdown, not MySQL tongue

2,956

(4 replies, posted in PunBB 1.2 troubleshooting)

I think I would need to test this out more personally in order to attempt to figure out what's going wrong.
If anyone is willing to give me a database dump of a forum that's having this issue, send me an email (smartys@ this domain)

2,957

(8 replies, posted in PunBB 1.2 discussion)

MattF wrote:

So when you login, the ident becomes the username, and your IP address is stored as what/where? Once you've logged in, if your IP address is changing every page or two, that old IP then becomes seen as a guest connection, and your recent/actual IP is listed/correlated with you. Is that correct?


Cheers,

Matt

No, that's not correct. IP based tracking stops once you have a cookie. The order of events goes something like this

- Does the user have a valid cookie
    - Yes
        - Does the user have an entry in the online table already?
            - Yes
                - Update the entry with the current time
            - No
                - Add a new entry for the user id/username
    - No
        - Does the IP have an entry in the online table already?
            - Yes
                - Update the entry with the current time
            - No
                - Add a new entry for the user id/IP

2,958

(8 replies, posted in PunBB 1.2 discussion)

ident is a username for users, it's an IP for guests
When you login, your guest online entry is deleted and on your first pageview, your new user online entry is created

2,959

(4 replies, posted in PunBB 1.2 troubleshooting)

This isn't the first complaint I've heard about this, but I'd need to know more to be able to investigate.
Specifically, I'd need to see what queries these no hits pages are running

2,960

(8 replies, posted in PunBB 1.2 discussion)

what pair?

2,961

(8 replies, posted in PunBB 1.2 troubleshooting)

Aha, yeah, the joins with bans and reputation are the issue.
Can you give me the code for your viewtopic.php so I can try rewriting it?

2,962

(12 replies, posted in Programming)

Could we see the full script?

2,963

(8 replies, posted in PunBB 1.2 troubleshooting)

http://dev.mysql.com/doc/refman/5.0/en/explain.html wink

2,964

(8 replies, posted in PunBB 1.2 troubleshooting)

Run an explain on the select query, that'll help me see what the problem is (It looks like you added a lot of extra joins there)

2,965

(5 replies, posted in PunBB 1.2 discussion)

There's not much to tell beyond what I already told you: the implementation can and will vary from person to person wink

2,966

(6 replies, posted in PunBB 1.2 troubleshooting)

Hmm, could you post a link to your forum (it sounds like a cookie issue to me and it would be easier to investigate that way)?

2,967

(8 replies, posted in PunBB 1.2 discussion)

Yann: If you're getting a lot of poor results, I'd suggest a couple things
A. http://punbb.org/forums/viewtopic.php?id=3884
Add more stopwords to the list to try and eliminate noise.
B. Start the search reindexing in the admin panel

Personally, I find PunBB always returns great results, but as Bekko said the efficency of the searching (and hopefully the relevance) for users of MySQL will be increased greatly in 1.3

2,968

(5 replies, posted in PunBB 1.2 discussion)

It's just an adaptation of PunBB's install.php script coupled with mod_rewrite and some modifications to the code (so that PunBB knows which forum it's looking at) wink

2,969

(10 replies, posted in PunBB 1.2 troubleshooting)

Moved to Troubleshooting
What Strofanto said, and calm down, there's no need to be insulting

Aha, right, try
echo include('http://www.sc2armory.com/forums/extern.php?action=active&type=rss');

Or you could just use header("Location: whatever"); to redirect the request to the proper extern.php page

2,971

(2 replies, posted in PunBB 1.2 troubleshooting)

It really depends on the IP addresses. If they're, for example, IP addresses owned by AOL, you might be banning a lot of potential users. On the other hand, if they're for a small ISP, you probably won't be.
Of course, if he has been posting under many names and many IPs, my guess is that he's using proxies and that you're OK banning them (although he'll probably just use another one to evade the ban).

What errors do you get then?

Yeah, you're including extern.php on the local filesystem while still trying to pass URL parameters. That won't work wink
You need to include the full URL instead of a relative path

2,974

(4 replies, posted in PunBB 1.2 discussion)

Because there's no reason to keep so many arrays in memory wink

It sounds like your export didn't work properly
In particular, the issue with topics is (I believe) caused by moved_to in the topics table being set to 0 instead of null. Other issues may have come from similar mistakes in the export