I have been scratching my head FileField. Does the FileField require a seperate process?
Although my url gets saved .. but my file doesn\'t get uploaded ... what am
You need to include the files when creating the form
oplinkform = oplinkform(request.POST, request.FILES)
Also make sure that your form has the correct enctype
<form enctype="multipart/form-data"></form>