Blank Page

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
agriz
Forum Contributor
Posts: 106
Joined: Sun Nov 23, 2008 9:29 pm

Blank Page

Post by agriz »

Hi,

I am seeing a blank page. Even the view source is also blank.

That page uses ioncube. I have uploaded ioncube files in server. The ioncube helper file says it is installed successfully.

In the very first link, i tried this.

Code: Select all

<?php
echo "Test";exit;
?>
But i saw the same blank page.

I removed the ioncube coding from that page. then i saw that execution of echo.
What is wrong with that?

No error log, No error reporting. I dont know what went wrong. I just moved the files to new server.

http://tinyurl.com/245gt7l [helper page]
http://tinyurl.com/2d6qspg [blank page]

I am not sure whether the ioncube is the real problem.
I tried this in a new test.php

Code: Select all

<?php if(!extension_loaded('ionCube Loader')){ echo "Not Installed";} ?>
I get the Not installed as a out put.

Can you help me on this?

Regards
Mahesh
agriz
Forum Contributor
Posts: 106
Joined: Sun Nov 23, 2008 9:29 pm

Re: Blank Page

Post by agriz »

Hi,

Please give me a clue where to start about this work.
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: Blank Page

Post by Benjamin »

You may have 32 bit loaders installed on a 64 bit machine. There really ought to be some errors in the error log. If you're able to, I would install the loaders in php.ini, rather than using runtime loading.
Post Reply