Forums

Unfortunately no one can be told what FluxBB is - you have to see it for yourself.

You are not logged in.

#26 Re: Modifications (1.4) » Event Registration/signup Mod Request » 2010-04-06 23:29:32

StevenBullen
quy wrote:

For viewtopic.php, please add the table prefix to the events table.

$event_result = $db->query('SELECT user_id, username, available FROM events WHERE topic_id = '.$id) or error('Unable to fetch event info', __FILE__, __LINE__, $db->error());

Done - 1.2

quy wrote:

Your language entry is:

'Delete'            =>    'x'

is overwriting this language entry:

'Delete'        =>    'Delete',

Done - 1.2

quy wrote:

I may have done this wrong, in viewtopic, if you are not the author of the topic, the "Available  / NOT Available" links don't appear.

It works fine on my test machine, I will double check the IF statement for it tomorrow when I get up in the morning.

I will release v1.2 tomorrow with all the fixes.
Thanks guys. Looks like I will be doing a lot more testing next mod.

#27 Re: Modifications (1.4) » Event Registration/signup Mod Request » 2010-04-06 22:26:34

StevenBullen

I will be releasing it daily at this rate lol

So I have decided to put that on the to do list with a few other minor things that could be changed/updated on v1.2.

#29 Re: Modifications (1.4) » Event Registration/signup Mod Request » 2010-04-06 22:06:21

StevenBullen

@mattT09
Thanks for the bug and enjoy the mod.

Ok version 1.1 has been released in less than 12 hours. Doh!

Simple Attendance 1.1

#30 Re: Modifications (1.4) » Event Registration/signup Mod Request » 2010-04-06 12:07:36

StevenBullen

For anyone else who might want this functionality.

Simple Attendance 1.0

I'm guessing 1.1 will be released in a day or two as not given it a hard testing yet.

#31 Re: Modifications (1.4) » Event Registration/signup Mod Request » 2010-04-05 10:56:15

StevenBullen

@Franz Are you taking this yeah?

If not, then SackofDoorKnobs you can contact me at stevenbullen[at]gmail[dot]com and I can sort that out for you.

#32 Re: General support (1.4) » smilies » 2010-04-05 10:53:42

StevenBullen

Search include/parser.php for this line

<img src="'.$pun_config['o_base_url'].'/img/smilies/'.$smiley_img.'"

then remove this from that line

width="" height=""

Should fix the problem.

#33 Re: General support (1.4) » Guide me this » 2010-03-24 18:39:17

StevenBullen

Quick search on punres.org and I found this Flash MP3 Player (FR+UK).

If you have any problems with the mod working then post on punres.org for support.

#34 Re: Modifications (1.4) » Mods shouldn't edit the core?! » 2010-03-23 13:39:12

StevenBullen

1.3 is like that. 1.2 and 1.4 you need to edit the core 99% of the time.

#35 Re: General discussion » Possibly useful links for validation, page analysis etc. » 2010-03-22 19:12:14

StevenBullen

Would it not make more sense to go with the Official one first.
http://validator.w3.org/check/referer

That said... I do like. smile
http://uitest.com/en/analysis/

#36 Re: General support (1.4) » Fixed size smilies » 2010-03-15 12:38:22

StevenBullen

Well my 1.2.* code was simliar to below...

Add the _w _h lines.

