• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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