• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

Melee Vault

LLDL

Smash Hero
Joined
Apr 27, 2007
Messages
7,128
So I've had my own domain for a while, but since my own projects won't come into reality until I graduate from college (or at least take a lot more programming classes), I want to devote the space I have to smash.

I know people have been wanting to make a Melee Vault..so let's make one!

I have unlimited bandwidth, so downloading won't be a problem. And I'll probably upgrade to unlimited hosting space when I get a job. So let's do this.

my domain is http://www.flameex.com

smash related stuff will be located at http://www.flameex.com/smash/

Melee vault will be a community project, so whatever is majority rules, that's what it'll be :)

location would either be at

http://www.flameex.com/smash/meleevault

or whatever you guys think is most fitting.

Then, I want to hire someone (one of you guys) to actually code the melee vault, and I'll host it for you.

Here's what I want it to be able to do.

  1. User's create profiles
  2. Users upload content to a database
  3. Users can upload up to 10 thumbnail images per content upload
  4. Content can be arranged into different groups (textures, stages, music hacks, etc)
  5. Admin/mods can add and remove groups and content
  6. content can be searched alphabetically, by size or upload date
  7. Can have multiple moderators, who I would assign
  8. Comments can be added on content
  9. basically, full gallery functionality, plus the above

It would take way too long if I tried it by myself (although I will if nobody offers, I'll eventually get to it.) Please contact me if you want your professionalism to be put into this site.

And if you guys are fine with just maintaining a forum thread here with all of the hacks and stuff, that's fine. I just see a lot of posts mentioning it, and thought it would make lives easier.

So what do you think? If you can code php, let me know : D
 

RuKeN

Smash Journeyman
Joined
Jan 15, 2010
Messages
215
Location
Spain
i got all textures(and made snapshots of all textures) and audios of melee, can send you
 

TheDekuNut

Smash Journeyman
Joined
May 27, 2010
Messages
413
Location
NJ
we need a vault. i wish i could code : ( maybe i could ask some friends idk
 

K.Louis

Smash Cadet
Joined
Nov 1, 2013
Messages
66
3DS FC
2836-0421-0500
Try asking Picano and Danatarion for the code for Brawl Vault
 
D

Deleted member

Guest
We seriously need a Melee Vault. Melee is the most popular Smash game, it needs more mods!
 

WindozeNT

Smash Ace
Joined
Sep 24, 2013
Messages
559
Location
Texas
NNID
WindozeNT
3DS FC
1865-1050-3752
I can help with writing the site. I have about 3-4 years of experience with HTML, PHP and SQL. Minimally, I can also write JavaScript and CSS. The site itself would be largely PHP and things like user accounts and the Melee Vault itself would use SQL databases. Here's a sample text-based search form without stylesheets:

Search page (HTML):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Search - Melee Vault</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
</head>
<body>
<form action="search.php" method="post">
Search for: <input type="text" name="search-terms"><br />
<input type="submit">
</form>
</body>
</html>


Search results page ordering by release date (PHP with HTML):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Search Results - Melee Vault</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
</head>
<body>
Search results:<br />
<?php
$user_name = "database_user_name";
$password = "database_password";
$database = "database_name";
$server = "mysql.example.com";
$connect = mysql_connect($server, $user_name, $password);
mysql_select_db($database, $connect);

$query = "SELECT `ID_TO_PAGE`, `TITLE_OF_HACK` FROM `TABLE_NAME` WHERE `IDENTIFYING_COLUMN`='".mysql_real_escape_string($_GET['search-terms'])."' ORDER BY SUBSTRING(`DATE`, -4)";
$handle = mysql_query($query) or die(mysql_error());

while($row = mysql_fetch_assoc($handle)) {?>
<a target="_parent" href="http://www.example.com/view.php?id=<?php echo $row['ID_TO_PAGE']; ?>"><?php $row['TITLE_OF_HACK'];?></a><br />
<?php
}
mysql_close($connect);?>
</body>
</html>
 
Last edited:
Top Bottom