X7ROOT File Manager
Current Path:
/var/softaculous/jorani
var
/
softaculous
/
jorani
/
??
..
??
_clone.php
(4.04 KB)
??
config.php
(24.46 KB)
??
database.php
(4.68 KB)
??
edit.php
(4.19 KB)
??
edit.xml
(433 B)
??
fileindex.php
(193 B)
??
images
??
import.php
(4.3 KB)
??
info.xml
(3.12 KB)
??
install.js
(924 B)
??
install.php
(5.96 KB)
??
install.xml
(786 B)
??
jorani.sql
(19.98 KB)
??
jorani.zip
(16.91 MB)
??
md5
(3.6 KB)
??
notes.txt
(1.68 KB)
??
php53
??
php56
??
php71
??
php81
??
php82
Editing: jorani.sql
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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 utf8 */; -- -- Database: `jorani104` -- -- -------------------------------------------------------- -- -- Table structure for table `ci_sessions` -- CREATE TABLE `ci_sessions` ( `id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `timestamp` int unsigned NOT NULL DEFAULT '0', `data` blob NOT NULL, KEY `ci_sessions_timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='CodeIgniter sessions (you can empty this table without consequence)'; -- -------------------------------------------------------- -- -- Table structure for table `contracts` -- CREATE TABLE `contracts` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of a contract', `name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of the contract', `startentdate` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Day and month numbers of the left boundary', `endentdate` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Day and month numbers of the right boundary', `weekly_duration` int DEFAULT NULL COMMENT 'Approximate duration of work per week (in minutes)', `daily_duration` int DEFAULT NULL COMMENT 'Approximate duration of work per day and (in minutes)', `default_leave_type` int DEFAULT NULL COMMENT 'default leave type for the contract (overwrite default type set in config file).', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='A contract groups employees having the same days off and entitlement rules' AUTO_INCREMENT=2 ; -- -- Dumping data for table `contracts` -- INSERT INTO `contracts` VALUES (1, 'Global', '01/01', '12/31', 2400, 480, 1); -- -------------------------------------------------------- -- -- Table structure for table `dayoffs` -- CREATE TABLE `dayoffs` ( `id` int NOT NULL AUTO_INCREMENT, `contract` int NOT NULL COMMENT 'Contract id', `date` date NOT NULL COMMENT 'Date of the day off', `type` int NOT NULL COMMENT 'Half or full day', `title` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Description of day off', PRIMARY KEY (`id`), KEY `type` (`type`), KEY `contract` (`contract`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of non working days' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `delegations` -- CREATE TABLE `delegations` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Id of delegation', `manager_id` int NOT NULL COMMENT 'Manager wanting to delegate', `delegate_id` int NOT NULL COMMENT 'Employee having the delegation', PRIMARY KEY (`id`), KEY `manager_id` (`manager_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Delegation of approval' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `entitleddays` -- CREATE TABLE `entitleddays` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of an entitlement', `contract` int DEFAULT NULL COMMENT 'If entitlement is credited to a contract, Id of contract', `employee` int DEFAULT NULL COMMENT 'If entitlement is credited to an employee, Id of employee', `overtime` int DEFAULT NULL COMMENT 'Optional Link to an overtime request, if the credit is due to an OT', `startdate` date DEFAULT NULL COMMENT 'Left boundary of the credit validity', `enddate` date DEFAULT NULL COMMENT 'Right boundary of the credit validity. Duration cannot exceed one year', `type` int NOT NULL COMMENT 'Leave type', `days` decimal(10,2) NOT NULL COMMENT 'Number of days (can be negative so as to deduct/adjust entitlement)', `description` text COLLATE utf8mb4_unicode_ci COMMENT 'Description of a credit / debit (entitlement / adjustment)', PRIMARY KEY (`id`), KEY `contract` (`contract`), KEY `employee` (`employee`), KEY `type` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Add or substract entitlement on employees or contracts (can be the result of an OT)' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `excluded_types` -- CREATE TABLE `excluded_types` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Id of exclusion', `contract_id` int NOT NULL COMMENT 'Id of contract', `type_id` int NOT NULL COMMENT 'Id of leave ype to be excluded to the contract', PRIMARY KEY (`id`), KEY `contract_id` (`contract_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Exclude a leave type from a contract' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `leaves` -- CREATE TABLE `leaves` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the leave request', `startdate` date DEFAULT NULL COMMENT 'Start date of the leave request', `enddate` date DEFAULT NULL COMMENT 'End date of the leave request', `status` int DEFAULT NULL COMMENT 'Identifier of the status of the leave request (Requested, Accepted, etc.). See status table.', `employee` int DEFAULT NULL COMMENT 'Employee requesting the leave request', `cause` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason of the leave request', `startdatetype` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Morning/Afternoon', `enddatetype` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Morning/Afternoon', `duration` decimal(10,3) DEFAULT NULL COMMENT 'Length of the leave request', `type` int DEFAULT NULL COMMENT 'Identifier of the type of the leave request (Paid, Sick, etc.). See type table.', `comments` text COLLATE utf8mb4_unicode_ci COMMENT 'Comments on leave request (JSon)', `document` blob COMMENT 'Optional supporting document', PRIMARY KEY (`id`), KEY `status` (`status`), KEY `employee` (`employee`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Leave requests' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `leaves_history` -- CREATE TABLE `leaves_history` ( `id` int NOT NULL, `startdate` date DEFAULT NULL, `enddate` date DEFAULT NULL, `status` int DEFAULT NULL, `employee` int DEFAULT NULL, `cause` text COLLATE utf8mb4_unicode_ci, `startdatetype` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enddatetype` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `duration` decimal(10,2) DEFAULT NULL, `type` int DEFAULT NULL, `comments` text COLLATE utf8mb4_unicode_ci COMMENT 'Comments on leave request', `document` blob COMMENT 'Optional supporting document', `change_id` int NOT NULL AUTO_INCREMENT, `change_type` int NOT NULL, `changed_by` int NOT NULL, `change_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`change_id`), KEY `changed_by` (`changed_by`), KEY `change_date` (`change_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of changes in leave requests table' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `access_token` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `expires` timestamp NOT NULL, `scope` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`access_token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_applications` -- CREATE TABLE `oauth_applications` ( `user` int NOT NULL COMMENT 'Identifier of Jorani user', `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Identifier of an application using OAuth2', KEY `user` (`user`), KEY `client_id` (`client_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of allowed OAuth2 applications'; -- -------------------------------------------------------- -- -- Table structure for table `oauth_authorization_codes` -- CREATE TABLE `oauth_authorization_codes` ( `authorization_code` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `redirect_uri` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `expires` timestamp NOT NULL, `scope` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`authorization_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `client_secret` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `redirect_uri` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL, `grant_types` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scope` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`client_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_jwt` -- CREATE TABLE `oauth_jwt` ( `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `public_key` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`client_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `refresh_token` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `client_id` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `expires` timestamp NOT NULL, `scope` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`refresh_token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_scopes` -- CREATE TABLE `oauth_scopes` ( `scope` text COLLATE utf8mb4_unicode_ci, `is_default` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_users` -- CREATE TABLE `oauth_users` ( `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `organization` -- CREATE TABLE `organization` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the department', `name` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Name of the department', `parent_id` int DEFAULT NULL COMMENT 'Parent department (or -1 if root)', `supervisor` int DEFAULT NULL COMMENT 'This user will receive a copy of accepted and rejected leave requests', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tree of the organization' AUTO_INCREMENT=1 ; -- -- Dumping data for table `organization` -- INSERT INTO `organization` VALUES (0, 'LMS root', -1, NULL); -- -------------------------------------------------------- -- -- Table structure for table `org_lists` -- CREATE TABLE `org_lists` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of a list', `user` int NOT NULL COMMENT ' Identifier of Jorani user owning the list', `name` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `org_lists_user` (`user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Custom lists of employees are an alternative to organization'; -- -------------------------------------------------------- -- -- Table structure for table `org_lists_employees` -- CREATE TABLE `org_lists_employees` ( `list` int NOT NULL COMMENT 'Id of the list', `user` int NOT NULL COMMENT 'id of an employee', `orderlist` int NOT NULL COMMENT 'order in the list', KEY `org_list_id` (`list`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Children table of org_lists (custom list of employees)'; -- -------------------------------------------------------- -- -- Table structure for table `overtime` -- CREATE TABLE `overtime` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the overtime request', `employee` int NOT NULL COMMENT 'Employee requesting the OT', `date` date NOT NULL COMMENT 'Date when the OT was done', `duration` decimal(10,3) NOT NULL COMMENT 'Duration of the OT', `cause` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Reason why the OT was done', `status` int NOT NULL COMMENT 'Status of OT (Planned, Requested, Accepted, Rejected)', PRIMARY KEY (`id`), KEY `status` (`status`), KEY `employee` (`employee`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Overtime worked (extra time)' AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `parameters` -- CREATE TABLE `parameters` ( `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `scope` int NOT NULL COMMENT 'Either global(0) or user(1) scope', `value` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'PHP/serialize value', `entity_id` text COLLATE utf8mb4_unicode_ci COMMENT 'Entity ID (eg. user id) to which the parameter is applied', KEY `param_name` (`name`,`scope`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Application parameters'; -- -------------------------------------------------------- -- -- Table structure for table `positions` -- CREATE TABLE `positions` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the position', `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of the position', `description` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Description of the position', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Position (job position) in the organization' AUTO_INCREMENT=2 ; -- -- Dumping data for table `positions` -- INSERT INTO `positions` VALUES (1, 'Employee', 'Employee.'); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` int NOT NULL, `name` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Roles in the application (system table)'; -- -- Dumping data for table `roles` -- INSERT INTO `roles` VALUES (1, 'admin'), (2, 'user'), (8, 'HR admin'); -- -------------------------------------------------------- -- -- Table structure for table `status` -- CREATE TABLE `status` ( `id` int NOT NULL, `name` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Status of the Leave Request (system table)'; -- -- Dumping data for table `status` -- INSERT INTO `status` VALUES (1, 'Planned'), (2, 'Requested'), (3, 'Accepted'), (4, 'Rejected'), (5, 'Cancellation'), (6, 'Canceled'); -- -------------------------------------------------------- -- -- Table structure for table `types` -- CREATE TABLE `types` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the type', `name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of the leave type', `acronym` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Acronym of the leave type', `deduct_days_off` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Deduct days off when computing the balance of the leave type', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of leave types (LoV table)' AUTO_INCREMENT=6 ; -- -- Dumping data for table `types` -- INSERT INTO `types` VALUES (0, 'compensate', NULL, 0), (1, 'paid leave', NULL, 0), (2, 'maternity leave', NULL, 0), (3, 'paternity leave', NULL, 0), (4, 'special leave', NULL, 0), (5, 'Sick leave', NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of the user', `firstname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'First name', `lastname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Last name', `login` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Identfier used to login (can be an email address)', `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Email address', `password` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Password encrypted with BCRYPT or a similar method', `role` int DEFAULT NULL COMMENT 'Role of the employee (binary mask). See table roles.', `manager` int DEFAULT NULL COMMENT 'Employee validating the requests of the employee', `country` int DEFAULT NULL COMMENT 'Country code (for later use)', `organization` int DEFAULT '0' COMMENT 'Entity where the employee has a position', `contract` int DEFAULT NULL COMMENT 'Contract of the employee', `position` int DEFAULT NULL COMMENT 'Position of the employee', `datehired` date DEFAULT NULL COMMENT 'Date hired / Started', `identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Internal/company identifier', `language` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' COMMENT 'Language ISO code', `ldap_path` varchar(1024) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'LDAP Path for complex authentication schemes', `active` tinyint(1) DEFAULT '1' COMMENT 'Is user active', `timezone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Timezone of user', `calendar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'External Calendar address', `random_hash` varchar(24) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Obfuscate public URLs', `user_properties` text COLLATE utf8mb4_unicode_ci COMMENT 'Entity ID (eg. user id) to which the parameter is applied', `picture` blob COMMENT 'Profile picture of user for tabular calendar', PRIMARY KEY (`id`), KEY `manager` (`manager`), KEY `organization` (`organization`), KEY `contract` (`contract`), KEY `position` (`position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of employees / users having access to Jorani' AUTO_INCREMENT=3 ; -- -- Dumping data for table `users` -- INSERT INTO `users` VALUES (1, '[[admin_fname]]', '[[admin_lname]]', '[[admin_username]]', '[[admin_email]]', '[[admin_pass]]', 1, 1, NULL, 0, 1, 1, '2026-03-01', 'IDENTIFIER', 'en', NULL, 1, 'Europe/Paris', NULL, '[[random_hash]]', NULL, NULL), (2, 'John', 'DOE', 'jdoe', 'jdoe@example.org', '$2a$08$TU9Syb0FTqcKGwAg5AtH.OLThxcR3p.1gKEcorxvbuqKWTyHQRI7y', 2, 1, NULL, 0, 1, NULL, NULL, '', 'en', NULL, 1, 'Europe/Paris', NULL, 'bN9p-mPn7byaOOKICyQ7RL_c', NULL, NULL); /*!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 */;
Upload File
Create Folder