252 2004-11-13 19:30 (edited by Azakur4 2004-11-13 19:31)
Re: PunBB 1.2 development source
lol is only one phrase men :S
253 2004-11-13 20:32
Re: PunBB 1.2 development source
yeh i know but registrate isn't a word and it doesn't make sense
254 2004-11-13 21:31
Re: PunBB 1.2 development source
but registrate isn't a word
255 2004-11-13 21:39
Re: PunBB 1.2 development source
well maybe its a word but its not widely used and it still doesn't make sense
256 2004-11-13 22:04
Re: PunBB 1.2 development source
replace "you" with "yourself" and "benefits" with "features", and you should find some sense in it ...
not all ppl have english as native language, try constructive critisism, that usually helps a community, rather than get people mad at each other
257 2004-11-13 22:27
Re: PunBB 1.2 development source
You must register to use all features of this forum
258 2004-11-13 22:55
Re: PunBB 1.2 development source
yeah thanks connorhd for the phrase
259 2004-11-13 23:12
Re: PunBB 1.2 development source
anyway login on every is not needed since you only need to login once
260 2004-11-14 11:39
Re: PunBB 1.2 development source
Azakur4: Thanks. The first thing (Moderated by), I had missed. Consider it fixed in the next release. I'm not really fond of the login box on the front page though, so don't count on that one making it into the code.
261 2004-11-15 04:58
Re: PunBB 1.2 development source
oki, i only try help for a best punbb
262 2004-11-15 06:45 (edited by Lizon_IC 2004-11-15 06:46)
Re: PunBB 1.2 development source
Found one small bug on my admin_index.php
"Notice: Undefined offset: 1 in /homepages/41/d93159822/htdocs/punbb/admin_index.php on line 83
Notice: Undefined offset: 2 in /homepages/41/d93159822/htdocs/punbb/admin_index.php on line 83"
That is on the top of my page, but the page still works. Strange.....
The code on line 83 is as follows:
$server_load = $load_averages[0].' '.$load_averages[1].' '.$load_averages[2];
263 2004-11-15 09:28
Re: PunBB 1.2 development source
I'll have a look at it.
264 2004-11-19 13:48
Re: PunBB 1.2 development source
You must registrate you to have more benefits
lol
I love it when a fool is wrong:
registrate
...apart from which it's more important what a person is saying than what it is they said
265 2004-11-19 14:55
Re: PunBB 1.2 development source
well registrate or not... its also grammatically incorrect
266 2004-11-20 00:50
Re: PunBB 1.2 development source
or is it..?
You must - registrate you - to have more benefits.
Registrate modifies you, into yourself?
You must register yourself to have more benefits.
267 2004-11-20 00:58
Re: PunBB 1.2 development source
lol guys, i speak spanish i forget change the phrase. in addition that single phrase this to decorate and is left the forum pretty, you can put ke but they like.
i don't speak english very well.
268 2004-11-20 12:31
Re: PunBB 1.2 development source
yeh i wasn't meaning to spark a big argument that phrase may be in theory "correct" but its not the phrase you would use
269 2004-11-20 20:11
Re: PunBB 1.2 development source
In Soviet Russia register regstrates you!
270 2004-11-25 22:54
Re: PunBB 1.2 development source
hey rickard when you launch the next release ?:$ I am impatient to prove it
271 2004-12-13 12:45
Re: PunBB 1.2 development source
In Soviet Russia register regstrates you!
lol :)))))))))))))))))))))))))))))))))))))))))
ROFL..... i've almost died :)))))))))) help me somebody %)))))))))))
I hadn't seen such foolish statement already for a looooong time :))
BTW where have you seen SOVIET Russia ? :))))
272 2004-12-16 11:38 (edited by deusiah 2004-12-16 11:42)
Re: PunBB 1.2 development source
Is there anywhere I can see a demo or better still a working forum running on 1.2 or isn't it stable enough yet?
Also I have decided to intregrate puBB with my CMS, will there be any major changes in 1.2 that would effect code that makes use of the login functions? I have been holding out for 1.2 but I guess if theres not going to be any or too many changes I may aswell go ahead with my plans.
273 2004-12-16 11:48
Re: PunBB 1.2 development source
its got the chatroom mod iu'm working on installed on it but apart from that heres a working test site http://66.98.138.31/~connorhd/pun1.2beta/index.php
274 2004-12-16 23:41
Re: PunBB 1.2 development source
thanks for the demo. Looks nice, i cant wait until 'till it'll be finished :)
275 2004-12-17 18:48
Re: PunBB 1.2 development source
If been experimenting with 1.2 to adopt it on my website once it goes final. I was making some modifications and I think I found a bug in in PunBB 1.2 beta. It's a bit strange and I really can't figure out what goes wrong. Here's who to replicate it.
Place a file called 'test.php' in the PunBB dir and add the following code:
<?php
class Class1
{
function foobar()
{
return 1;
}
}
class Class2
{
function foobar()
{
global $class1;
return $class1->foobar();
}
}
$class1 = new Class1();
$class2 = new Class2();
echo $class2->foobar();
?>
Now add "<pun_include "test.php">" to 'main.tpl' This should print a 1 at the place where you add it in the template. Most of the times is works, but if you call 'moderate.php' without any arguments, or with the get_host argument you get 'Fatal error: Call to a member function on a non-object in test.php on line 15'
Okay, you might wonder why I want to print a 1 that complicated, but in fact it is a simplification of a module/template system that I don't want to change. This is just the simplest example I could come up with to show the bug.
(I apologise if I should have sent this by mail...)