• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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