• 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

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