
Originally Posted by
Brothers
i'm busy whit upgrade my store to version 1.5.0 (it on a localhost) looking of de module still works. but i'll ran into an problem. it's an beautiful addision the admin profiles, but most of the modules only works for superuser. if got one module that works well "sales report", but i can figure it out why that one work, and the other ones not.
if install easy populate too ( but that one only work for superuser too)
not for users whit an other profile ( and il check it on at admin profile settings)
does any one have the same problem?
or even better an solutions
If you check the plugins that don't work, my bet is that they have their filename (usually in a .php file present in /YOUR_ADMIN/includes/extra_datafiles) in the form
Code:
define('MY_PLUGIN_FILENAME', 'my_plugin.php');
The trailing .php causes a mismatch in the plugin validation for non-superusers because only the 'basename' of the plugin is included in the search. You can correct the problem (on a plugin-by-plugin basis) by modifying the extra_datafile to read
Code:
define('MY_PLUGIN_FILENAME', 'my_plugin');
Bookmarks