Blank website.

Status
Not open for further replies.

telefrancisco

New Member
Messages
11
Reaction score
0
Points
0
Hi, since a while (I waited because I knew that admins were improving the servers because of the migration) I just see a blank a page even in my index page (which is a simple PHP) and not to mention the two sites I'm hosting (that they use Xoops).

My main site is: telefrancisco.x10hosting.com


If It's my fault for anything that I need to do please notify me so I can solve that as soon as possible.

Thanks in advance :)
 

dirtracer36

New Member
Messages
130
Reaction score
0
Points
0
It looks to me like you have a index.htm file or default.htm with just
Code:
<p align=center>
in it. That would show a blank page.
 

dest581

New Member
Messages
348
Reaction score
0
Points
0
It looks to me like you have a index.htm file or default.htm with just
Code:
<p align=center>
in it. That would show a blank page.

It's definitely index.php, which means the page is stopping suddenly mid-script. This happened to me on the sustained server around the time of the move.
 

dirtracer36

New Member
Messages
130
Reaction score
0
Points
0
I would upload the index.php file again or check it to make sure it's not corrupted.
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
If your page is stopping while executing it could output a blank page. This is usually caused because the script is trying to execute a function that we do not allow, like exec or shell_exec. The script creator probably added an @ sign before the function suppressing all error output. Since the error is suppressed you see just a blank page. I would look through your PHP scripts and see if any functions have the @ signed preceding them, if so remove it to see if you get any errors.

If you need further assistance please re-open this thread or create a new one.

-Corey
 
Status
Not open for further replies.
Top