• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Fresh Install No theme

Status
Not open for further replies.
Made progress the site shows up now. but can't access admin or upload and images i get a 404. I have messed with the htaccess but that hasn't seemed to work
 
It seems that mod_rewrite is turned off. Can you paste the .htaccess?
 
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]
RewriteRule ^admin/(.*) admin/index.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
 
Make sure that the file looks like this:

Code:
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 am getting a new error now.
Can't find default language file. Please check your lang in the config.php file.
I have checked 4 times it is there. I even re uploaded it.
 
Probably you are doing a bad installation. I've notice that in some systems things like left the Bitorrent client open can screw the FTP uploads. Perhaps any other use of the network is making FTP fail and no upload the necessary files.
Anyway, if you want I can review the install for you. Just send me the FTP details via private conversation.
 
By doing a simple test like this:
PHP:
require_once(__CHV_PATH_LANGUAGES__.'en/chevereto_lang.php');

I get this error:

Warning: require_once(/<serverpath>/content/languages/en/chevereto_lang.php) [function.require-once]: failed to open stream: Permission denied in /<serverpath>/includes/chevereto.php on line 83

Fatal error: require_once() [function.require]: Failed opening required '/<serverpath>/content/languages/en/chevereto_lang.php' (include_path='.:/usr/share/pear:/usr/share/php') in /<serverpath>/includes/chevereto.php on line 83

This means that you have a problem with the includes, notice the "Permission denied"? This is because you have mess the permissions on the folders. Folders should be 755 and PHP files 644.

I've change the permissions on your installation and it seems to be working 😉
 
Thank you.

The upload is working great.
I have another weird issue.

Warning: Unknown: open(/var/lib/php/session/sess_10963a51bb3733ff1dc4264a4d43ef1f, O_RDWR) failed: Permission denied (13) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0
Thats when loading the admin page.
 
I am guessing it is a file permission error again. can you tell me what file handles the session stuff?
Because this error is stopping me from entering the admin area.
 
Sure, no problem. Remember to change your FTP pass just in case to be more safe. 😉
Glad you like the support that you got here, feel free to ask anytime you need help.
 
Status
Not open for further replies.
Back
Top