Welcome Guest, Not a member yet? Register   Sign In
Codeigniter & IBM IHS
#1

[eluser]Unknown[/eluser]
Hi all,

Just a short question about CodeIgniter and IBM IHS. Has someone running this setup?

I developed an application on Apache and MySQL and i need to migrate now to another webserver with IHS and Oracle, the oracle implementation worked well, but i got issues with the IHS migration part.

If i enter a correct URL i just get a blank page, but if i enter a wrong URL he gives me Page not found (what actualy would be correct). But it's not a framework error page.

Any ideas? Sad

Cheers
Michael
#2

[eluser]TheFuzzy0ne[/eluser]
Welcome to the CodeIgniter forums!

A blank page is normally caused by a trailing tab or space after a closing PHP tag, or because an error is being thrown, but error reporting is disabled.

To enable error reporting, paste this at the top of your index.php file:
Code:
ini_set('display_errors', '1');
error_reporting(E_ALL);
#3

[eluser]Unknown[/eluser]
Many thanks Smile

Well, that was my idea too, but it didn't help. He doesn't print out any thing.

The strange thing is, when i create a new codeigniter application, just basic settings, it works..

#4

[eluser]TheFuzzy0ne[/eluser]
Have you enabled logging? What does your log say?




Theme © iAndrew 2016 - Forum software by © MyBB