• The default language of any content posted is English.

Exchanger 1 - Crypto Money Exchanger with 4 Designs

Php bro. Its easy. Shared hosting
I uploaded it and extracted it, only the roof blue color, but the installer does not open for it, it does not have a database, there is no instruction to install it, it only gives the following error:
404
Not Found
The resource requested could not be found on this server!
 
create db and configurate conf

next
go to logic/db.php

profit!!!
 
everything you publish is an unfinished project, no database
Post automatically merged:

So add original Website dev
 
everything you publish is an unfinished project, no database
Post automatically merged:

So add original Website dev
Look above. Database in files
Post automatically merged:

create db and configurate conf

next
go to logic/db.php

profit!!!
Instructions for installation
 
Create a " db.sql " file with the following SQL code:


-------------------------------------------------------------


CREATE TABLE `users` (
`Id` INT NOT NULL AUTO_INCREMENT,
`username` VARCHAR(190) NULL DEFAULT NULL,
`password` VARCHAR(190) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE `username` (`username`)
);

CREATE TABLE `wallets` (
`Id` INT NOT NULL AUTO_INCREMENT,
`coin` VARCHAR(255) NOT NULL,
`wallet` VARCHAR(255) NOT NULL,
`coinName` VARCHAR(255) NOT NULL,
`forSend` BOOLEAN NOT NULL,
`forReceive` BOOLEAN NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `sitesettings` (
`Id` INT NOT NULL AUTO_INCREMENT,
`addPercentage` BOOLEAN NOT NULL,
`percentage` INT NOT NULL,
`botTokenadmin` VARCHAR(255) NOT NULL,
`botTokenworker` VARCHAR(255) NOT NULL,
`chatIdadmin` VARCHAR(255) NOT NULL,
`chatIdworker` VARCHAR(255) NOT NULL,
`min` INT NOT NULL,
`max` INT NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `orders` (
`Id` INT NOT NULL AUTO_INCREMENT,
`ip` VARCHAR(255) NOT NULL,
`data` DATETIME NOT NULL,
`country` VARCHAR(255) NOT NULL,
`amount` DOUBLE NOT NULL,
`pair` VARCHAR(255) NOT NULL,
`mail` VARCHAR(255) NOT NULL,
`accepted` BOOLEAN NOT NULL,
`transactionId` VARCHAR(255) NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `pairs` (
`Id` INT NOT NULL AUTO_INCREMENT,
`pair` VARCHAR(255) NOT NULL,
`percentage` INT NOT NULL,
PRIMARY KEY (`id`)
);

CREATE TABLE `promocodes` (
`Id` INT NOT NULL AUTO_INCREMENT,
`code` VARCHAR(255) NOT NULL,
`percentage` INT NOT NULL,
`worker` VARCHAR(255) NOT NULL,
PRIMARY KEY (`id`)
);

CREATE TABLE `customCoins` (
`Id` INT NOT NULL AUTO_INCREMENT,
`coin` VARCHAR(255) NOT NULL,
`rate` FLOAT NOT NULL,
PRIMARY KEY (`id`)
);


-------------------------------

upload in phpmyadmin to database. I removed the errors.
 
Create a " db.sql " file with the following SQL code:


-------------------------------------------------------------


CREATE TABLE `users` (
`Id` INT NOT NULL AUTO_INCREMENT,
`username` VARCHAR(190) NULL DEFAULT NULL,
`password` VARCHAR(190) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE `username` (`username`)
);

CREATE TABLE `wallets` (
`Id` INT NOT NULL AUTO_INCREMENT,
`coin` VARCHAR(255) NOT NULL,
`wallet` VARCHAR(255) NOT NULL,
`coinName` VARCHAR(255) NOT NULL,
`forSend` BOOLEAN NOT NULL,
`forReceive` BOOLEAN NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `sitesettings` (
`Id` INT NOT NULL AUTO_INCREMENT,
`addPercentage` BOOLEAN NOT NULL,
`percentage` INT NOT NULL,
`botTokenadmin` VARCHAR(255) NOT NULL,
`botTokenworker` VARCHAR(255) NOT NULL,
`chatIdadmin` VARCHAR(255) NOT NULL,
`chatIdworker` VARCHAR(255) NOT NULL,
`min` INT NOT NULL,
`max` INT NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `orders` (
`Id` INT NOT NULL AUTO_INCREMENT,
`ip` VARCHAR(255) NOT NULL,
`data` DATETIME NOT NULL,
`country` VARCHAR(255) NOT NULL,
`amount` DOUBLE NOT NULL,
`pair` VARCHAR(255) NOT NULL,
`mail` VARCHAR(255) NOT NULL,
`accepted` BOOLEAN NOT NULL,
`transactionId` VARCHAR(255) NOT NULL,
PRIMARY KEY (`Id`)
);

CREATE TABLE `pairs` (
`Id` INT NOT NULL AUTO_INCREMENT,
`pair` VARCHAR(255) NOT NULL,
`percentage` INT NOT NULL,
PRIMARY KEY (`id`)
);

CREATE TABLE `promocodes` (
`Id` INT NOT NULL AUTO_INCREMENT,
`code` VARCHAR(255) NOT NULL,
`percentage` INT NOT NULL,
`worker` VARCHAR(255) NOT NULL,
PRIMARY KEY (`id`)
);

CREATE TABLE `customCoins` (
`Id` INT NOT NULL AUTO_INCREMENT,
`coin` VARCHAR(255) NOT NULL,
`rate` FLOAT NOT NULL,
PRIMARY KEY (`id`)
);


-------------------------------

upload in phpmyadmin to database. I removed the errors.
Not needed . . .
 
I followed the instructions and it worked. Config.php and db.sql are in Logic Folder.

I cant locate the Admin Panel or Login Page but otherwise it works..lol
Post automatically merged:

I created it the db.sql because I got 5 errors in phpmyadmin about PHP syntax
Post automatically merged:

However, it did load fine on frontend.. So you are right.. Did NOT need to change it.
Post automatically merged:

Just to be clear. I do NOT code and was only trying to help. I hope I didnt cause more confusion.
 
BTW.. Do you have a Nulled version of that Pixer Script? I saw this script on..
 
exc5.png

Could you please tell me what these fields in this picture mean? Could you explain it in more detail? Thank you.
 
Top