You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 119 of 307)
Topics by Smartys User defined search
Posts found: 2,951 to 2,975 of 7,674
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
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
)
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.
Make sure to choose SQLite from the dropdown, not MySQL ![tongue](https://punbb.informer.com/forums/img/smilies/tongue.png)
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)
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
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
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
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?
Could we see the full script?
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)
There's not much to tell beyond what I already told you: the implementation can and will vary from person to person ![wink](https://punbb.informer.com/forums/img/smilies/wink.png)
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)?
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
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](https://punbb.informer.com/forums/img/smilies/wink.png)
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
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](https://punbb.informer.com/forums/img/smilies/wink.png)
You need to include the full URL instead of a relative path
Because there's no reason to keep so many arrays in memory ![wink](https://punbb.informer.com/forums/img/smilies/wink.png)
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
Posts found: 2,951 to 2,975 of 7,674