Announcement
Collapse
No announcement yet.
best way to MANAGE games collection?
Collapse
X
-
So, without further ado, here are short instructions for installation:
0. Download Gamedex.zip from here (sorry, couldn't get better place)
1. Expand the zip. Zip should contain SQL.txt and folder named "backlog".
2. First we are going to create database for Gamedex to use. Open SQL.txt.
3a. If you are using front-end to access MySQL, just create new database, and use SQL.txts code to create tables and insert few entries into tables. After you have finished creating tables, you should now have six tables.
3b. If you are using Telnet to access MySQL, input following commands inside MySQL client:
01. CREATE DATABASE xxxx; (This creates database)
02. USE DATABASE xxxx; (switches into created database)
03. Paste everything from SQL.txt into client. Text is already formatted in way that most telnet programs understand.
04. SHOW TABLES; (Shows how many tables you have in current database. If everything went right, you should now have six tables).
4. Database is ready for use.
5. Move "backlog" folder's contents into folder where you want Gamedex to be accessed on the server.
6. After this is done, open connect_database.php from includes/ subfolder by using text editor (notepad, pico, etc.).
7. You should see following two rows:
$RES_DB_Connection = mysql_connect("localhost", "root", "salasana") or die("Blarga");
mysql_select_db("game", $RES_DB_Connection) or die("Blarga");
8. Change "root" with username that you are using to access MySQL. Change "salasana" with your MySQL password.
9. Change mysql_select_db's "game" with name of DB where Gamedex's tables are located.
10. That's it. Everything should work now.
If you don't understand something on the list, please tell me and I will explain it in more detail.
SOME THINGS YOU BETTER KNOW ABOUT THIS APPLICATION:
- Unfortunately, I couldn't find my final beta version of GameDex, which means you are using beta version that is missing PDF-reporting.
- Furthermore, in some places application doesn't say anything at all if you succeeded in your task. One good example is creation of new account.
- Account creation doesn't have email verification on place. This means anyone can come and create account to your GameDex.
- Account removal is missing.
- Core is completely unoptimized. It is secure, but has some primitive solutions (this is really old application).
- MySQL queries are also completely unoptimized.Last edited by Keith; 05-07-2007, 11:39.
Comment
-
Originally posted by elkatas View Post
I use Excel for my N64 games but I do feel like I too need something to allow me to keep track of everything I've got. Easily spirals out of control and I sometimes discover stuff I forgot about.
Comment
-
Great news... pal of mine promised to host GameDex for public betatesting. Application can be accessed here:
http://zirkonium.net/backlog/
Last edited by elkatas; 06-07-2007, 13:21.
Comment
-
Originally posted by elkatas View PostHmh, do following.... open default.php. Find row error_reporting(0); and put comment marks on the front of it, disabling it:
// error_reporting(0);
Then try creating account again.
However I see that it's not been cancelled and you are still posting.
Comment
-
Originally posted by John Beaulieu View Postinput verification is broken and password not complex enough error is stopping me from trying this out
Comment
Comment