Topic: Please help... install problems
I uploaded everything and went to the install.php, it's blank, as are all other pages.
http://www.southdakotateencourt.com/discuss
please help me
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → Please help... install problems
I uploaded everything and went to the install.php, it's blank, as are all other pages.
http://www.southdakotateencourt.com/discuss
please help me
Make sure all your language files are correct.
define "correct"
Well, check if there's anything missing like commas (was my problem) or there is too much.
What you could do is open them one by one and check if PHP gives any errors.
I'd check the common.php file for the language you're using, because there's a small PunBB thing that causes it not to display an error
The fix is (hopefully this should work):
Open common.php
FIND
// Attempt to load the common language file
@include PUN_ROOT.'lang/'.$pun_user['language'].'/common.php';
if (!isset($lang_common))
exit('There is no valid language pack \''.pun_htmlspecialchars($pun_user['language']).'\' installed. Please reinstall a language of that name.');
REPLACE WITH
// Attempt to load the common language file
if (!file_exists(PUN_ROOT.'lang/'.$pun_user['language'].'/common.php'))
exit('There is no valid language pack \''.pun_htmlspecialchars($pun_user['language']).'\' installed. Please reinstall a language of that name.');
include PUN_ROOT.'lang/'.$pun_user['language'].'/common.php';
if (!isset($lang_common))
exit('Loading the language pack \''.pun_htmlspecialchars($pun_user['language']).'\' failed.');
that code is not anywhere in common.php
that code is not anywhere in common.php
The code I quoted is in include/common.php
The error that you might have would be in lang/[your language]/common.php
oh. youre right, wrong common.
still blank.
Make sure display_errors is enabled?
where? (sorry if my ignorance becomes frusterating) lol
humm.. looks like ya need to get someone to install it for ya and check everything.
PunBB Forums → PunBB 1.2 troubleshooting → Please help... install problems
Powered by PunBB, supported by Informer Technologies, Inc.