<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[I-doIT 0.9 - Create a new mandator]]></title><description><![CDATA[<p dir="auto"><strong>Creating a new mandator in 3 Steps.</strong></p>
<p dir="auto"><em>If you just want to create a new language for an existing mandator, you need to process step 3 only.</em><br />
<em>Don't forget to change the database name used for this example: 'idoit_new_mandator'.</em></p>
<p dir="auto"><strong>Step 1. - Create a new database</strong></p>
<p dir="auto">Get a connection to your database:</p>
<pre><code>
mysql -u root -p

</code></pre>
<p dir="auto">Create your new mandator database:</p>
<pre><code>
create database idoit_new_mandator;

</code></pre>
<p dir="auto"><strong>Step 2. - Import a dump of the i-doit data tables into your new database.</strong></p>
<p dir="auto">Switch to your idoit directory:</p>
<pre><code>
cd idoit-path/

</code></pre>
<p dir="auto">Insert a fresh database (change idoit_new_mandator to the name you used for your new database in step one):</p>
<pre><code>
mysql -uroot -p -Didoit_new_mandator &lt; setup/sql/idoit_data.sql

</code></pre>
<p dir="auto"><strong>Step 3. - Insert a new entry into your idoit system database</strong></p>
<p dir="auto">Get a connection to your database management system and select your i-doit system database:</p>
<pre><code>
mysql -u root -p -Didoit_system_database

</code></pre>
<p dir="auto"><strong>Modify the quoted fields after the keyword VALUES before inserting, but dont remove these quotes.</strong></p>
<p dir="auto">Insert a new mandator entry with english language:</p>
<pre><code>
INSERT INTO `isys_mandator` ( `isys_mandator__id` , `isys_mandator__title` , `isys_mandator__description` , `isys_mandator__dir_cache` , `isys_mandator__dir_tpl` , `isys_mandator__db_host` , `isys_mandator__db_port` , `isys_mandator__db_name` , `isys_mandator__db_user` , `isys_mandator__db_pass` , `isys_mandator__sort` , `isys_mandator__default_lang_const` , `isys_mandator__default_language_short` )
VALUES (DEFAULT, 'MandantTitle', NULL , 'cache_mandanttitle', 'default', 'db_ip', '3306', 'idoit_new_mandator', 'db_user', 'db_pass', '50', 'ISYS_LANGUAGE_ENGLISH', 'de');

</code></pre>
<p dir="auto">Insert a new mandator entry with german language:</p>
<pre><code>
INSERT INTO `isys_mandator` ( `isys_mandator__id` , `isys_mandator__title` , `isys_mandator__description` , `isys_mandator__dir_cache` , `isys_mandator__dir_tpl` , `isys_mandator__db_host` , `isys_mandator__db_port` , `isys_mandator__db_name` , `isys_mandator__db_user` , `isys_mandator__db_pass` , `isys_mandator__sort` , `isys_mandator__default_lang_const` , `isys_mandator__default_language_short` )
VALUES (DEFAULT, 'MandantTitle', NULL , 'cache_mandanttitle', 'default', 'db_ip', '3306', 'idoit_new_mandator', 'db_user', 'db_pass', '50', 'ISYS_LANGUAGE_GERMAN', 'de');

</code></pre>
<p dir="auto"><em>- You can also use another frontend than the mysql-client if you like.</em></p>
]]></description><link>https://community.i-doit.com/topic/323/i-doit-0-9-create-a-new-mandator</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 22:23:42 GMT</lastBuildDate><atom:link href="https://community.i-doit.com/topic/323.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 14 Feb 2007 13:10:01 GMT</pubDate><ttl>60</ttl></channel></rss>