• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Question Site Missing Elements When Migrating using Migration Tool

AcmeAcme

New Pleskian
Hi all,

Happy Thursday.

Newbie here recently started using Plesk and have started to migrate some of my sites across.

The issue I'm having when migrating is that some of the elements, including images and navbar, are either not displaying or not working.

Here's the site as an example - https://harriethellman.co.uk/

I really know very little about PHP but from my newb diagnose it seems to me it could be in the configuration of that.

Anything to point me in the direction of resolving this or even diagnosing would be amazing.

Thanks in advance
 
Your page is using PHP short openers
<?
but your PHP installation is configured to not to allow short openers, so all these segments of your website are not interpreted as PHP, but as literal code.
Either change your openers to
<?php
or configure PHP with short_open_tag = on.
 
Back
Top