deployement module made public

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Zeus wrote:

      sromantr wrote:

      bu arada xteriumdada aynı yol uzerınde var
      son sorum :) kurduğunuzda direk açıldımı yoksa sizin o verdiğiniz yönergeyimi izlim lisans kaldırmak için
      ogamex icin yazdıklarımı uygulaman gerek ama ben sıfırdan duzenledim diyebilirim eksıkleri cok eksıklerini tamamlamaya ugrasıom
    • sromantr wrote:

      Zeus wrote:

      sromantr wrote:

      bu arada xteriumdada aynı yol uzerınde var
      son sorum :) kurduğunuzda direk açıldımı yoksa sizin o verdiğiniz yönergeyimi izlim lisans kaldırmak için
      ogamex icin yazdıklarımı uygulaman gerek ama ben sıfırdan duzenledim diyebilirim eksıkleri cok eksıklerini tamamlamaya ugrasıom
      evet ogamex baya eksikti kendiside demişti çünkü aynısını acaba diğeri içinde deneyeceğim bi olursa güzel olur
    • Russoll wrote:

      did you have to edit anything i get this error when i uodate the config.php

      Unknown configuration key last_ping!
      File: /includes/classes/Config.class.php
      Which page gives this error?
    • template-deployment-private

      here sql

      Brainfuck Source Code

      1. -- phpMyAdmin SQL Dump
      2. -- version 5.0.3
      3. -- https://www.phpmyadmin.net/
      4. --
      5. -- Host: localhost:3306
      6. -- Generation Time: Feb 20, 2021 at 10:50 PM
      7. -- Server version: 10.3.25-MariaDB-0ubuntu0.20.04.1
      8. -- PHP Version: 7.3.26
      9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
      10. START TRANSACTION;
      11. SET time_zone = "+00:00";
      12. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
      13. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
      14. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
      15. /*!40101 SET NAMES utf8mb4 */;
      16. --
      17. -- Database: `deploy-module.gamerpath`
      18. --
      19. -- --------------------------------------------------------
      20. --
      21. -- Table structure for table `uni1_config`
      22. --
      23. CREATE TABLE `uni1_config` (
      24. `licenseCode` varchar(200) DEFAULT NULL,
      25. `current_api_hash` varchar(100) NOT NULL DEFAULT 'deployment',
      26. `last_store_connection` int(11) UNSIGNED NOT NULL DEFAULT 0,
      27. `last_ping` INT(11) UNSIGNED NOT NULL DEFAULT 0,
      28. `license_expiry` datetime NOT NULL,
      29. `updates_expiry` datetime NOT NULL,
      30. `support_expiry` datetime NOT NULL
      31. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
      32. -- --------------------------------------------------------
      33. --
      34. -- Table structure for table `uni1_confirm_request`
      35. --
      36. CREATE TABLE `uni1_confirm_request` (
      37. `requestId` varchar(200) DEFAULT NULL,
      38. `token` varchar(1000) DEFAULT NULL,
      39. `timestamp` int(11) UNSIGNED NOT NULL DEFAULT 0
      40. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
      41. -- --------------------------------------------------------
      42. --
      43. -- Table structure for table `uni1_deployments`
      44. --
      45. CREATE TABLE `uni1_deployments` (
      46. `deployId` int(10) UNSIGNED NOT NULL,
      47. `deploy_hash` varchar(48) DEFAULT NULL,
      48. `universe_name` varchar(20) NOT NULL,
      49. `universe_subdomain` varchar(20) NOT NULL,
      50. `universe_db_name` varchar(20) NOT NULL,
      51. `universe_template` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
      52. `universe_closed` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
      53. `universe_creation` int(10) UNSIGNED NOT NULL DEFAULT 0,
      54. `universe_open` int(11) UNSIGNED NOT NULL DEFAULT 0,
      55. `is_development` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
      56. `webspace_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
      57. `database_id` int(11) UNSIGNED NOT NULL DEFAULT 0,
      58. `database_user` varchar(30) DEFAULT NULL,
      59. `deploy_locked` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
      60. `last_verified` int(11) UNSIGNED NOT NULL DEFAULT 0,
      61. `last_updated` int(11) UNSIGNED NOT NULL DEFAULT 0,
      62. `installed_update` varchar(500) DEFAULT NULL,
      63. `api_token` varchar(30) DEFAULT NULL,
      64. `is_manual_deploy` tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
      65. `install_path` varchar(255) DEFAULT NULL
      66. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
      67. -- --------------------------------------------------------
      68. --
      69. -- Table structure for table `uni1_session`
      70. --
      71. CREATE TABLE `uni1_session` (
      72. `sessionID` varchar(32) NOT NULL,
      73. `userID` int(10) UNSIGNED NOT NULL,
      74. `userIP` varchar(40) NOT NULL,
      75. `lastonline` int(11) NOT NULL
      76. ) ENGINE=MEMORY DEFAULT CHARSET=utf8;
      77. -- --------------------------------------------------------
      78. --
      79. -- Table structure for table `uni1_template_syncs`
      80. --
      81. CREATE TABLE `uni1_template_syncs` (
      82. `rsync_guid` varchar(255) DEFAULT NULL,
      83. `deploy_hash` varchar(100) DEFAULT NULL,
      84. `rsync_state` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
      85. `rsync_data` longtext DEFAULT NULL,
      86. `rsync_error` text DEFAULT NULL,
      87. `process_pid` int(11) UNSIGNED NOT NULL DEFAULT 0,
      88. `check_time` int(11) UNSIGNED NOT NULL DEFAULT 0,
      89. `is_installed` tinyint(1) UNSIGNED NOT NULL DEFAULT 0
      90. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
      91. -- --------------------------------------------------------
      92. --
      93. -- Table structure for table `uni1_users`
      94. --
      95. CREATE TABLE `uni1_users` (
      96. `userId` int(10) UNSIGNED NOT NULL,
      97. `email` varchar(64) NOT NULL,
      98. `email_change` int(11) UNSIGNED NOT NULL DEFAULT 0,
      99. `lang` varchar(2) DEFAULT NULL,
      100. `authlevel` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
      101. `password` varchar(60) NOT NULL,
      102. `user_lastip` varchar(40) NOT NULL,
      103. `ip_at_reg` varchar(40) NOT NULL,
      104. `register_time` int(10) UNSIGNED NOT NULL DEFAULT 0,
      105. `onlinetime` int(10) UNSIGNED NOT NULL DEFAULT 0,
      106. `auth_key` varchar(255) NOT NULL,
      107. `secret_key` varchar(255) NOT NULL,
      108. `verified_mail` tinyint(3) UNSIGNED NOT NULL DEFAULT 0,
      109. `verified_mail_send` int(11) UNSIGNED NOT NULL DEFAULT 0,
      110. `lost_password_send` int(11) UNSIGNED NOT NULL DEFAULT 0,
      111. `dpath` VARCHAR(10) NOT NULL DEFAULT 'default'
      112. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
      113. --
      114. -- Dumping data for table `uni1_users`
      115. --
      116. 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
      117. (1, 'admin@admin.com', 0, 'en', 3, 'c93ccd78b2076528346216b3b2f701e6', '127.0.0.1', '127.0.0.1', 1612468769, 1613857709, 'cb2efbd9172344e3e08a8cb4820e4724', '013e3ebe23b8706fc8230b973ee96819', 0, 0, 0, 'default');
      118. --
      119. -- Indexes for dumped tables
      120. --
      121. --
      122. -- Indexes for table `uni1_confirm_request`
      123. --
      124. ALTER TABLE `uni1_confirm_request`
      125. ADD UNIQUE KEY `token` (`token`),
      126. ADD UNIQUE KEY `requestId` (`requestId`);
      127. --
      128. -- Indexes for table `uni1_deployments`
      129. --
      130. ALTER TABLE `uni1_deployments`
      131. ADD PRIMARY KEY (`deployId`),
      132. ADD UNIQUE KEY `universe_name` (`universe_name`),
      133. ADD UNIQUE KEY `deployId` (`deployId`),
      134. ADD UNIQUE KEY `universe_subdomain` (`universe_subdomain`),
      135. ADD UNIQUE KEY `deploy_hash` (`deploy_hash`),
      136. ADD UNIQUE KEY `api_token` (`api_token`);
      137. --
      138. -- Indexes for table `uni1_session`
      139. --
      140. ALTER TABLE `uni1_session`
      141. ADD PRIMARY KEY (`userID`),
      142. ADD KEY `sessionID` (`sessionID`);
      143. --
      144. -- Indexes for table `uni1_template_syncs`
      145. --
      146. ALTER TABLE `uni1_template_syncs`
      147. ADD UNIQUE KEY `rsync_guid` (`rsync_guid`);
      148. --
      149. -- Indexes for table `uni1_users`
      150. --
      151. ALTER TABLE `uni1_users`
      152. ADD PRIMARY KEY (`userId`),
      153. ADD UNIQUE KEY `userId` (`userId`),
      154. ADD UNIQUE KEY `email` (`email`),
      155. ADD UNIQUE KEY `auth_key` (`auth_key`),
      156. ADD UNIQUE KEY `secret_key` (`secret_key`);
      157. --
      158. -- AUTO_INCREMENT for dumped tables
      159. --
      160. --
      161. -- AUTO_INCREMENT for table `uni1_deployments`
      162. --
      163. ALTER TABLE `uni1_deployments`
      164. MODIFY `deployId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
      165. --
      166. -- AUTO_INCREMENT for table `uni1_users`
      167. --
      168. ALTER TABLE `uni1_users`
      169. MODIFY `userId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
      170. COMMIT;
      171. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
      172. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
      173. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
      Display All
    • Russoll wrote:

      its good i keep getting errors....ty for helping

      i was installing the deployment

      USER ERROR
      Message: Unknown universe id: 1File: /includes/classes/Config.class.php

      Source Code

      1. ALTER TABLE `uni1_config` ADD
      2. `uni` int(11) NOT NULL

      Source Code

      1. ALTER TABLE `uni1_config`
      2. ADD PRIMARY KEY (`uni`);

      Source Code

      1. ALTER TABLE `uni1_config`
      2. MODIFY `uni` int(11) NOT NULL AUTO_INCREMENT;
    • Russoll wrote:

      es bueno, sigo recibiendo errores... gracias por ayudar

      estaba instalando el deployment

      ERROR DE USUARIO
      Mensaje: ID de universo desconocido: 1Archivo: /incluye/clases/Config.class.php

      fijate que la bd no esta llenando todo los dato. Debes tener algunas tablas en blanco. Etcc
      VERY SAD :/ :/ :/ :/
    • Revisa en tu BD cual es la primera tabla que se queda en blanco, y luego busca en el .sql esa tabla, antes debes tener algún error en la syntaxis en el sql que por eso no se están insertando las siguientes tablas.
      De momento creo que el error debe estar antes de config, revisa el .sql que hay algun error
      VERY SAD :/ :/ :/ :/