Hard to tell what you mean by not working. If you are getting an error that is helpful. What I gather you might be facing is that you are not able to upload a file larger than 1MB. The setting you have for maxsize=”1″ is telling fileup the max size to upload is 1 and the type is Megabytes. Megabytes or “m” is the default and so does not need to be specified, but shouldn’t cause any problem if that’s what you want.
So in short if you want the maximum upload size higher than 1MB for example 20MB, this would be your shortcode:
[fileup maxsize="20" base="2" makedir="true"]
Also, it seems you have a space at the end of your shortcode before the closing bracket (]). I don’t think this causes a problem, but I usually make sure there is no space after the leading bracket ([) and the trailing bracket (]).
And make sure if you copy/paste that you fix any quotes that might look like ” instead of "
-
This reply was modified 3 years, 8 months ago by
thorak01. Reason: my helpful quotes didn't turn out right