Welcome Guest, Not a member yet? Register   Sign In
Blank White Page (see post for error log)
#1

[eluser]pmhart[/eluser]
Hello -

I am getting a blank white page for a homepage in CI. Here is what I gathered from the error log:

ERROR - 2009-10-05 18:59:35 --> Severity: Notice --> Undefined index: timer ...\tools\ipbwi\ipbsdk_class.inc.php 247
ERROR - 2009-10-05 18:59:35 --> Severity: Notice --> Undefined index: debug ...\tools\ipbwi\ipbsdk_class.inc.php 247
ERROR - 2009-10-05 18:59:35 --&gt; Severity: Warning --&gt; require_once(...\sources/action_public/xmlout.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory ...\tools\ipbwi\ipbsdk_class.inc.php 304


These are notices / warnings. Nothing that should cause nothing to be displayed to the page!

I am using xampp 1.7.1, a fresh install ...

If i point to an image, it shows up in the browser. It is driving me nuts!
#2

[eluser]John_Betong[/eluser]
[quote author="pmhart" date="1254805440"]Hello -

I am getting a blank white page for a homepage in CI. Here is what I gathered from the error log:

ERROR - 2009-10-05 18:59:35 --&gt; Severity: Notice --&gt;
Undefined index:
timer ...\tools\ipbwi\ipbsdk_class.inc.php 247
ERROR - 2009-10-05 18:59:35 --&gt; Severity: Notice --&gt;
Undefined index:
debug ...\tools\ipbwi\ipbsdk_class.inc.php 247
ERROR - 2009-10-05 18:59:35 --&gt; Severity: Warning --&gt;
require_once(...\sources/action_public/xmlout.php)
[<a href='function.require-once'>function.require-once</a>]:
failed to open stream:
No such file or directory ...\tools\ipbwi\ipbsdk_class.inc.php 304

[/quote]
&nbsp;
&nbsp;
Your require_once statement is causing the problem. It is doing what you asked it to do by refusing to continue if a file is missing.
&nbsp;
It looks as though you have an incorrect path or a missing file.
Code:
require_once(...\sources/action_public/xmlout.php)

[function.require-once]:
     failed to open stream:
     No such file or directory ...\tools\ipbwi\ipbsdk_class.inc.php 304
&nbsp;
Correct and move on to your next error Smile
&nbsp;

Code:
// These statements should help in creating a relative path to your missing file:  

   echo '<br />' .BASEPATH;   // set in index.php
   echo '<br />' .APPPATH;    // set in index.php
   echo '<br />' .site_url(); // requires: $this->load->helper('url');
   echo '<br />' .base_url(); // requires: $this->load->helper('url');
   echo '<br />' .getcwd();   // PHP function
   echo '<br />' .__FILE__;   // PHP variable
&nbsp;
&nbsp;
&nbsp;
#3

[eluser]BrianDHall[/eluser]
Changing require_once to include_once will give you a visible error, but won't fix your error Wink

As John_Betong notes, its a path error - did you mean to put 3 dots? Just have to play around until you find the right directory.
#4

[eluser]pmhart[/eluser]
Ah so fixing that error works! I was thrown off because it was a tool for a forum software and it was pointing to the main directory, which could contain the files, but is supposed to point at the forum directory.

Anyone with the blank white page, turn your log var to 4 and fix the errors it should work!
#5

[eluser]Rvnikita[/eluser]
Hi.
If you are interesting I wrote how to integrate Invision Power Board with the site auth using Codeigniter.
You can find it here:
<a href="http://rvnikita.ru/2009/12/integraciya-sajta-s-invision-power-board/">http://rvnikita.ru/2009/12/integraciya-sajta-s-invision-power-board/</a>
Sorry, but the article in russian, but you can translate it using <a href="http://translate.google.com"> http://translate.google.com </a>, it's OK
<a href="http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&u=http://rvnikita.ru/2009/12/integraciya-sajta-s-invision-power-board/&sl=ru&tl=en">http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&u=http://rvnikita.ru/2009/12/integraciya-sajta-s-invision-power-board/&sl=ru&tl=en</a>

If you will have any questions, ask me .)




Theme © iAndrew 2016 - Forum software by © MyBB