Hello all
Things went so well for so long, then deluge, first stream attack (resolved by moving stream) and same time my PHP broken. It all started yesterday php not working then noticed my hosting account looks different, it got migrated, PHP version <?php
try { // Get the configuration require_once('../config/config.php');
// Get the code for this page require_once('../code/code.playing.php');
// Get the display for this page require_once('../display/display.playing.php');
} catch (Exception $ex) { // The error page will be displayed if anything goes wrong above $message = $ex->getMessage(); require_once('../display/display.error.php'); } newer. Thanks to a thread here I saw that I had to change some code lines in some config files and yeah success PHP worked again. Tested request system and dang not working, famous 111 access denied error. I make sure the port is still visible on SAM and yes it is so I do a chat with my web hosting provider. I explained that things suddenly stopped working and he informed me my account was migrated. I went straight to the point and asked to check if outgoing port 1221 was still open on my dedicated IP address but he didn’t really address this issue he messed with some code and now whatever php page I open I get this php code.
<?php
try { // Get the configuration require_once('../config/config.php');
// Get the code for this page require_once('../code/code.playing.php');
// Get the display for this page require_once('../display/display.playing.php');
} catch (Exception $ex) { // The error page will be displayed if anything goes wrong above $message = $ex->getMessage(); require_once('../display/display.error.php'); }
This is a long shot and am wondering if something would come up to anyone’s mind that could be obvious
Thank you
|