H5P content error - on trying to edit in Moodle - moodle

In Moodle, I created a new H5P "activity", and then uploaded a reusable template of the crossword from the H5P site. On trying to open the settings and EDIT the content of this crossword (and also the essay writing feature), I got the following error:
**The given URL is incorrect or you cannot edit this file.
More information about this error**
Following the link gave the following error on the moodle forums:
error/core h5p/error:emptycontentid
It has worked in the past and works with certain H5P content types, so I am unsure as to why this edit error is occurring. I've posted on Moodle/H5P forums which aren't terribly active so hoping for some answers here!

It may seem silly, but took me a while to figure it out. I had simply uploaded the same file and it doesn't allow the same file name. This was what was causing the error.

Related

SF Message Channel Error: Cannot find Lightning Component Bundle force-app

I'm following a Lightning Web Component course and have been stuck on the Lightning Message Service lesson. After having created the messageChannels folder under force-app/main/default and creating the XML file, whenever I try to push the code (to either a Scratch Org or a Dev Org) I receive the error "Cannot find Lightning Component Bundle force-app".
I've searched frantically for an answer and none of the solutions online seem to help.
The XML file was copied and pasted from here: https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_lightningmessagechannel.htm
The package.xml file has also been copied and pasted from there (the applicable part)
3.The folder's name is spelled correctly and the file is aptly names as well (lwcChannel.messageChannel-meta.xml)
If I remove the messageChannels folder, pushing the code works normally.
Any help is appreciated, thanks in advance!

BadRequest in Power Automate while the attachment is uploaded to Sharepoint

I am setting up a flow in Power Automate to retrieve details from a Microsoft Form.
What it does:
Get the reponse details from Microsoft Forms
Creating a new item in a Sharepoint list
If one of the questions is answered with yes, the following will run:
Parsing JSON
Get the file content and metadata using path
Add attachment to Sharepoint in the list
Get the items
Add the same attachment to a database folder in a Sharepoint folder
It goes wrong in the last step where I have some "apply to each"-statements. Somehow it does save the file to the correct folder, but it does give an error in the flow itself. I have read multiple forums regarding this problem, but it does not seem to solve mine.
Update:
I was able to clear up the error in the end. However, the "Apply to each" still gives an error. The file has been updated in the folder.
Apply to each runs, but still gives error
Please help :(!

jQuery File Upload fails on large files

I am trying to use Blueimp jQuery File Upload and it works great with small files. If try to upload anything greater than 50mb it fails and I get an error 'Empty file upload result'.
I have seen lots of responses to questions from people getting the same error but they seem to get it despite the file uploading correctly or the code corrections suggested don't seem to apply to the code that is now supplied with the plugin.
The FAQ suggests that there is a server side restriction on file size but I have asked my host to increase it to 1GB and they have confirmed they have done this. I do not have permission to overwrite the php.ini as suggested in the FAQ, I just get a server error.
Has anyone else had this problem and if so how was it resolved?
I am using PHP.

iTextSharp removeUsageRights stopped working

I've been using the code sample from iText in Action (8.7.2) to deal with the "cannot save" issue with PDF forms and iTextSharp. It was working fine, but recently the fix stopped working and all the variations of the code listed in the book to prevent the saving problem haven't solved it.
I'm using the latest version of the iTextSharp library. Has anyone else run into this? Did an Acrobat update break it?
works for me using iTextSharp 5.0.6, Reader X, and Listing 8.29 ReaderEnabledForm from the book. (it's the file named 'xfa_preserved.pdf' in the zip download)
IIRC the last couple of times i saw similar on the mailing list, the problem was specific to how the original PDF was created. if you subscribe, you can post the original PDF and hopefully one of the experts can take a look if they have time.

iPhone MoveMe Example - trouble with DisplayStrings

I'm starting to play a bit with iPhone applications and I downloaded the MoveMe example from the apple web page.
I managed to run the app, however I do not get the strings displayed. I noticed that the DisplayStrings.strings file, although it exists in the app folder, does not appear as one of the resources.
I tried adding it as a resource, but then after compiling I get an error saying "copystrings failed with exit code 1". I cannot find anything online regarding what the origin of this problem is...
The file itself is in utf16 (big endian), and contains simply a list of strings separated by new lines.
Any ideas?
Thanks.
I was having the same problem and as a workaround I renamed DisplayStrings.strings to DisplayStrings.data and added it as a resource. I then modified init in PlacardView.m to use the new filename. This made Xcode happy.
I fixed this by adding the DisplayStrings.strings file as a resource. However, when you do this it defaults the type to 'text.plist.strings' which is incorrect, since the file is just text. So, right click on the DisplayStrings.strings file in resources and change the type to 'text'. This solved the problem for me.