


Erm, I had to reselect the smilies option, and I still can't find them... also, no quote button, or so it seems... It also seems to want to log me in every time I visit without me asking it to do so... and I can't copy text. dunno. maybe these are minor problems.lem, smilies - did you go to my account > edit > block configuration? Maybe try that one more time, if that doesn't work let us know. There's a quote button next to every post, and the indent button allows you to put a quote box around things. Not sure about cpying text - you can't copy it or you can't paste it? If you're having login troubles, try deleting your libcom.org cookies. Hope some of this helps!
Magnifico. Can you try something for me? In Internet explorer, go to view >> text size >> medium you could also try view >> text size >> smaller or smallest I think that might fix it.Woohoo! I've got my proper-sized libcom back! Joy of joys!

couple questions: 1. is this more or less how it is going to look? I mean is it not going to be the good old PHPBB based forum at all in the future?No I don't think we're going to go back to phpbb because we're fed up getting hacked and the upgrade process was becoming a nightmare. This is only three days down the line, I expect it'll improve a lot over the enxt couple of weeks. There's a lot of thing about these forums which'll be better than the old system - tagging, very customisable url aliasing, integrated login with the rest of the site, stuff like that, but we need to get the rest of the site over here before that becomes obvious! Quote:
2. Where is the "view new posts" link? or am i totally blind..."Latest Content" or "View Active Topics" is the equivalent - shows you the latest posted or commented on topic, but not who the last person to comment was yet. Quote:
3. SolFed internal forum is gone.It's still there but you can't see it. We'll be sorting that some time today all being well. Quote:
4. forum RSS feeds? Or should we just remove them from sites which use them?Already there - look at RSS feeds in the left menu. At the moment you can't get rss feeds for comments, only new topics, but once we've sorted some issues with comment feeds we'll be enabling those as well. We're also planning to do a custom front page for the forums once we've got comment feeds up and running which should be easier to navigate and a bit shorter! Quote:
good luck with the marathon ahead!Thanks!
when logged out user box with register, enter user + password text is massive.I can put taht in right column. Want to make the left column smaller anyway. Quote:
also links to users, in forum index and who's online aren't hyperlinksYeah I set access to profiles off for unregistered users, could switch it on but I figured if the profiles start having contact forms and other stuff it might help stop spam bots, spammers, and people fishing for personal information.
yo, was thinking, I think that for the who's online stuff it would be best to have the tiny "number of users online" box, which links to a page with a complete list of all online users. cos having a list of users with only 10 on is kinda silly...I took all the users off, that looks shit as well though. I take it you meant "a" number of users on-line box, because we don't currently have one that does that. Back to 10 for now. If we can fix it to display ok down the bottom, we could set it higher.
John. wrote:I meant this bit: "Who's online There are currently 7 users and 3 guests online." Then that has a link to see who's online and that page shows everyone. cos with an integrated site we'll be getting a lot more users, and a lot more online being shown as being online. Also a "go to last post in thread" link on thread indexes would be great.yo, was thinking, I think that for the who's online stuff it would be best to have the tiny "number of users online" box, which links to a page with a complete list of all online users. cos having a list of users with only 10 on is kinda silly...I took all the users off, that looks shit as well though. I take it you meant "a" number of users on-line box, because we don't currently have one that does that. Back to 10 for now. If we can fix it to display ok down the bottom, we could set it higher.
I meant this bit: "Who's online There are currently 7 users and 3 guests online." Then that has a link to see who's online and that page shows everyone. cos with an integrated site we'll be getting a lot more users, and a lot more online being shown as being online.OK I thought you meant we already had that. Quote:
Also a "go to last post in thread" link on thread indexes would be great.That's going to be very tricky I think.
Also a "go to last post in thread" link on thread indexes would be great.They already have that, unless I misunderstand you. When you view the forum and it shows the list of topics, it'll say something like "6 new" to mean there's 6 new messages in a particular thread. If you click that rather than the subject of the thread it'll take you to the last one posted. Edit: Nevermind, I think I know now what you meant. You were referring to the way it is in phpBB with the little link next to the last poster's name in the furthest-to-the-right column.
I think the problem is that comments don't appear to have "a name" tags which'd allow html links straight to them.hmmm, sometimes #new goes to later ones, so surely they must have some label no?
yeah should have then. Need to look into it.
You can do it by rewriting the code a little to add HTML anchors to each comment inside of the nodes. Then you just figure out which post has the newest timestamp in a particular thread and make a link to it. Each node keeps track of the last comment in node_comment_statistics. You can look up the node id and last_timestamp with this, compare it to the timestamp in the comments table, and get the comment id. To build an array of all the comments which are the last comment posted for every forum node, the sql would look like this: select comments.cid, node_comment_statistics.nid from comments, node_comment_statistics where node_comment_statistics.last_comment_timestamp = comments.timestamp;
Edit: bah, all the formatting is messed up for my example.