• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Unable to create upload folder

Status
Not open for further replies.

Steffen

Chevereto Member
I just moved my site to a VPS and I got it online, but I keep getting this error while I try to upload a picture..
"Unable to create upload folder", I get the error when I click on upload and when it reach 100% it shows it.

Do you know what's the problem?
 
Seems to be permissions issue. Are you running php without permissions?
 
Steffen said:
I don't know.. I didn't set it up so, but what do you think should be done?

I had the same problem. Put 777 permission on folder under images/ Check if for example folder like ../2012 has permission 777.
 
I did it and now it's redirecting to "/image/o" When I have uploaded the picture. And it's nothing there.. :/
 
Hm can you post your site url and enable error reporting on config.php ?
 
I tried uploading a image now.

It pops up a window (Not sure if you made it) But it pops up a window saying that its uploaded, with the image URL! And then its ''Stuck'' On uploading? --> then i search for it, i uploaded this image: http://www.delbildet.net/image/h ..


Are you sure the virtuale folder is ''image'' ? Mayby the window are giving wrong url, idk. Or it could be because you havn't uploaded all files correctly (?)

Anyway, i think you should remove the popup window, as it can't give the image, if you upload multiply, it says ''delbildet.net/uploaded'', then u gotta refresh to view it.
 
It seems that your server doesn't have mod_rewrite installed. Can you please check this?
 
It should be installed now but am now getting that popup window.. :/

MCMAR: I can't remove the popup window I think, it's an error.
 
Looks like it's enabled:
http://delbildet.net/info.php

06162ef702c22e1fd31413eccfcb8d4d.png


I have also updated the .htaccess file:

092deb104a195dc82ecee80863b3d758.png


And I have updated Apache config..

Code:
<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
        Options FollowSymLinks
        AllowOverride all
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride all
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride all
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride all
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>
 
Add this:

Code:
RewriteBase /

Just below this:
Code:
RewriteEngine On
 
Closed for inactivity. If you still have issues please open a new topic.
 
Status
Not open for further replies.
Back
Top