$smiley_text = array(':)', '=)', 
$smiley_img = array('smile.png', 'smile.png', 
$smiley_img_w = array('15px', '15px',
$smiley_img_h = array('15px', '15px',

then change

$text = preg_replace("#(?<=.\W|\W.|^\W)".preg_quote($smiley_text[$i], '#')."(?=.\W|\W.|\W$)#m", '$1<img src="img/smilies/'.$smiley_img[$i].'" width="15" height="15" alt="'.substr($smiley_img[$i], 0, strrpos($smiley_img[$i], '.')).'" />$2', $text);

to

$text = preg_replace("#(?<=.\W|\W.|^\W)".preg_quote($smiley_text[$i], '#')."(?=.\W|\W.|\W$)#m", '$1<img src="img/smilies/'.$smiley_img[$i].'" width="'.$smiley_img_w[$i].'" height="'.$smiley_img_h[$i].'" alt="'.substr($smiley_img[$i], 0, strrpos($smiley_img[$i], '.')).'" />$2', $text);

#37 Re: General support (1.4) » Fixed size smilies » 2010-03-15 08:56:27

StevenBullen

Matt's idea will work on most forums and you probably wont even notice the loading. But personally I prefer to fix the whole problem than quick-fix it. tongue

I will say it again but copied from another site that explains it better. wink

Before an image has downloaded, a box will appear showing where on the page it will be. This box may be any size, and often the wrong size. Then, when the image finally begins to download, it is suddenly found to be too big for the space your browser has given it, and so everything has to be shifted around to make room, messing up whatever you were reading at the time and generally causing a disturbance. You can prevent this with the height and width image attributes.

Giving the correct size has many advantages:

    * It stops the loading mess-ups
    * Your page appears to be loading faster, as everything is in place
    * If people have images turned off, they still get the same page layout

mattT09 wrote:

As I said 'it all seems to display correctly'.

Well unfortunately not just the browser can make this a problem.
  1. broadband speed/connection
  2. server strain
  3. and no doubt many more

So eventhough it might display and load perfectly for you it does not do the same for others.


It's not even a major issue but not something that should be changed. smile

#38 Re: General support (1.4) » Fixed size smilies » 2010-03-13 23:59:19

StevenBullen
Mpok wrote:

U added this a long time ago : do u think that issue u mentionned is still valid with actual browsers versions ?

Cannot confirm which browsers of the top of my head.

Mpok wrote:

PS : even if so, don't u think the limits (15x15) are too low ?

Well on mine it was not set to 15px by 15px.

I made 2 extra arrays at the start of the parser.php which held the width and height of each smilie. This way I could have any size smilies and still fix the problem. (ignored help.php as people rarely use it)

I can post the code, but it wont work with 1.4 as they have modified the code slightly.

#39 Re: General support (1.4) » Fixed size smilies » 2010-03-13 16:18:53

StevenBullen

Yes.

When the page is loading the image smilies will sit at 15px * 15px even if the page is still loading. If you remove this code it will show you a much bigger box and make the page look weird as it loads. (Not on all browsers but it is an issue)

I added the width and height on previous version so this is a welcome addition. wink

#40 Re: Announcements » Style competition entries » 2010-03-12 22:54:47

StevenBullen
Lirodon wrote:

If this wins, maybe you could think about making all of the "classic" color styles variants of it.

That's a good idea. I did like the 6 standard colours that PunBB came with.

#41 Re: Announcements » Style competition entries » 2010-03-12 13:55:28

StevenBullen

Technetium looks the best to me. big_smile

#42 Re: General discussion » fluxbb 1.4 RC2 will released. » 2010-03-09 13:26:37

StevenBullen

Off-topic - Change the title on this topic please. smile

#43 Re: FluxBB discussion » PunRes Wiki (@StevenBullen) » 2010-03-03 00:33:20

StevenBullen

Yeah the wiki has a backup, it will be up again shortly (days not hours).

#44 Re: Feature requests » Users registering for link juice! » 2010-03-03 00:02:05

StevenBullen

Thanks Reines, will check it out. smile

#45 Re: Feature requests » Users registering for link juice! » 2010-03-02 11:46:45

StevenBullen
Reines wrote:

I was hoping to test this out on the new website once it goes live, but will maybe post what I've done so far when I get home from vacation (Monday 1st).

Posting what you have would be appreciated and agree that it cannot be stopped completely.

#46 Re: General support (1.4) » Anything happening to stop bots aka releasing Captcha/Re-Captcha mods? » 2010-03-02 11:41:42

StevenBullen

Yeah registration was halted on http://punres.org/ for this reason, but not only this reason. wink

Captcha mod can only do so much. Check this comment made by reines concerning this.

Nothing will stop it completely. sad

#47 Re: General support (1.4) » forum laggy and Trac broken » 2010-03-02 11:35:37

StevenBullen

It was down for a few hours for me tongue nevermind

#48 Re: Modifications (1.4) » What mods will be working with 1.4? » 2010-03-01 20:06:43

StevenBullen

You can use 1.2 mods from Pun Resource, they will probably need a little tinkering but nothing major.

In the future mods will be hosted here but will no doubt need to pass a check from the main developers before being authorised by FluxBB

#49 Re: Feature requests » Users registering for link juice! » 2010-02-22 16:24:09

StevenBullen

Working on what? 40 pages of new users in 7 days.

#50 Feature requests » Users registering for link juice! » 2010-02-22 13:50:28

StevenBullen
Replies: 14

Check the link below...
Userlist Search

No way all of the users joined fluxbb today to contribute, any chance on a discussion to fix this?

Board footer

Powered by FluxBB 1.4.8