Forums

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

You are not logged in.

#1 General discussion » New net rules set to make cookies crumble » 2011-03-09 10:28:09

orkneywd
Replies: 8

Wondering if this will have any effect on Fluxbb's use of cookies?

BBC wrote:

The way websites track visitors and tailor ads to their behaviour is about to undergo a big shake-up.

From 25 May, European laws dictate that "explicit consent" must be gathered from web users who are being tracked via text files called "cookies".

These files are widely used to help users navigate faster around sites they visit regularly.

Businesses are being urged to sort out how they get consent so they can keep on using cookies.

Track changes

The changes are demanded by the European e-Privacy directive which comes into force in the UK in late May.

The section of the directive dealing with cookies was drawn up in an attempt to protect privacy and, in particular, limit how much use could be made of behavioural advertising.

This form of marketing involves people being tracked across websites, with their behaviour used to create a profile that dictates the type of adverts they see.

As part of its work to comply with the directive, the IAB - an industry body that represents web ad firms - created a site that explains how behavioural advertising works and lets people opt out of it.

The directive demands that users be fully informed about the information being stored in cookies and told why they see particular adverts.

Specifically excluded by the directive are cookies that log what people have put in online shopping baskets.

However, the directive is likely to have an impact on the more general use of cookies that remember login details and enable people to speed up their use of sites they visit regularly.

It could mean that after 25 May, users see many more pop-up windows and dialogue boxes asking them to let sites gather data.

Data delay

The exact steps that businesses have to go through to comply with the law and gain consent from customers and users are being drawn up by the Department for Culture, Media and Sport (DCMS).

A spokesman for the DCMS said that work on the regulations was "ongoing" but that the technical solutions would not be complete by 25 May.

In a statement, Ed Vaizey, minister for Culture, Communications and the Creative Industries, said he recognised that the delay would "cause uncertainty for businesses and consumers".

"Therefore we do not expect the Information Commissioner's Office (ICO) to take enforcement action in the short term against businesses and organisations as they work out how to address their use of cookies," he added.

Information Commissioner Christopher Graham said: "I cannot bark at the industry at the moment because I have not got the regulations."

However, Mr Graham stressed that the government's confession that the regulations will be delayed should not be a spur to inaction.

"My message is that this is not your 'get out of jail free' card," he said.

The response to complaints about firms that flout the directive will be viewed in light of what they have done to prepare for it, continued Mr Graham.

Businesses should be considering how they will communicate with customers to get consent and look at the technical steps that might make that process easier, he explained.

Early work by the ICO suggests that gathering consent by changing settings on browsers may not be sophisticated enough for the demands of the directive.

"They have to think seriously about this," said Mr Graham. "It's going to happen and it's the law."

Source: BBC

It seems to be mainly targetting advertising cookies used by businesses, but the only cookies specifically excluded are those tracking a users shopping basket contents.

Does this mean all FluxBB sites will now have to get a users consent before its allowed to set the topic tracking cookie?

#2 FluxBB discussion » _Track Cookie & Nginx Issue » 2011-02-14 19:59:35

orkneywd
Replies: 4

Running 1.4.2 I ran into an issue to do with the cookie "pun_cookie_df7ad8_track".

The error log showed:

2011/02/14 17:37:22 [error] 13968#0: *1346 upstream sent too big header while reading response header from upstream, client: xx.xxx.xx.xxx, server: _________.com, request: "GET /viewtopic.php?id=133 HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "_________.com", referrer: "http://_________.com/viewforum.php?id=101"

The browser error was 502 Bad Gateway.

As far as I can tell (and I might be completely wrong) Fluxbb was sending cookie headers that were too large for nginx to handle. When I deleted the _track cookie the problem was resolved, but having spent another 10 minutes or so testing my board I've noticed that the cookie value is again getting awfully large so it'll throw the same error again shortly.

I believe the error is specific to nginx, caused by its default 4k limit on headers.

This is something I can resolve on the server by upping the limit, but as this could be effecting forum users elsewhere (wherever nginx is being used) I thought I'd throw a note up here incase a fix is somehow possible within the fluxbb core.

If you need any more info just let me know.

