Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Solved] FileUpload plugin: Class 'PermissionException' not found error message
plymplan
✭
I discovered in a log file that I have had this error msg for some time now. Just upgraded to Vanilla 2.0.18.1 and File Upload 1.5.2 and it persists.
Class 'PermissionException' not found in [path] /plugins/FileUpload/class.fileupload.plugin.php on line 377
I have scanned all the code for the plugin and I do not find this class
Is its intention just to report an error message?
Class 'PermissionException' not found in [path] /plugins/FileUpload/class.fileupload.plugin.php on line 377
I have scanned all the code for the plugin and I do not find this class
Is its intention just to report an error message?
Tagged:
0
Answers
There is a typo in clsss.fileupload.plugin.php You need to find
throw new PermissionException()
and replace it withthrow PermissionException()
.Thank you! Problem solved.