26

(6 replies, posted in PunBB 1.2 discussion)

Thanks for the info, i'll try that later.
You haven't answered on my second question. Is it possible to use different background for the whole footer line ? I did that with 1.1.x but don't know if is possible using 1.2.x.
http://users.otenet.gr/~inray/temp/forum.gif

Just a few questions about styling.

1. How can i use different color for edd / even posts ? I mean dark / light same as previous 1.1.x version.

2. Is it possible to use different color for foot line in each post. I've found two divs postfootleft and postfootright but i'm not sure how can i change background color for the whole post foot line.

thanks

IMHO, Linux would be ready for primetime IF its development was controlled by a committee or something like that. After more than twenty years been a Unix admin, i cannot stand Linux mess, and i don't mean kernel itself which is ok, but the whole thing as an OS.
Even the most conservative distributors like Slackware, use to include a whole bunch of useless old and unstable crap into their base system breaking all standards including POSIX.
Volunteer developers prefer X desktop development. Even so, they put their efforts to countless windows managers, desktop implementations and different projects that will die sooner or later.

All the above are simple facts that prove Linux wrong direction. People recognize Unix as the leading server OS, but all of us, try to make it a pretty desktop alternative, with no success even after more than a decade.
Look what Apple did. They forked FreeBSD (much better than Linux imho), dropped useless parts, for them, like X and finally build an excellent GUI over it. With no more than fifty developers, in less than three years.
Another example was BeOS although was abandoned after Palm acquired Be. In that case, a single developer with a small support team built a kernel and a GUI OS using the common GNU framework and utility set.

What was Linux progress all that time ? Do you really believe IT and admins interest on KDE or Gnome or X desktop ? Or do they like spend hundreds of hours checking versions and lib dependencies? I don't think so.

Please, don't call me "Windows fan" smile In my company I use FreeBSD as my preferable server OS, for both web and file server and I'm also involved with system (Kernel) development on my spare time. If you want my honest opinion, yes i'm afraid that Windows will dominate on server market too sad .NET ASPX IIS7 XAML-enabled browsing and all that stuff show MS direction to server market. And they did it right, that's the problem.

BTW, I really believe that future companies will prefer using a server OS, known to their employees instead asking help from dinosaurs like me hmm

29

(8 replies, posted in PunBB 1.2 discussion)

Thanks Rickard smile

30

(8 replies, posted in PunBB 1.2 discussion)

Thank you all for the info,
Subversion command line did the trick although i still prefer a daily updated downloadable archive.

Rickard, could you please tell me how can i find all post 1.2 fixes you made ?
Of course i can point them using Track, but don't know how to get them all. Do you have CVS access to changed source tree ?

Thanks

32

(6 replies, posted in PunBB 1.2 discussion)

Thank you Rickard smile

33

(6 replies, posted in PunBB 1.2 discussion)

Yeah, sounds logical. I thought 1.2 was stable enough for prime use.

34

(6 replies, posted in PunBB 1.2 discussion)

May i ask, why don't use latest beta as default punbb.org forum script? It would be much easier for you and us to test it, under real conditions.

SSB

Frank H wrote:

...as long as people at least try to make stuff that works on more than one browser big_smile

Absolutely agreed smile

Rickard wrote:

ssb: But you like IE bugs and incompabilities or what?

Rickard, i don't like bugs and compatibility issues in general. Never said that IE has no such problem, but in my experience latest IE builds have far less issues than Opera and Firefox IF user knows hot to configure security options right.

Opera cannot render right many web pages and crashes every so. A no-go for me.
Firefox is buggy and unstable, and much slower than both IE and Opera.

I really don't like IE and all its quirks (especially ActiveX) but it works smile
As of IE security holes, can you imagine what would happened if Opera or FF was used by 90% of internet users ? For now, nobody interests to break FF/Op security because of their low spread across net.
It's just my opinion though smile

IE6 and nothing else because i hate FF bugs and Opera incompatibilities.

38

(17 replies, posted in PunBB 1.2 discussion)

Just wondering

Me too smile

39

(17 replies, posted in PunBB 1.2 discussion)

Rickard,
Thanks for hdiff, it helped me a lot as i use a highly modified punbb.

Btw, install.php still assigns $punbb_version = '1.1.3';

Regards

Do you mean version number itself ? If so, it is saved in mysql punbb config table. You can use something like phpMyAdmin to edit this table.

41

(3 replies, posted in Feature requests)

Maybe an Erase All or at least a Delete button next to Zap. That would give the option to delete report instead save it.

42

(3 replies, posted in Feature requests)

I'd like to see a delete zapped report function. Of course this can be done from phpMyAdmin, but such a button next to zapped reports would be great smile

Thanks Rickard for the hdiff, it helped me a lot merging diffs into my modified source tree.

www part is enough to handle any case. As a quickfix did that using str_replace() and works just fine.
I also had to modify some quick validation in code, that don't call confirm_referer.

Stripping out only the http://www part, is quite secure IMHO

Afaik function confirm_referer checks current referer against configured base URL. The problem is that http://www.domain.com count as different than http://domain.com resulting in http referer errors.
Any idea about a regex mod in confirm_referer, that will only match domain without http:// or www ?

That's ok Rickard, not a big problem smile

I've noticed a small problem returning from a user profile to searching results.

Search for a user in Admin / Users
In results click on any found username to see profile details
Then hit back to return to searching results
...Page has expired

Any quickfix for that ?

Thanks

49

(25 replies, posted in PunBB 1.2 discussion)

Congrats Rickard, excellent job ! smile

In search.php, punbb doesn't add "..." when message is longer than 140 chars. It checks if message length is equal to 140, failing if longer.

if (pun_strlen($message) == 140)
change to
if (pun_strlen($message) >= 140)

I hope it helps smile