Hello,
For the life of me, I cannot find where I can add or remove specific file types a user is allowed to upload in the market module. If anyone has any experience with this please advise. Thanks
Hello Fanalogy !
By default, the Market app has only zip files as allowed and it can be changed only via database. You need to run the following MySQL query:
UPDATE `sys_objects_storage` SET `ext_allow`='your new files extensions divided with , sign' WHERE `object`='bx_market_files' LIMIT 1;
Hello, Do i include the .jpg,.txt or just jpg,txt separated by commas?
Also getting error --Unknown column 'sys_objects_storage' in 'where clause'
Yes, you do, the query was corrected
Awesome, that query worked great thank you. Also, no . was required. Thanks again.
Hello Fanalogy !
By default, the Market app has only zip files as allowed and it can be changed only via database. You need to run the following MySQL query:
UPDATE `sys_objects_storage` SET `ext_allow`='your new files extensions divided with , sign' WHERE `object`='bx_market_files' LIMIT 1;
Hello, Do i include the .jpg,.txt or just jpg,txt separated by commas?
Also getting error --Unknown column 'sys_objects_storage' in 'where clause'
Yes, you do, the query was corrected
Awesome, that query worked great thank you. Also, no . was required. Thanks again.