sigra
sigra

Reputation: 224

JS-PHP. Uploadify return 500 error when file successfully uploaded on the server

I'm using Kohana3 framework and Uploadify plugin for ajax file upload.

When I try to upload file Uploadify shows me 500 error. But if I check my download folder I can see that file uploaded successfully.

I've tried to send response via text or json or boolean, but there is no result.

What is a reason of this problem?

Upvotes: 0

Views: 936

Answers (1)

Akhil Thayyil
Akhil Thayyil

Reputation: 9413

You can do the following steps and check the uploading once again

  1. Check the permission for the folder to which you are uploading the contents. ( Give full permission ie, 777 in linux )
  2. Also check whether there's any apache configuration files/configurations ( .htaccess ) that block the url used to access/view the uploaded content

I think following these steps will solve your problem..

Upvotes: 3

Related Questions