Hi
Thanks for the print screen.
It shows an error logged in the console (the pink area)
I need the complete error to investigate.
Thanks in advance.
You must change the value in the Global Parameters screen.
But this is not enough, you also have to change configuration in php.ini to increase upload_max_filesize and post_max_size
It seems there is some misformating for some field but I cannot investigate without the response of the query.
Coul you please, displaying the erroneous screen, open the dev tools (F12) on the Network console, ther look for latest jSonQuery.php request, select it, and open the "Response" tab for this request. Copy and paste the response here (or sent it at support@projeqtor.org if you don't want to post possibly sensible data on the forum).
Thanks.
Received.
Thanks.
I investigate and will give information soon 😉
Hi,
I found the issue :woohoo: thanks to your data 😉 .
It is due to translatable fields in the "combo button" view (when you click on the hourglass).
As a workaround :
=> goto contact list (in the environmental parameters).
=> the list of contacts should appear correctly
=> in the column selector (button
) remove (uncheck) the "profile" field.
=> all should be correct then
Fix will be provided soon.
Fix !
in /view/js/projeqtor.js, replace lines 1690 to 1696 from
if (i18nMessagesCustom[str]) {
ret = i18nMessagesCustom[str];
} else if (i18nMessages[str]) {
ret = i18nMessages[str];
} else if (i18nPluginArray && i18nPluginArray[str]) {
ret = i18nPluginArray[str];
}
to
if (top.i18nMessagesCustom[str]) {
ret = top.i18nMessagesCustom[str];
} else if (top.i18nMessages[str]) {
ret = top.i18nMessages[str];
} else if (top.i18nPluginArray && top.i18nPluginArray[str]) {
ret = top.i18nPluginArray[str];
}
Patch will be included in V.5.2.0 (and patch if required)
NB : this issue does not require immediate patch as it happens only
=> on combo list for Contacts (or Resources or Users),
=> and if Profile is selected in the list of columns
=> and if you added new profile
Thanks a lot for your quick answer. Now it's OK
I will wait your fix (5.2.0)
bye

