I have an issue with my code when I upgrade my CKeditor from 4.23 to 4.24 LTS. For some odd reason, my upload method in flask is not working anymore and returns none. Below is my code where it fails and returns the error message
@app.route("/up", methods=["POST"])
@login_required
def upload_file():
try:
fnum = int(request.args.get("CKEditorFuncNum", None))
except (ValueError, TypeError):
return "<html><body><script type='text/javascript'>alert('Unknown function');</script></body></html>"
I tried disable the license key check in CKeditor. I also tried hard digging around CKeditor to see what the changes were but it didn’t seem to significant
New contributor
Sammy Lam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.