1
0
Fork 0
WEB source old php code of the skindb api site https://skindb.sourceforge.io/
 
 
 
 
Go to file
mckaygerhard a32b524256 img display 1 : add small excersice to ilustrate uploading and printing the png file
* the uploading and display rendering process is done..
* data path is hidden cos the image is rendering using base64
* we must then use small DB to display images in upstream on new images
2024-04-26 08:59:22 -04:00
.idea experimented with PhpStorm 2013-08-17 13:43:49 +02:00
api pushed some changes made a long time ago 2014-12-23 03:09:56 +01:00
css updated to x3dom 1.8.2 stable 2014-12-23 03:09:12 +01:00
doc init all 2013-08-07 18:53:19 +02:00
helpfiles added file about cape compatibility 2014-02-28 08:49:56 +01:00
img added diffrent cameras,param cape_compatible, toolbar improofments 2014-02-28 08:51:39 +01:00
js pushed some changes made a long time ago 2014-12-23 03:09:56 +01:00
work img display 1 : add small excersice to ilustrate uploading and printing the png file 2024-04-26 08:59:22 -04:00
.gitattributes init all 2013-08-07 18:53:19 +02:00
.gitignore show if filter is active 2014-09-03 10:07:10 +02:00
.htaccess tried to fix the cache problem 2013-08-19 11:41:28 +02:00
.project updated aptana studio 2013-12-29 07:01:54 +01:00
2dview.php lots of changes 2014-09-01 08:45:33 +02:00
api.php created api.php 2013-08-19 11:41:55 +02:00
crossdomain.xml init all 2013-08-07 18:53:19 +02:00
download.php init all 2013-08-07 18:53:19 +02:00
editor.html updated editor 2014-09-02 13:37:25 +02:00
favicon.ico init all 2013-08-07 18:53:19 +02:00
functions.php added 2d preview and ability to share the skin in minetest forum 2014-01-05 04:33:34 +01:00
getskins.php pushed some changes made a long time ago 2014-12-23 03:09:56 +01:00
humans.txt init all 2013-08-07 18:53:19 +02:00
index.html show if filter is active 2014-09-03 10:07:10 +02:00
index.php img display 1 : add small excersice to ilustrate uploading and printing the png file 2024-04-26 08:59:22 -04:00
mt_skins.sql added uploaddate to the database 2013-08-13 17:19:59 +02:00
readme.md readme.md edited online with Bitbucket 2014-09-01 06:23:32 +00:00
reportSkin.php added diffrent cameras,param cape_compatible, toolbar improofments 2014-02-28 08:51:39 +01:00
robots.txt init all 2013-08-07 18:53:19 +02:00
shareSkin.php added 2d preview and ability to share the skin in minetest forum 2014-01-05 04:33:34 +01:00
upload.php pushed some changes made a long time ago 2014-12-23 03:09:56 +01:00
x3dom.swf updated to x3dom 1.8.2 stable 2014-12-23 03:09:12 +01:00

readme.md

this is a playerskin database with a html user interface for the game minetest-c55

#Instalation instruction: you must create the file connectsql.php first. enter all connectinformation and than connect to mysql and select a database

if you want the report function working than you shuld enter your email in the $report_mail. 1.

#!php


	<?php 	
	$MYSQL_HOST = "localhost"; //server address to the mysql server	
	$MYSQL_USER = "***"; //username to the database	
	$MYSQL_PW = "***";// the pw for the user	
	$MYSQL_DB = "***";//the name of the db	
	$conn = mysql_connect($MYSQL_HOST, $MYSQL_USER,$MYSQL_PW); /* connecting to mysql */	
	mysql_select_db($MYSQL_DB,$conn); /* connecting to the database */
	
	$report_mail = "somebody@somebody.tld" //the email where all reports will sent
	?>

  1. execute the mt_skins.sql file to create the table.

  2. run the index.html page and use the upload function to insert some images

#IMPORTANT info for people who want to help me with this project:

pull requests are welcome! but if you are doing some changes on the database please save that in the mt_skins.sql file too before you create a Pull Request!