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

Clean Install Problem

Status
Not open for further replies.

kopox

Chevereto Member
i'm installing a in my host folder http://andreas-shop.com/imagehost/
and i got this error msg.

<?php
/* --------------------------------------------------------------------

Chevereto
http://chevereto.com/

@version 3.3.2
@author Rodolfo Berrios A. <http://rodolfoberrios.com/>
<inbox@rodolfoberrios.com>

Copyright (C) 2014 Rodolfo Berrios A. All rights reserved.

BY USING THIS SOFTWARE YOU DECLARE TO ACCEPT THE CHEVERETO EULA
http://chevereto.com/license

--------------------------------------------------------------------- */

define('access', 'index');

/*** Load the G app ***/
if(!include_once('app/loader.php')) die("Can't find app/loader.php");

what is the problem?
 
Is 5.4+ and you are not even running PHP 4 in that server because the .php files are being directly shown by the server as text files.

If you need a hosting that will work perfect for Chevereto try this: https://chevereto.com/hosting
 
sorry i misstyped, i mean upgrade to 5.4
i'm using godaddy hosting. they said that there is nothing wrong with the server php setting.

any idea?
 
sorry i misstyped, i mean upgrade to 5.4
i'm using godaddy hosting. they said that there is nothing wrong with the server php setting.

any idea?

Yeah the problem is godaddy: Awful provider and support. Like I said, PHP is not running. Sadly I can't do anything because that problem is in the server layer, not in the script.
 
i tried to install it in another folder. it seems the php is working

http://jpghost.info/info.php

but maybe there is something wrong with the setting? or the .htaccess?

=====================================================

# Disable server signature
ServerSignature Off

AddHandler application/x-httpd-php .php

# Disable directory listing (-indexes), Multiviews (-MultiViews) and enable Follow system links (+FollowSymLinks)
Options -Indexes
Options -MultiViews
Options +FollowSymLinks

<IfModule mod_rewrite.c>

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
# If you are using alias is most likely that you will need this.
#RewriteBase /

# 404 images
# If you want to have your own fancy "image not found" image remove the "#" from RewriteCond and RewriteRule lines
# Make sure to apply the correct paths to reflect your current installation
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule images/.+\.(gif|jpe?g|png|bmp) - [NC,L,R=404]
#RewriteRule images/.+\.(gif|jpe?g|png|bmp) content/images/system/404.gif [NC,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\.(css|js|html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|exe|gif|gz|gzip|ico|jpe?g|jpe|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip)$ [NC]
RewriteRule . index.php [L]

</IfModule>

=====================================================
 
Status
Not open for further replies.
Back
Top