mehmetejr Posted August 28, 2014 Posted August 28, 2014 Hey guys.I bought UG scripts and it has ucp,how can I setup this system on vds ? Can you tell me ? Thank you
mehmetejr Posted August 28, 2014 Author Posted August 28, 2014 Just put it on a web host? Hmm, // Server Database $ Config ['database'] = array (); $ Config ['database'] ['hostname'] = 'localhost'; $ Config ['database'] ['username'] = ''; $ Config ['database'] ['password'] = ''; $ Config ['database'] ['database'] = ''; $ Config ['SMTP'] = array (); $ Config ['SMTP'] ['hostname'] = "127.0.0.1"; $ Config ['SMTP'] ['port'] = 25; $ Config ['SMTP'] ['username'] = ''; $ Config ['SMTP'] ['password'] = ''; $ Config ['SMTP'] ['from'] = ''; $ Config ['server'] = array (); $ Config ['server'] ['hostname'] = 'localhost'; $ Config ['server'] ['username'] = ''; $ Config ['server'] ['password'] = ""; $ Config ['server'] ['hashkey'] = ''; Hashkey did not understand? What do you mean? How do I fill out? 'server' and 'database' What is the difference?
xXMADEXx Posted August 29, 2014 Posted August 29, 2014 $Config['database'] needs to have the same connection info as your server. $Config['server'] needs to have your server connection info. Username and password need to be the account details for an admin action, but I don't know what hashkey suppose to be.
Mr_Moose Posted August 29, 2014 Posted August 29, 2014 From a wild guess I would say that the hash key is probably a way to choose encryption algorithm for user accounts, you could try 'md5', 'sha2' or similar in that field, if it doesn't work you'll find out. I still believe that you got scammed with this script though: https://forum.multitheftauto.com/viewtopic.php?f=91&t=79817.
mehmetejr Posted August 29, 2014 Author Posted August 29, 2014 From a wild guess I would say that the hash key is probably a way to choose encryption algorithm for user accounts, you could try 'md5', 'sha2' or similar in that field, if it doesn't work you'll find out. I still believe that you got scammed with this script though: https://forum.multitheftauto.com/viewtopic.php?f=91&t=79817. private $useCurl = false; private $sockTimeout = 6; // seconds public $http_username = ''; public $http_password = ''; public $host = ''; public $port = ''; private $resources = array(); public function __construct( $host, $port, $username = "", $pass = "" ) { $this->host = $host; $this->port = $port; $this->http_username = $username; $this->http_password = $pass; shat does it mean? what should I do in this section ? oq
mehmetejr Posted August 29, 2014 Author Posted August 29, 2014 From a wild guess I would say that the hash key is probably a way to choose encryption algorithm for user accounts, you could try 'md5', 'sha2' or similar in that field, if it doesn't work you'll find out. I still believe that you got scammed with this script though: https://forum.multitheftauto.com/viewtopic.php?f=91&t=79817. $Config['database'] needs to have the same connection info as your server.$Config['server'] needs to have your server connection info. Username and password need to be the account details for an admin action, but I don't know what hashkey suppose to be. private $useCurl = false; private $sockTimeout = 6; // seconds public $http_username = ''; public $http_password = ''; public $host = ''; public $port = ''; private $resources = array(); public function __construct( $host, $port, $username = "", $pass = "" ) { $this->host = $host; $this->port = $port; $this->http_username = $username; $this->http_password = $pass; shat does it mean? what should I do in this section ?
mehmetejr Posted August 29, 2014 Author Posted August 29, 2014 $Config['database'] needs to have the same connection info as your server.$Config['server'] needs to have your server connection info. Username and password need to be the account details for an admin action, but I don't know what hashkey suppose to be. What do you mean with my server connection info(username and pass?)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now