SCUSDYouth Posted June 4, 2014 Report Share Posted June 4, 2014 What types of files can be uploaded to Caspio? Is it possible to upload short videos? Longer vidoes? 3-5 mins.? 30-60 minutes? Would that take of too much Caspio storage space? Quote Link to comment Share on other sites More sharing options...
0 casGary Posted June 5, 2014 Report Share Posted June 5, 2014 Hi there, Plenty of information about files DataType in this article http://howto.caspio.com/files-and-images/ Good luck. Quote Link to comment Share on other sites More sharing options...
0 GoCubbies Posted June 5, 2014 Report Share Posted June 5, 2014 Storage is not as much of an issue, it is the Data Transfer in accessing the data you should take a look at. Reference http://www.caspio.com/pricing/pricing-faq.aspx for Data Transfer information. Each time you access these files, you could be incurring Data Transfer. Quote Link to comment Share on other sites More sharing options...
0 SCUSDYouth Posted June 5, 2014 Author Report Share Posted June 5, 2014 Thanks everyone for your prompt responses. Quote Link to comment Share on other sites More sharing options...
0 HampasLOUpa Posted September 14, 2018 Report Share Posted September 14, 2018 Hi, You can upload most type of files such as documents, spreadsheet and images and most especially the most common sql file formats . You can also upload videos and music but can't be played. Since I think they don't have a player for that. These medias are treated as general files. Hope this helps. Quote Link to comment Share on other sites More sharing options...
0 Kurumi Posted January 20, 2022 Report Share Posted January 20, 2022 Hi - Just wanted to share this solution. If you want to restrict file type in multiple fields, just like in this article: https://howto.caspio.com/tech-tips-and-articles/advanced-customizations/restrict-file-types-that-can-be-uploaded-in-a-datapage/ You can use this code: <script type="text/javascript"> var files = Array.from(document.querySelectorAll('#InsertRecordFIELDNAME1, #InsertRecordFIELDNAME2, #InsertRecordFIELDNAME3, #InsertRecordFIELDNAME4, #InsertRecordFIELDNAME5')); var extensions = ['pdf']; files.forEach(function(el) { el.addEventListener('change', function(e) { var ext = this.value.match(/.([^.]+)$/)[1]; if (!extensions.includes(ext)){ alert('Invalid file format. Please upload PDF only.'); this.value = ''; } });}); </script> Hope it helps! Quote Link to comment Share on other sites More sharing options...
Question
SCUSDYouth
What types of files can be uploaded to Caspio?
Is it possible to upload short videos? Longer vidoes? 3-5 mins.? 30-60 minutes?
Would that take of too much Caspio storage space?
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.