You are not logged in.
- Topics: Active | Unanswered
#1 Re: Show off » Terminal Style » 2011-12-27 08:11:02
- Oldskool
The link doesn't resolve, seems like there is an 's' too many in the subdomain and it should actually be http://forum.michaelsweb.me/
The style looks nice, exactly what you would expect of a terminal-style font. Perhaps change the font to Terminal aswell to complete the look ![]()
#2 Re: Core development » 2.0 -> Master branch » 2011-08-08 12:10:34
- Oldskool
I agree with Jamie. Personally, I think the time to switch branches would be once 2.0 goes stable enough for people to actually run it on a live environment. Just to be sure people don't blindly pull the instable source files to their servers.
#3 Re: Modifications (1.4) » [MOD] Spam IP Check (stopforumspam.com, spamhaus.org, etc.) » 2011-04-30 21:51:25
- Oldskool
Nice one, very simple, but should be very effective ![]()
#4 Re: Show off » =}ESAW{= Gaming Clan Website » 2011-04-04 09:48:41
- Oldskool
Looking very nice. The board is seamlessly integrated to the site. Good job. ![]()
#5 Re: FluxBB discussion » Use FluxBB Authentication in CodeIgniter » 2011-04-04 09:44:22
- Oldskool
I have done a similar thing using CakePHP framework. I know it's not the same, but the basics should be, so perhaps this article will help anyway: http://blog.jandorsman.com/2011/01/flux … tegration/
#6 Re: Core development » 2.0 - case sensitivity » 2011-03-29 08:15:15
- Oldskool
Why not just use case-insensitive like arguments by default, instead of building such a construction as described above? It would seem much simpler and I can't really think of many situations where case-sensitivity would be important (but please enlighten me if you do have reasons for it!).
I definitely agree that all database engines should react the same though. Even though the syntax might differ, you will always want the software to do the same thing, regardless of it's backend.
#7 Re: Show off » All thanks to you Guys, this is my forum :) » 2011-03-28 12:38:07
- Oldskool
Looking good, love the matching portal and the cool style ![]()
#8 Re: FluxBB discussion » is it possibel that guest can't post link ? » 2011-03-27 15:19:09
- Oldskool
This functionality is not in the core. It would require a modification to get this done, which I don't think is too hard to realize if you're a little bit familiar with PHP or know someone that is.
#9 Re: FluxBB discussion » [Discussion] Potential security flaws » 2011-03-23 08:46:54
- Oldskool
http://www.simplemachines.org/community … pic=2987.0
Here is a wonderful talk about it.
Well, I agree with the first reply to that post:
If you are on a shared server that is not chrooted on ftp or ssh login other users will be able to navigate throughout your directories.
Furthermore if someone would use an upload form to upload a PHP-based file browser, he could access pretty much everything on that server. Not that there really is any "real" security on a shared hosting server on which Apache runs under 1 single user anyway though. That's why I tend to use mod_fcgi wherever possible, it isolates the vhosts from each other by using their own user instead of "apache" or "www-data" for all the vhosts. In that case a 777 chmod is pretty much just a risk for that particular vhost.
#10 Re: FluxBB discussion » [Discussion] Potential security flaws » 2011-03-22 13:31:15
- Oldskool
Also im using an upload mod it works perfectly but the drawback behind it is that it needs a 777 right on a specific folder, this is indeed not good so tell me what do you think?
A folder should never need 777 permissions. That just means that you have set the wrong ownership on that folder. An upload folder should need 770 at most.
#11 Re: General support (1.4) » Users changing email addresses after registration » 2011-03-21 15:41:06
- Oldskool
Under Administration > Options, enable "Verify registrations" to force verification of new email addresses if they choose to change from the one they registered with.
Hmm, good point. Guess I need more coffee to start thinking properly again ![]()
#12 Re: General support (1.4) » Users changing email addresses after registration » 2011-03-21 14:59:53
- Oldskool
i just tried it but its still not showing static email even though i've done the exact steps
It won't be showing the e-mail address anywhere, it's just saved in the database as a backup. So you need to manually select the email_original field to get the value. Additionaly, you could modify admin_users.php to list the value of email_original as well.
#13 Re: General support (1.4) » Users changing email addresses after registration » 2011-03-21 13:59:14
- Oldskool
Hi bgiddins,
That shouldn't be too hard. A small modification to your database and register.php should do that trick for you.
Assuming you're on MySQL (since it's the most popular of the choices), alter your database like this:
ALTER TABLE `flux_users` ADD `email_original` VARCHAR( 80 ) NOT NULL AFTER `email`;Your prefix might differ (I have flux_ as prefix), so you might need to drop or change that from the query. Next, change your register.php as follows:
Around line 158, FIND:
==========
// Add the user
$db->query('INSERT INTO '.$db->prefix.'users (username, group_id, password, email, email_setting, timezone, dst, language, style, registered, registration_ip, last_visit) VALUES(\''.$db->escape($username).'\', '.$intial_group_id.', \''.$password_hash.'\', \''.$db->escape($email1).'\', '.$email_setting.', '.$timezone.' , '.$dst.', \''.$db->escape($language).'\', \''.$pun_config['o_default_style'].'\', '.$now.', \''.get_remote_address().'\', '.$now.')') or error('Unable to create user', __FILE__, __LINE__, $db->error());
==========
Then REPLACE with:
// Add the user
$db->query('INSERT INTO '.$db->prefix.'users (username, group_id, password, email, email_original, email_setting, timezone, dst, language, style, registered, registration_ip, last_visit) VALUES(\''.$db->escape($username).'\', '.$intial_group_id.', \''.$password_hash.'\', \''.$db->escape($email1).'\', \''.$db->escape($email1).'\', '.$email_setting.', '.$timezone.' , '.$dst.', \''.$db->escape($language).'\', \''.$pun_config['o_default_style'].'\', '.$now.', \''.get_remote_address().'\', '.$now.')') or error('Unable to create user', __FILE__, __LINE__, $db->error());This will insert an extra field upon registration time in the field email_original. It's value will be static.
#14 Re: General support (1.4) » Forum desc.. » 2011-03-18 13:49:21
- Oldskool
You should be floating the h3 left and the forumdesc aswell.
Or give both elements this CSS code:
display: inline;Should work aswell.
#15 Re: Show off » This is a forum that I made with FluxBB » 2011-03-18 13:20:57
- Oldskool
Franz wrote:While we would appreciate if he wouldn't, he may well do it.
Its always nice to show appreciation to the developers of the software.
True, we always love to see the FluxBB link in the bottom of the boards that use it, but according to the license it's not a requirement.
#16 Re: Core development » Developer meetup #4: March 20, 2011 » 2011-03-18 13:11:55
- Oldskool
I'm not 100% sure if I can make it this Sunday, because we're having quite a large operation planned at work in which my assistance may be required. If all goes according to plan I should be able to make it though ![]()
#17 Re: General discussion » send report to creator of post » 2011-03-13 19:21:35
- Oldskool
The report function is meant for reporting inappropriate posts to the board staff. What you want sounds like a PM mod.
#18 Re: General discussion » Anti-spam stats from FluxBB.org » 2011-03-11 10:25:57
- Oldskool
Nice graphs, looking pretty good ![]()
Thanks for sharing this, cool insight in the spam filtering effectiveness.
#19 Re: General discussion » New net rules set to make cookies crumble » 2011-03-10 13:45:27
- Oldskool
I think it's actually up to browser vendors, not websites. They could limit cookie access just like they do with the geolocation API using user prompts and blacklists. Simple. They should have an option for good old "Allow All", though.
Well, most browsers (the decent ones) already have cookie control options. Although the default is to allow everything, you can set to deny all. I actually do this all the time. My browsers always deny all cookies unless I explicitly state otherwise. Same with JavaScript and media elements (like Flash). I would like to be able to decide whether I want this or not.
It might be a bit inconvenient at first, but once you 'trained' your browser to allow what you want, it keeps your PC clean of the cr*p you don't want
(Like who really wants cookies from doubleclick or tradedoubler or google analytics and such, I'm not asking for them, so bug off... that's my theory
).
#20 Re: FluxBB discussion » Moderators banning moderators? » 2011-03-10 13:18:52
- Oldskool
This is not good, they should only be able to ban regular users.
#21 Re: Show off » feedback? » 2011-03-09 20:36:08
- Oldskool
Apart from the viewforum style, it really starts to look like IPB. Nice job there, the default IPB style was pretty neat and your style is starting to look like it quite nicely. Keep it up ![]()
#22 Re: General discussion » Has anyone done it? » 2011-03-09 12:14:30
- Oldskool
@Oldskool : and how did u manage with 'client changes' ?
IE : you spent hours to do integration with one design, and the client comes and says : "let's start over…".
How did u react ?
Well, that depends on the agreement. Sometimes I charge per hour, then it's simply more hours because of the change. And in some cases I work with a fixed price, in which I tend do draw a line on how far I will go with 'on the fly' changes during development. If it's not too much trouble, I'll do it. But if it requires significantly more work, I prefer to have another sit-down to discuss the changed terms and adjust the fixed price where needed.
#23 Re: General discussion » Has anyone done it? » 2011-03-08 12:14:17
- Oldskool
Lol its stressful, but weeks of coding? That is painful!
Well, yeah but I've only done this for hobby projects, not for paid projects from customers. I couldn't do that
And sometimes I do start from scratch and just move the original code to my local dev archive so I can still borrow the 'useful' code from it ![]()
#24 Re: General discussion » Has anyone done it? » 2011-03-08 11:03:56
- Oldskool
I think this is pretty familiar for any kind of development. Style or otherwise. You don't want to know how many times I'm halfway through a coding project (or even nearly finished) and thinking: "I should be doing this differently, why haven't realised that before?". And sometimes I did delete weeks of coding just to start all over again with my "new plan". ![]()
#25 Re: General support (1.2) » Error message : Incorrect key file for table » 2011-03-08 10:55:44
- Oldskool
Good to hear that everything is working again. And it's no surprise that the host screwed things up with the migration. Luckily they have finally managed to figure that out themselves. ![]()
Good luck with your forum and let us know if you need any other help with it.
