• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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