AlxGr
22 July 2020 19:08
2
@samus-aran Thanks for creating this category. It will help the community to find specific solutions without the need of searching between thousands of posts.
Now, there are several posts the community has created as direct solutions in the past. Is there any way the category can be changed/updated in the post?
Here are some samples:
Issue: When creating a report and adding a multi-selection parameter, the system will concatenate all options to make a big string. If that string is longer than 255 characters, the system will save partial options only. That causes to the report to return partial data only.
Cause: The conditions are saved on table “aor_conditions” and field “value”. This is a char field with a length of 255 by default.
SOLUTION: Create a PHP file on this directory: /custom/Extension/modules/AOR_Conditions/E…
Today I came across an open source File manager. It’s a powerful PHP script that allows you to work with your files with out the need of accessing to the back end. I envision it on a custom module accessible via the admin section… (It will be a nice mini proyect to work on. I believe it can be created by the community…)
Check here:
https://www.dulldusk.com/phpfm
WARNING: As any tool of that kind, use it responsible, making sure you put the security measurements in place before you put it …
Hi,
I created a custom module to be used on the back end only. I didn’t want it available for menus or panels so I hide it. To achieve that I
modify, custom/Extension/application/Ext/Include/MyCustomModule.php and modify from:
<?php
$beanList['MyCustomModule'] = 'MyCustomModule';
$beanFiles['htgi3_MultipleActivities'] = 'modules/MyCustomModule/MyCustomModule.php';
$moduleList[] = 'MyCustomModule';
?>
To this:
<?php
$beanList['MyCustomModule'] = 'MyCustomModule';
$beanFiles['MyCustomMod…
I have seen multiple question regarding to how to hide menu grouping (Menu filters) option for all users. Other members of the community have mentioned other methods but they require to modify core files and they are not upgrade safe. Here is the method I use to solve that problem:
First. This method uses the custom theme folder. Specifically a variant of SuiteP. (If you use the standard theme you will need to copy the contens of /themes/SuiteP/ into /custom/themes/SuiteP/)
S…
Others.
Thanks,
AlxGr
2 Likes