Installation failed


by the look of it, what goes wrong here. to be more precise, this is a site which works locally with XAMP and then i just copied it to the webserver. No luck, i get this error page.

i checked the php version and extensions,

PHP Version 7.3.27

  • mbstring extension
  • curl extension
  • ctype extension
  • gd extension
    its all there.

seems to be this case

short tags on

Is there a particular reason this is a PHP file and not simply an .svg?

good question, i’ll check

… probably because you want to use it as snippet.

I guess you could do something like:

<?php
include 'path-to-svg-file.svg';

or

<?php
echo file_get_contents('path-to-svg-file.svg');

… you get it :slight_smile:

1 Like

But actually… Since it is a snippet which is probably loaded in either a template or another snippet, and therefore the logo ends up inline in the page, you don’t actually need the <?xml declaration. So you could also probably just remove the first line

1 Like