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
Need Help with Blank Page
Moderator: General Moderators
Re: Need Help with Blank Page
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;
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;
Last edited by DANNEZ on Sat Dec 20, 2008 1:42 pm, edited 1 time in total.
Re: Need Help with Blank Page
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
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