• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

Upload issues

Status
Not open for further replies.

Jim

Chevereto Member
Ok so I read the first page of issues here and none match mine so....

1) on uploading from computer I get a http 401 error and the tag "no image has been uploaded"
2) on uploading from a url "on all complete window blahblahblah" window pops up and I have to hit ok. The process bar just continues forever with no completion, I end up having to hit cancel. None of the links show up, yet if I login to the admin the pictures are there.
 
401 error is for not authorized request (since you are doing basic http auth) and the onwindowblabla is just a debug message that will go away if you set error_reporting to "false".
More info on the 401 request and uploadify can be found on this topic: http://chevereto.com/community/threads/password-protect-causes-http-error.1962/#post-10964

Just deny access to index.php and you will get what you need and uploadify won't be mad. To do that, just put this rule at the top of the chevereto's root .htaccess

Code:
# password protect single file
<IfModule mod_auth.c>
<Files "index.php">
  AuthName "Username and password required"
  AuthUserFile /home/path/.htpasswd
  Require valid-user
  AuthType Basic
</Files>
</IfModule>

Code taken from http://perishablepress.com/htaccess-password-protection-tricks/
 
Hah fantastic sir, both problems are fixed. Definitely time for me to go to bed though, took me 5 minutes to realize the reason nothing had changed is I hadn't restarted apache yet 😵
 
From php error log, I am getting........ "PHP Notice: Undefined index: ImagesUp in /var/blah/blah" after every upload, is this anything to worry about?
 
Nah, is just a notice. You have to worry about the Warnings and the Critical errors.
 
Status
Not open for further replies.
Back
Top