Available File Types For Digital Products
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
-
-
·
LeonidS
- ·
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;
-
·
LeonidS
-
- · Fanalogy
-
·
In reply to LeonidS
- ·
Hello, Do i include the .jpg,.txt or just jpg,txt separated by commas?
-
- · Fanalogy
-
·
In reply to LeonidS
- ·
Also getting error --Unknown column 'sys_objects_storage' in 'where clause'
-
-
·
LeonidS
-
·
In reply to Fanalogy
- ·
Yes, you do, the query was corrected
-
·
LeonidS
-
- · Fanalogy
- ·
Awesome, that query worked great thank you. Also, no . was required. Thanks again.