• 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.

Chevereto 3.4.5 DB error

Status
Not open for further replies.

Valère

Chevereto Member
Hello there,

I just updated Chevereto 3.4.4 to 3.4.5, and I get an error when I connect to the administration or configuration of my profile:

Code:
PDOException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'storage_type' in 'field list'

Any idea ?
 
Have you modified something? The script doesn't use that column at all.
 
I've just created an account and I'm not able to see that error in the settings page. Can you send me a screenshot?
 
That explains it eveeeeeeeerything. In 3.X the admin is /dashboard and make sure to don't have a folder called "admin" in your website root.
 
ok ! Thx !

But when I move or delete the admin folder, I have an error like :

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, blabla@hostux.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
 
Yeah but start by delete it then we can keep working on it.
 
Code:
ServerSignature Off
Options -Indexes -MultiViews

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^api$ api.php [L]
RewriteRule ^admin/(.*) admin/index.php [L]
RewriteRule ^images/(\w*\.)(jpg|png|gif)$ images/old/$1$2 [L] #legacy images
RewriteRule ^images/thumbs/(\w*\.)(jpg|png|gif)$ images/old/$1th.$2 [L] #legacy thumbs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]

ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default

##Begin Compression Opts
<ifModule mod_deflate.c>
<filesMatch "\.(js|css|html|php|jpg|jprg|bmp|png|gif|woff|svg|ico)$">
SetOutputFilter DEFLATE
</filesMatch>
</ifModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/x-icon "access plus 14 days"
ExpiresByType image/jpg "access plus 14 days"
ExpiresByType image/png "access plus 14 days"
ExpiresByType image/gif "access plus 14 days"
ExpiresByType image/svg+xml "access plus 14 days"
ExpiresByType image/jpeg "access plus 14 days"
ExpiresByType image/bmp "access plus 14 days"
ExpiresByType application/x-font-woff "access plus 14 days"
ExpiresByType text/css "access plus 1 week"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType text/javascript "access plus 1 week 6 hours"
ExpiresByType application/x-javascript "access plus 1 week 6 hours"
ExpiresByType application/javascript "access plus 1 week 6 hours"
</IfModule>
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
FileETag None
##End Compression Opts
 
Ok it's done ! I remove the line

Code:
RewriteRule ^admin/(.*) admin/index.php [L]

Thx and sorry for the inconvenience !

V.
 
Status
Not open for further replies.
Back
Top