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

Eddited the config.php and templatefunctions.php page

Status
Not open for further replies.

nighthawk514

Chevereto Member
In Config.php, I only edited the following.


// Site details
$config['site_name'] = 'mysite.com.com';
$config['doctitle'] = 'my site - host Your Images For Free!';
$config['meta_description'] = 'host your images now.';
$config['meta_keywords'] = 'Image hosting';

And the same meta stuff was used in template functions, I changed lines 393 to lines 396.

After changing these, the site does not load. What is the issue?
 
here's where your problem seems to be:

PHP:
$config['meta_description'] = host your images now.';

looks like you are missing the starting '

replace that line with:
PHP:
$config['meta_description'] = 'host your images now.';
 
post the changes you made to the template functions.php file, maybe the problem is there. or try enabling error reporting in your config.php, that might help locate the issue.
 
Please notice that PHP is very sensitive to typo errors. Always try to use a php editor like notepad++ (free)
 
Status
Not open for further replies.
Back
Top