Shakes & Fidget Private - Full Script (Tulyita)

06/10/2014 17:19 UND3RW0RLD#661
DELETED
06/10/2014 17:29 Astorphobis#662
Hello why have i got connection problem? Like with bad MySQL connect.. it seems like... but I have edited everything and I've still got the problem... Do you know why? And does the witch work? Thank you!
06/10/2014 19:00 Heroic9614#663
[Only registered and activated users can see links. Click Here To Register...]
Challenge accepted :)
I rewrote it a bit wrong .. I do not know how much of a part in my own language, I changed that supposed to mean exactly what it is written on the other hand, I have developed a little bit :)


I can not understand because I go I'm Hungarian.
06/10/2014 19:11 UND3RW0RLD#664
looks really nice :)
06/10/2014 19:36 Heroic9614#665
thank you
06/11/2014 01:41 eskocze#666
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ View Post
Hey elitepvpers,

today I share the [Only registered and activated users can see links. Click Here To Register...] source. It's from 03.06.2014 with clean db, but without ressources.


Content:
-> full server with some fixes
-> adminui latest generation (multi-userlevels)
-> clean db (only structure except of systemuser and config)


Requirements:
Apache2,mysql,php minimum
access to system() and exec() for serverload-bar
"res" from an other release (crasim released an awesome package here)


Installation:
the usual way
- up all content to the server
- modify
-- root/request.php
-- root/dtoverride.php
-- root/usercount.php
-- root/adminui/backend/config.php
-- root/adminui/backend/secrets.php


Why do I do this?
PHP Code:
/*
// At the very end of this scripts I want to leave some personal comments. It's not needed
// to read it, but I feel, I need to write this. All this is based on NV-Tracker which is
// based on Torrentbits-Tracker by RedBeard. His work made this possible. Of course it would
// not be possible without the help of to much people to name them all. A list of them is
// placed in stdfoot(). A special internal greet flies out to Manuel, who brought me to this
// project. He's the one, for who this ACP was basicly created. He payed the server I used for
// all tests and he's the glue of all this. Keep in mind: Bytes are free! You can't stop the
// spread of files. You can't stop an idea. Opensource software is the root of all what we are
// doing. Do never take your own advantage out of OS-projects. Without OS most of us wouldn't
// even start to do this shit, or would be able to start and learn from it. Principles like
// filesharing and support of it is the basement all this is build on. If you are new to this:
// Rip everything of this script you need. Learn from it, adapt it and improve it and of course:
// share it, to make the same possible to the new generation of developers.
*/ 

Downloadlink:
Code:
http://www58.zippyshare.com/v/84229055/file.html
Credits:
- Crasim (he is always a big help and just get the things done)
- eptun (he always makes me smile)
- Sascha (for the sick html-stuff.. who says html is easier than php?)
- Manuel (for his money ^^)
- netvision-technik
- redbeard & gartenzwerg
- the rest i forgot.. ;)

Pictures (maybe you see stuff which is not included)
[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]
Everything I have written well but I just writes an error connecting to server im using VPS
06/11/2014 05:17 UND3RW0RLD#667
For me it works.. If you follow the steps, it should work.
06/11/2014 13:22 Aureor#668
huh, nice. Really good job.
06/11/2014 21:59 MsCryCZ#669
What is the name of the administration of basic
or how to change
06/11/2014 22:13 Aureor#670
Go into mysql, set in user_data -> usysclass 1-5

// User levels
define (UC_USER, 1);
define (UC_POWER_USER, 2);
define (UC_VIP, 3);
define (UC_SUPPORTER, 4);
define (UC_ADMIN, 5);
06/12/2014 07:14 MsCryCZ#671
How Aureor

made by someone that administration from German to Czech? Although I go to the German language, but everything still do not know how I'd like one would do it.
06/12/2014 09:54 Heroic9614#672
translate in.... Im translate hungary...

htttp://translate.google.com...
06/12/2014 10:29 sanya1020304050#673
Heroic9614 van egy kérdésem, hogyan is kell megcsinálni hogy pl, van egy oldal és maximun 30 ember lehet felmenni az oldalra.. remélem érted..

Na az biztos nehéz munka lesz :D
06/12/2014 14:02 usama2122#674
I added this code to request.php and guild chat still not working: C, what is it?


Quote:
case $ACT_SEND_CHAT :
// the ususal stuff
// msg;reciver
$data = explode ( ';', $action_extra );

$msg = urlencode($data[0]);

$time = new DateTime ();
$time = $time->getTimestamp ();

$recid = $data[1];

// get some ids
$qry = $db->prepare ( "SELECT user_id, guild_id FROM user_data WHERE ssid = :ssid" );
$qry->bindParam ( ':ssid', $SSID );
$qry->execute ();
$ids = $qry->fetchAll ();

// put into db
$qry = $db->prepare ("INSERT INTO guild_chat(guild_id, sender_id, reciver_id, time, msg)
VALUES(:guildid, :uid, :recid, :time, :msg)");
$qry->bindParam ( ':guildid', $ids [0] ['guild_id'] );
$qry->bindParam ( ':uid', $ids [0] ['user_id'] );
$qry->bindParam ( ':recid', $recid );
$qry->bindParam ( ':time', $time );
$qry->bindParam ( ':msg', $msg );
$qry->execute ();

//$ret = array (
//"162".$ids [0] ['user_name'].":" . $msg . ";" . $recid
//"162"
//);

break;
06/12/2014 14:49 UND3RW0RLD#675
DELETED