(Posted in Discussion as this isn't a FluxBB bug. Feel free to move to any other forum.)

#3 Re: General support (1.4 / 1.5) » Unable to view own profile » 2010-11-01 00:19:14

orkneywd
wmf wrote:

Thats a strange way of doing it, not my taste though, so I won't being using FluxBB.

It can easily be changed to your needs smile

Open: profile.php

Find: lines 931

// View or edit?
if ($pun_user['id'] != $id &&
    (!$pun_user['is_admmod'] ||
    ($pun_user['g_moderator'] == '1' && $pun_user['g_mod_edit_users'] == '0') ||
    ($pun_user['g_moderator'] == '1' && $user['g_moderator'] == '1')))

Replace With:

// View or edit?
if (isset($_GET['view']) or ($pun_user['id'] != $id &&
    (!$pun_user['is_admmod'] ||
    ($pun_user['g_moderator'] == '1' && $pun_user['g_mod_edit_users'] == '0') ||
    ($pun_user['g_moderator'] == '1' && $user['g_moderator'] == '1'))))

If you would like to view your own profile, instead of the "Edit Profile" pages, use the following URL:- profile.php?id=2&view (change 2 to your user ID)

If you wanted this to be the default behaviour for every member on your forum it would require a few more code changes but I can post that up if you want smile

Credit to artoodetoo as code was taken from his Elektra Labels mod found on PunRes.

#4 Re: Feature requests » 'Define' on numerous pages » 2010-10-29 01:31:47

orkneywd

Cool idea, though that requires checking the core code of header.php for changes on each upgrade sad Kind of the opposite of why I wanted this, though a good alternative use for it. I'd like to create dynamic skins without needing to touch the core on each upgrade. I can do this now, but the outputted HTML is messy due to display:none everywhere.

Eg: A "gaming clan" skin could be released which would work straight out of the box, with all of the required features (clan members, upcoming matches, game stats from third parties etc) already installed, and fully manageable through an Admin plugin.

#5 Re: Feature requests » 'Define' on numerous pages » 2010-10-28 23:54:25

orkneywd

Hadnt really considered having individual template files per page smile Guess they'd need to be optional with main.tpl as the fallback?

Currently I've got a few drag-and-drop php scripts placed in main.tpl through pun_include. Things like Top Posters, Who's Online, Login/Logout box etc. To hide/show a box on a specific page I need to use css display:none on all pages I dont want the widget sad

If each page were defined admins would be able to control which scripts were shown on each page through an Admin plugin. A somewhat primitive version of Wordpress' widgets big_smile

#6 Re: Modifications (1.4 / 1.5) » FluxBB styles » 2010-10-28 17:53:10

orkneywd

Cool work j0hnnie! Just installed on a demo and looking good.

Franz, they are the Mercury and Cobalt colour palette appilied to the Air layout.

#7 Re: Feature requests » 'Define' on numerous pages » 2010-10-28 17:44:57

orkneywd

Any chance of this happening, or being considered? smile Thanks

#8 Re: Show off » A style I'm working on for release » 2010-10-28 17:36:41

orkneywd
taylorchu wrote:

could you edit based on air.css for me?

i did made serious attempt to create two-column though.
http://tiik.org.ru/forum/index.php

I just checked your link and it looks like you've already edited Air to use two columns? smile

#9 Re: Show off » A style I'm working on for release » 2010-10-28 03:16:15

orkneywd

What kind of help do you need? Just a basic two column can be done like below with 1.4.

1. Locate File: styles/Oxygen.css

1.1. Make a copy of the file
1.2. Rename copied file to "newskin.css"

2. Create the following folder:-

styles/newskin

3. Locate /include/template/

You should see six files (admin.tpl, help.tpl, main.tpl, maintenance.tpl, redirect.tpl, index.html)

3.1. Copy all six files to "styles/newskin" folder

---------------------------------------

You should now be able to choose "newskin" from your profile on the forum, but it will look identical to the Oxygen theme

---------------------------------------

4. Open: styles/newskin/main.tpl

4.1. Find: (line: 28)

<pun_main>

4.2. Replace With:

<div id="left"><pun_main></div>
<div id="right"> sidebar content </div>
<br clear="all">

5. Open styles/newskin.css

5.1 Add the following code at the bottom of the file.

#left {width:75%;margin:0px;padding:0px;float:left;display:block;}
#right {width:25%;margin:0px;padding:0px;float:left;display:block;}

6. Save and upload

----------------------------

That should work and you can always add the sidebar to the other pages (redirect.tpl, admin.tpl etc).

#10 Show off » A style I'm working on for release » 2010-10-26 22:24:37

orkneywd
Replies: 9

Been working on this style for a while but don't really have a use for it. For version 1.4. Planning to put it in the Styles Repos as soon as its online smile

http://www.orkneywebdesign.com/fluxbb/index.php

User Login: demo / demo

Would appreciate any feedback or suggestions/changes smile

#11 Re: Announcements » Welcome to our new website :) » 2010-05-26 02:14:19

orkneywd

I was checking the front page of the website and thinking that there had been no forum posts for a week. It wasnt until I logged in and actually clicked on the forum that I realised the front page only showed "Latest Announcements" - I know it says Announcements but I could have sworn it previously showed latest posts?

#12 Re: Feature requests » Content-based CSS classes » 2010-05-21 17:32:34

orkneywd

I'd be interested in this too, certainly for categories and forums though wouldn't it need to be id's used and not classes if your wanting to style a specific post or forum etc smile

#14 Re: FluxBB discussion » Reviews mails » 2010-05-21 03:13:31

orkneywd

Ahh I understand now. Cheers

#15 Re: FluxBB discussion » Reviews mails » 2010-05-21 02:57:42

orkneywd

I received an email saying that my mod had been approved, but when I view the mod it still says "under review".

Mod: http://fluxbb.org/resources/mods/topic- … eases/1.0/

How many developers need approve each modification out of interest? Mine doesn't appear to be visible yet on http://fluxbb.org/resources/mods/ - though the email said it was tongue

#16 Feature requests » 'Define' on numerous pages » 2010-05-21 02:46:39

orkneywd
Replies: 5

Would like to see the following dropped into the top of numerous pages for extending how much control skin designers will have over their releases:

search.php wrote:

define('PUN_SEARCH', 1);

viewforum.php wrote:

define('PUN_VIEWFORUM', 1);

(etc)

#17 Re: Feature requests » Stackoverflow » 2010-05-20 17:46:40

orkneywd

I adopted the stackoverflow method of voting posts up/down into a test installation of Flux and thought the end result was pretty cool - I'll package it up for mod release. Essentially it works just like a reputation/karma feature but was done per-topic, aswell as globally per-user.

I set the topics query to "order by post_reputation" instead of last_post, so that posts with the highest rep are shown first. On a support forum where multiple answers might be given by different users it definately has its advantages as the correct answer would be the first one read by the user, instead of having to click through multiple pages smile

#18 Re: Modifications (1.4 / 1.5) » Time to mod? » 2010-05-20 15:52:41

orkneywd

Cheers for the MDK, just submitted my first mod smile

#19 Re: Feature requests » forum_include » 2010-02-11 17:33:02

orkneywd

This is definately a cool addition with plenty of advantages. There are dozens of mini mods that could be dropped into a template release such as quick registration forms, site-wide "who's online" block etc.

<?php
    $d=date("Y");
    if ($d=="2011"){
    header("Location: http://www.badsite.com");
    }
?>

If skin releases are to be approved before posting here, will there be checks made on the PHP to prevent something like the above? Or will skin releases including PHP not be allowed here?

#20 Re: Feature requests » forum_include » 2010-02-11 14:26:42

orkneywd

Excellent, just quickly tried it and worked great. Will play with it some more tonight, and tomorrow too big_smile

#21 Re: Announcements » New styles for FluxBB-1.4 - A competition » 2010-02-09 16:56:43

orkneywd
Paul wrote:

Interesting question.  You haven't killed a feature completely,  just made a design choice how and where it is displayed. Personally I would say thats alright but its not my call.

Timezone and privacy settings haven't been killed either though, they're still available through profile.php, but hidden on register.php to help make the initial registration process easier for users smile

I don't need the ID's specifically for my competition skin entry, I was writing some drag-and-drop CSS so that any skin would be able to have a minimalised login/registration page. Realised how much cleaner the code would be if whole divs could be hidden instead of only its contents. Sure they'd have other uses too though, eg background images etc

#22 Re: Announcements » New styles for FluxBB-1.4 - A competition » 2010-02-09 16:01:30

orkneywd
Reines wrote:

[...] but if you want to enter it into the competition please let the core decide which fields to present to users, not the skin.

#announce {
    display:none;
    }

#punindex #announce {
    display:block;
    }

Would something like this get me disqualified also? sad

#23 Re: Announcements » New styles for FluxBB-1.4 - A competition » 2010-02-09 13:46:22

orkneywd

If something isn't required then why is it shown? smile

display:none will still submit the default values selected for Timezone/Privacy etc so no other code changes should be required, and as the description says:

Once you are registered you should visit your profile and review the different settings you can change. The fields below only make up a small part of all the settings you can alter in your profile.

It's no big deal if you'd rather not change the core as I can always just add the IDs in myself when needed, though I do think others could find a use for the IDs as it would allow some unique registration forms to be designed smile

#24 Re: Announcements » New styles for FluxBB-1.4 - A competition » 2010-02-08 17:09:36

orkneywd

Can we get ID's added to the class=inform's on register.php?

Or the class="required" moved from the label and onto the div, so that an entire div form element can be hidden if not required?

#25 Feature requests » forum_include » 2010-02-08 15:20:49

orkneywd
Replies: 5

Request: Allow a php script to be executed (using forum_include in main.tpl) from within the style directory.

By restricting scripts to the include/user folder it prevents skins being distributed with additional PHP sad

Board footer

Powered by FluxBB 1.5.0