Russoll wrote:
no hay errores cuando hago el sql, lo único que se completa es la base de datos del usuario, todas las demás bases de datos se crean pero están en blanco
deployement module made public
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
-
ok made a new database and this error
Table structure for table `uni1_confirm_request`
on line 1
Brainfuck Source Code
- -- phpMyAdmin SQL Dump
- -- version 5.0.3
- -- https://www.phpmyadmin.net/
- --
- -- Host: localhost:3306
- -- Generation Time: Feb 20, 2021 at 10:50 PM
- -- Server version: 10.3.25-MariaDB-0ubuntu0.20.04.1
- -- PHP Version: 7.3.26
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- START TRANSACTION;
- SET time_zone = "+00:00";
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8mb4 */;
- --
- -- Database: `deploy-module.gamerpath`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_config`
- --
- CREATE TABLE `uni1_config` (
- `licenseCode` varchar(200) DEFAULT NULL,
- `current_api_hash` varchar(100) NOT NULL DEFAULT 'deployment',
- `last_store_connection` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `last_ping` INT(11) UNSIGNED NOT NULL DEFAULT 0,
- `license_expiry` datetime NOT NULL,
- `updates_expiry` datetime NOT NULL,
- `support_expiry` datetime NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_confirm_request`
- --
- CREATE TABLE `uni1_confirm_request` (
- `requestId` varchar(200) DEFAULT NULL,
- `token` varchar(1000) DEFAULT NULL,
- `timestamp` int(11) UNSIGNED NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_deployments`
- --
- CREATE TABLE `uni1_deployments` (
- `deployId` int(10) UNSIGNED NOT NULL,
- `deploy_hash` varchar(48) DEFAULT NULL,
- `universe_name` varchar(20) NOT NULL,
- `universe_subdomain` varchar(20) NOT NULL,
- `universe_db_name` varchar(20) NOT NULL,
- `universe_template` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
- `universe_closed` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
- `universe_creation` int(10) UNSIGNED NOT NULL DEFAULT 0,
- `universe_open` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `is_development` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
- `webspace_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `database_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `database_user` varchar(30) DEFAULT NULL,
- `deploy_locked` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
- `last_verified` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `last_updated` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `installed_update` varchar(500) DEFAULT NULL,
- `api_token` varchar(30) DEFAULT NULL,
- `is_manual_deploy` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
- `install_path` varchar(255) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_session`
- --
- CREATE TABLE `uni1_session` (
- `sessionID` varchar(32) NOT NULL,
- `userID` int(10) UNSIGNED NOT NULL,
- `userIP` varchar(40) NOT NULL,
- `lastonline` int(11) NOT NULL
- ) ENGINE=MEMORY DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_template_syncs`
- --
- CREATE TABLE `uni1_template_syncs` (
- `rsync_guid` varchar(255) DEFAULT NULL,
- `deploy_hash` varchar(100) DEFAULT NULL,
- `rsync_state` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
- `rsync_data` longtext DEFAULT NULL,
- `rsync_error` text DEFAULT NULL,
- `process_pid` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `check_time` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `is_installed` tinyint(1) UNSIGNED NOT NULL DEFAULT 0
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- --------------------------------------------------------
- --
- -- Table structure for table `uni1_users`
- --
- CREATE TABLE `uni1_users` (
- `userId` int(10) UNSIGNED NOT NULL,
- `email` varchar(64) NOT NULL,
- `email_change` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `lang` varchar(2) DEFAULT NULL,
- `authlevel` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
- `password` varchar(60) NOT NULL,
- `user_lastip` varchar(40) NOT NULL,
- `ip_at_reg` varchar(40) NOT NULL,
- `register_time` int(10) UNSIGNED NOT NULL DEFAULT 0,
- `onlinetime` int(10) UNSIGNED NOT NULL DEFAULT 0,
- `auth_key` varchar(255) NOT NULL,
- `secret_key` varchar(255) NOT NULL,
- `verified_mail` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
- `verified_mail_send` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `lost_password_send` int(11) UNSIGNED NOT NULL DEFAULT 0,
- `dpath` VARCHAR(10) NOT NULL DEFAULT 'default'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- --
- -- Dumping data for table `uni1_users`
- --
- INSERT INTO `uni1_users` (`userId`, `email`, `email_change`, `lang`, `authlevel`, `password`, `user_lastip`, `ip_at_reg`, `register_time`, `onlinetime`, `auth_key`, `secret_key`, `verified_mail`, `verified_mail_send`, `lost_password_send`, `dpath`) VALUES
- (1, 'admin@admin.com', 0, 'en', 3, 'c93ccd78b2076528346216b3b2f701e6', '127.0.0.1', '127.0.0.1', 1612468769, 1613857709, 'cb2efbd9172344e3e08a8cb4820e4724', '013e3ebe23b8706fc8230b973ee96819', 0, 0, 0, 'default');
- --
- -- Indexes for dumped tables
- --
- --
- -- Indexes for table `uni1_confirm_request`
- --
- ALTER TABLE `uni1_confirm_request`
- ADD UNIQUE KEY `token` (`token`),
- ADD UNIQUE KEY `requestId` (`requestId`);
- --
- -- Indexes for table `uni1_deployments`
- --
- ALTER TABLE `uni1_deployments`
- ADD PRIMARY KEY (`deployId`),
- ADD UNIQUE KEY `universe_name` (`universe_name`),
- ADD UNIQUE KEY `deployId` (`deployId`),
- ADD UNIQUE KEY `universe_subdomain` (`universe_subdomain`),
- ADD UNIQUE KEY `deploy_hash` (`deploy_hash`),
- ADD UNIQUE KEY `api_token` (`api_token`);
- --
- -- Indexes for table `uni1_session`
- --
- ALTER TABLE `uni1_session`
- ADD PRIMARY KEY (`userID`),
- ADD KEY `sessionID` (`sessionID`);
- --
- -- Indexes for table `uni1_template_syncs`
- --
- ALTER TABLE `uni1_template_syncs`
- ADD UNIQUE KEY `rsync_guid` (`rsync_guid`);
- --
- -- Indexes for table `uni1_users`
- --
- ALTER TABLE `uni1_users`
- ADD PRIMARY KEY (`userId`),
- ADD UNIQUE KEY `userId` (`userId`),
- ADD UNIQUE KEY `email` (`email`),
- ADD UNIQUE KEY `auth_key` (`auth_key`),
- ADD UNIQUE KEY `secret_key` (`secret_key`);
- --
- -- AUTO_INCREMENT for dumped tables
- --
- --
- -- AUTO_INCREMENT for table `uni1_deployments`
- --
- ALTER TABLE `uni1_deployments`
- MODIFY `deployId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
- --
- -- AUTO_INCREMENT for table `uni1_users`
- --
- ALTER TABLE `uni1_users`
- MODIFY `userId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
- COMMIT;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-
-
is there a way to install deployment with out the license since the sites gone?
-
Russoll wrote:
¿Hay alguna manera de instalar la implementación sin la licencia ya que los sitios se han ido?
De los que trabaje fue ogamex, al revisarlo le faltan muchas cosas, código a medias, demasiado error muchas cosas por hacer y abandone. -
ok ty
-
-
its ok but ty for the help
-
yamilrh wrote:
Lo puedo compartir si quieres ogamex, no recuerdo pero creo que permite crear el usuario.
Es algo que tiene errores.
-
I didn't use the portal, I just used the game files, but I created them from scratch, then I started to complete all the missing coding. There are still some missing parts in the game file, but it is mostly complete.
-
Russoll wrote:
is there a way to install deployment with out the license since the sites gone?
- template-deployment-private == deployment module (need to be installed on server)
- template-store-private == store where users could previsouly purchase a license
- template-GAMENAME-private == game template (Need to be hosted on github (private/public) for live sync and run deployements
If you put all back in place, change links, i am pretty sure you will be able to make it work like i made it work when i was running it
LicenseBox, Store and deployment module communicate through api with a secret KEY saved in file. DO NOT FORGET to change that key as if you all install keeping the same KEY, you understand you open pandore - template-deployment-private == deployment module (need to be installed on server)
-
I don't understand why you don't share it as people will build or use it, you are trying to keep people's ears upside down by force, then people should not bother sharing it.
-
ugrasmak isteyen varsa diye paylasılır vakıd harcayıp duzenleyebiliceksen kullanacaksın abi bu iş bole hazır halde bedava kımse paylasmıyor
-
-
paylasmak para demek deil para icin tamamlamak gerekir
-
sromantr wrote:
paylasmak para demek deil para icin tamamlamak gerekir
-
ogamex.net
buraya bak isdersen 100 ++ online var -
Abyss wrote:
sromantr wrote:
paylasmak para demek deil para icin tamamlamak gerekir
Günlük 300 den fazla online var -
sromantr wrote:
ogamex.net
buraya bak isdersen 100 ++ online var
-
-
Share
- Facebook 0
- Twitter 0
- Google Plus 0
- Reddit 0