novice
Hi!
You need to change the config
with values other than the defaults, because it is not safe to use the public variables as they are in the sample_config
files.
1 Entity:
by default the config_db.php
, call to DEDALO_ENTITY
and you can leave it as is:
// DEDALO_INFO_KEY: string . (!) Change it with any string before install, but don't change it after install
define('DEDALO_INFO_KEY', DEDALO_ENTITY);
BUT, you need to change your DEDALO_ENTITY
in config.php
.
// dedalo_entity string. Do not use here spaces or non ASCII chars
define('DEDALO_ENTITY', 'my_entity_name'); // Like 'dedalo4'
Here you need to add your entity name as flat, without spaces, and only with ASCII chars.
but is not correct use:
2 Dédalo information
Also you need to change in config_db.php
the constant DEDALO_INFORMATION
// DEDALO_INFORMATION: string . (!) Change it to any string before install, but don't change it after install
define('DEDALO_INFORMATION', 'Dédalo install version');
As a previous constant it needs to be different and here you can use any type of characters and if they are long and complex the better.
And you do not need to change anything more for install it, you can change the config with more languages or other ontology models, but is not mandatory.
I recommend you see the php log that show what's happening in the install process, and inform you about the issues. you can use something as:
tail -f php.log
I hope this is clear.
Best