Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
is it possible to join at the back-end of the forum and start to code there?
if yes how, and what requirements are there?
cheers,
mylo
PS: it's just because i want to support the forum, but don't really have the money to do so. maybe i can help there a little bit.
Offline
The forums are powered by FluxBB, which is coded in PHP, but I doubt they'll just hand you FTP credentials. I'm an administrator and I'm still not allowed to fix bugs in the forum first-hand.
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
It's a huge security concern and a huge responsibility to keep user credentials safe, and posts intact.
It isn't the best of time to submit an application, and any code does need to be reviewed - even FluxBB updates.
*u stinky*
Offline
It's a huge security concern and a huge responsibility to keep user credentials safe, and posts intact.
It isn't the best of time to submit an application, and any code does need to be reviewed - even FluxBB updates.
uh. but isn't the code of the forums separated from the database stuff? maybe a private repositorie on bitbucket with the forum code would do it. anyways. it was just a idea - i guess even the forum would need to get a upgrade once at the time.. ;b
but. alright (:
Offline
It's a bad idea to let random people edit the forum.
Since you can access the database from the forum, it doesn't really matter that they're separate. Allowing anyone database access is a horrible idea.
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
sigh. that's what i've meant. separate the actual forum code and the database code, and maybe put it on a private repository. haha:p
you know like
<?php $database_password="snip" ?> there and at the actual forum <?php $database_password="somecoolpassword" ?>
but nvm.
Last edited by Mylo (Sep 14 2014 8:09:05 pm)
Offline
I didn't misunderstand you.
You can keep outside people from getting at your MySQL database easily. That's not the problem. The problem is that you can just slap
$db->query("TRUNCATE TABLE ee_users");
in any old PHP file and wait for somebody to load the page, completely destroying the forum. Giving them access to the forum code is the same as handing them database access, even if there are no passwords or anything involved. No matter how much you separate it. That's what I meant by
Since you can access the database from the forum, it doesn't really matter that they're separate.
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
Pages: 1
[ Started around 1738557660.5381 - Generated in 0.046 seconds, 12 queries executed - Memory usage: 1.44 MiB (Peak: 1.57 MiB) ]