Page 1 of 1

Need Help with Blank Page

Posted: Sat Dec 20, 2008 12:29 pm
by DANNEZ
I have made a .htaccess protected folder in which I have placed my php content page file. The direct URL path leads me to the username/passwod, as it should, but does not forward me to the content page once I enter the username and password. Only a blank page appears.

I am using File Manager/httpdocs and believe it may be a code problem for the file page. I can access the page if it is not in the folder. Can anyone point me in the right direction?
Thank You

Re: Need Help with Blank Page

Posted: Sat Dec 20, 2008 12:42 pm
by DANNEZ
Here is the content file page (members.php)
Is this not http readable as is?

<?php
require_once('init.php');
$loadClass = SB_Modules::loadClass('Modules_ImageGallery');
$imageGalleryObject = new Modules_ImageGallery('bm5xakmb7l2');
$imageGalleryObject->init();
$imageGalleryObject->processAction();
?><HTML><head><meta http-equiv="Content-Type" content="text/html;

Re: Need Help with Blank Page

Posted: Sat Dec 20, 2008 1:14 pm
by DANNEZ
Also here is the .htaccess page.
AuthName ".members.php"
AuthType Basic
AuthUserFile /usr/local/pem/vhosts/*******/webspace/httpdocs/content/.htpasswd
AuthGroupFile /dev/null
<Files members.php>
require valid-user
</Files>
php_flag display_errors on