|
Search
You searched for the word(s):
Showing page 158 of 231 (2,301 total posts)
< 1 second(s)
-
Hi,
You need not call the CuteWebUI_AjaxUploader_OnStart,
the ajax uploader would call it if the javascript function exists.
you just need disable the dropdownlist there.
All these things should be done in client side.
Regards,
Terry
-
Hi,
If you move the file in the FileUploaded event, the file would not be added into the attachment collection.
If you want to control the attachment collection , and want to add items into the collection,
you need check our advanced example code. the EditTopic.aspx page.
Regards,
Terry
-
Hi,
You can delete the file if it exists:
if(System.IO.File.Exists(filepath))
System.IO.File.Delete(filepath);
args.MoveTo(filepath);
or you can report error if you do not want to override it:
if(System.IO.File.Exists(filepath))
{
SendAlert(''File already ...
-
Hi,
I think the most probably reason is SQL error.
Can you use SQL Profile to check what cutechat executed ?
Regards,
Terry
-
Do you get other error logs ?
the url of 404 error is .._Addon=verify&.. , but the log you uploaded is .._Addon=upload&..
Regards,
Terry
-
Hi,
I just checked all logs..
The form data is OK, the upload module can read it.
after Response.Write(''OK'') , there is a GENERAL_NOT_SEND_CUSTOM_ERROR
Maybe the error is that , the uploader module do not set Response.StatusCode=200 before Response.Write(''OK'')
I will create an ...
-
Hi,
I think you also need change the pattern
components/report/create
109.
PATTERN_MATCH
Pattern=''^components/report/create'', InputURL=''components/report/create'', Negate=''false'', ...
-
Hi,
I just found that the uploader try to access the
components/report/create?areaID=820
That's the problem.
Can you show me the HTML source code ? what is the form action ?
Regards,
Terry
-
Hi,
It seems that your are using IIS7 url rewrite module.
I sugguest you keep the querystring like this:
(maybe you need modify the pattern a little to make it works)
<rule name=''Report_Create_Area_Rewrite'' stopProcessing=''true''>
<match ...
-
Hi,
Can you post your url configuration?
you need handle the conditions of the querystring which be added by uploader.
Regards,
Terry
... 158 ...
|
|
|