Jump to content

pea

Members
  • Posts

    41
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

pea's Achievements

Member

Member (2/5)

0

Reputation

  1. Actually, because of my system, someone who was developing something similar (a clan website host) had asked me to help him finish it. We're still using the clan-system.com domain so please come and visit in a few weeks when it's finished.
  2. The skin of the clan system is only temporary really. It was quickly made for testing and i've never really changed it. I'm also not a graphic designer. There is a member list. i doubt the free webserver you get with gameservers is equipped enough to handle image resizing. i've used non-free hosts that die when they have to resize a large-ish image. That goes for re-captcha as well, i think you need some specific software installed for it. I just want to point out the number of software developers that release their product without finishing it. Games for example; left 4 dead was released with 2 whole levels missing, a player match system that hardly worked and hundreds of obvious bugs. It looks like i might be giving up this project anyway.
  3. Sorry for double posting but this forum is strange in how you're allowed to edit posts, unless i'm missing something. I think I've figured it out. I've known that escaping quotes stops any injection, but I've never followed this rule because looking at the database of forums the quotes aren't escaped. Now I know the slashes aren't actually written to the database. So I've revisited every script sanitizing any content to be written.
  4. Roster - what's that? matches - to come forums - will be compatible with popular forums sponsors - clans have sponsors? Screenshots can't have their own page because they don't normally fit on the screen. It's either lightbox or a link directly to the image. The captcha is fine. I've been using it on my other sites that are more popular than any clan site and they've never been broken. This is my first sql project. I thought I had researched security enough but obviously I haven't. So i'm interested in hearing how you did it. I didn't say that this is only the foundation of what I'm going to do. Buyers would get updates forever. The main selling point will be the ability to monitor game servers. This opens other doors to automatically log matches, player scores etc.
  5. All of those errors have been fixed. I was trying to create a contrast between what gaming websites normally look like and my website. Taken, I could add some more gaming elements. I've done a test of 36 browsers and it looks like IE7 is forcing the footer up, for a reason I'll investigate. If you look at it on any other browser, the copyright and Paypal icon is in the footer. IE8 is showing it correctly. Unless you know of a IE7 CSS hack for this all i can say is download another browser. when I shop online I like to be able to quickly see if they accept Paypal. That's the reason for the icon. Without an icon the user must go to buy it to find out what payment system is used. I've created a page which lets users monitor future features. The link is in the sidebar. I could also add a link in the about page. I purposely left my plans out of the about page because I thought it would highlight what the program hasn't got. 'ClanSystem' is the logo, 'Clan System' is for everything else to aid in the Google ranking. 'ClanSystem' looks better in the logo. Again, I appreciate the response.
  6. That's taught me not to rely on testers who aren't me.. They were just silly mistakes - needed to add some templates. The error page has also had a template and language file added. As for test members, you can register and edit your profile, you just won't be added to the members list until you've been approved into the clan. Before you're approved you won't be able to use certain features like the poll. The screenshots take a long time to load either because you have a slow internet connection or my host is being slow. It shouldn't be anything to do with the code.. Not sure what image you mean, but every image is loading for me. I appreciate the help
  7. Haha. http://www.clan-system.com
  8. Hello. I hope this is the right forum - there are so many! I'm officially releasing my content management system for gaming clans. I wasn't sure what to do about security, but in the end I decided there wasn't much i could do without some clever coding, so it's open for everyone to pirate. I'm going to be offering the CMS for free to a few clans to promote it a bit and get some feedback, so if you happen to own a clan (i'm sure no one here does), please let me know. If you haven't, but are thinking of renting a gaming server, i'm also giving it away if you pick gameservers.com. I should've come here before releasing it actually - I needed people to pull it apart and test it. But anyway, if you're willing to part with £20 i'll gladly refund £15 if you do a decent test . Thanks, Peter
  9. It's working perfectly. Thanks again
  10. Ok I'll give it a go. Thanks
  11. I see, but wouldn't i put that in the smarty class?
  12. So what do you advise i do to get the variable in that string?
  13. Edit: i know how to bloody change variables, and if you looked at what i'm trying to do you'd see what you are asking isn't possible. I think it's a class specific thing. Some people have told me i need to use something called a 'construct', not that i can get this construct to work. I added this just below class Smarty { : function __construct () { db_connect($dbhost, $dbuser, $dbpass, $dbname); $table = $db_label."_templates"; $result = db_query("SELECT * FROM $table WHERE active = '1'"); while($row = mysql_fetch_array($result, MYSQL_ASSOC)){ $template = $row['folder']; } } Still gives me the same result though. I think i understand how you're seeing it. $variable = "this".$that; works normally, but not in classes apparently.
  14. You can't enclose variables in single quotes. It's also a bad idea to use "<?", opposed to "<?php". doesn't SELECT * FROM messages WHERE unread = 'unread' and touser = '$session->username' get the users messages?
  15. The only part that's my code is the part that gets the template name from the database. I know this is working. The only line that i've changed is the line it's complaining about. If i don't change anything the script works fine. So i can assume it's that one line that's at fault.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.