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

Admin not login

Status
Not open for further replies.

EnginYilmaz

Chevereto Member
hello friends. I'm password to log in to admin panel but can not login.

I'm upload an image, but I'm getting a 404 error.

picloading.in
 
It seems that you don't have mod_rewrite enabled. You must ask your server administrator or hosting company to enable mod_rewrite in your server.
 
Mod rewrite is needed and is a must have requirement. If your server is not apache perhaps you don't have mod_rewrite at all, in that case it depends on your server on how to emulate the mod_rewrite like nginx rewrite rules.
You can find more info about server requirements here: https://chevereto.com/docs#!server-configuration
 
I solved the problem of mod_rewrite, but I'm having trouble viewing pictures that I have installed. Can you see the picture I can not see you?
 
Code:
#ServerSignature Off
#Options -Indexes -MultiViews
 
#Options +FollowSymLinks
RewriteEngine On
 
# If you have problems with the rewrite rules remove the "#" from the following RewriteBase line
# You will also have to change the path to reflect the path to your Chevereto installation
RewriteBase /
 
RewriteRule ^api$ api.php [L]
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

I use this way, but you still get the error.

http://picloading.in/W
http://picloading.in/images/2012/09/19/jMocn.jpg
 
On the folder /images there is a .htaccess that looks like this:

Code:
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>
 
AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
Options -ExecCGI
 
# If you are getting a 500 error on the files on this directory is because your server has
# conflicting httpd conf with the "Options -EcecCGI" flag.
# Add "#" at the begining in both "AddHandler" and "Options" lines on this file then remove
# the "#" from the begining of the following lines:
 
#<FilesMatch "\.(php|php3|phtml|pl|py|jsp|asp|htm|shtml|sh|cgi|fcgi)$">
#    deny from all
#</FilesMatch>

In your case you should use this instead the default one:
Code:
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>
 
#AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
#Options -ExecCGI
 
# If you are getting a 500 error on the files on this directory is because your server has
# conflicting httpd conf with the "Options -EcecCGI" flag.
# Add "#" at the begining in both "AddHandler" and "Options" lines on this file then remove
# the "#" from the begining of the following lines:
 
<FilesMatch "\.(php|php3|phtml|pl|py|jsp|asp|htm|shtml|sh|cgi|fcgi)$">
    deny from all
</FilesMatch>
 
On the folder /images there is a .htaccess that looks like this:

In your case you should use this instead the default one:
Code:
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy all
</Files>
 
#AddHandler cgi-script .php .php3 .phtml .pl .py .jsp .asp .htm .shtml .sh .cgi .fcgi
#Options -ExecCGI
 
# If you are getting a 500 error on the files on this directory is because your server has
# conflicting httpd conf with the "Options -EcecCGI" flag.
# Add "#" at the begining in both "AddHandler" and "Options" lines on this file then remove
# the "#" from the begining of the following lines:
 
<FilesMatch "\.(php|php3|phtml|pl|py|jsp|asp|htm|shtml|sh|cgi|fcgi)$">
    deny from all
</FilesMatch>

so thanks rodolfo

http://picloading.in/images/2012/09/20/NEcVD.jpg
http://picloading.in/r

the problem is solved
 
Status
Not open for further replies.
Back
Top