Hi, I have a Linux FC3 with PHP4/phpBB2 and MySQL 4.1.x installed. I am pretty sure I have done the right thing (RTFM etc) however I have had a few probs. Yep, got the nuke check thing and found the forum posting no probs. Next my lowercase alphanumeric admin name/password was rejected so I commented out the check. Not sure what is wrong as I do not do PHP (perhaps no capital letters, I only had numerics in the password).
Then I found I needed to adjust the "forbiden_fname_char" string
from :
INSERT INTO CPG_config VALUES ('forbiden_fname_char', '$/\\\\:*?"\<>|` &');
to
INSERT INTO CPG_config VALUES ('forbiden_fname_char', '$/\\\\:*?"\<>|` &');
in order to get past some syntax errors due to the ";" embedded chars. My real show stopper is this:
Template error
Failed to find block 'login'(#(<!-- BEGIN login -->)(.*?)(<!-- END login -->)#s) in :
<!-- BEGIN home -->
<a href="{HOME_TGT}" title="{HOME_TITLE}">{HOME_LNK}</a> ::
<!-- END home --> <!-- BEGIN my_gallery -->
<a href="{MY_GAL_TGT}" title="{MY_GAL_TITLE}">{MY_GAL_LNK}</a> ::
<!-- END my_gallery --> <!-- BEGIN allow_memberlist -->
<a href="{MEMBERLIST_TGT}" title="{MEMBERLIST_TITLE}">{MEMBERLIST_LNK}</a> ::
<!-- END allow_memberlist --> <!-- BEGIN my_profile -->
<a href="{MY_PROF_TGT}" title="{MY_PROF_TITLE}">{MY_PROF_LNK}</a> ::
<!-- END my_profile --> <!-- BEGIN enter_admin_mode -->
<a href="{ADM_MODE_TGT}" title="{ADM_MODE_TITLE}">{ADM_MODE_LNK}</a> ::
<!-- END enter_admin_mode --> <!-- BEGIN leave_admin_mode -->
<a href="{USR_MODE_TGT}" title="{USR_MODE_TITLE}">{USR_MODE_LNK}</a> ::
<!-- END leave_admin_mode --> <!-- BEGIN upload_pic -->
<a href="{UPL_PIC_TGT}" title="{UPL_PIC_TITLE}">{UPL_PIC_LNK}</a> ::
<!-- END upload_pic --> <!-- BEGIN register -->
<a href="{REGISTER_TGT}" title="{REGISTER_TITLE}">{REGISTER_LNK}</a> ::
<!-- END register --> <!-- BEGIN faq -->
<a href="{FAQ_TGT}" title="{FAQ_TITLE}">{FAQ_LNK}</a> ::
<!-- END faq --> <!-- BEGIN login -->
<a href="{LOGIN_TGT}" title="{LOGIN_TITLE}">{LOGIN_LNK}</a>
<!-- END login --> <!-- BEGIN logout -->
<a href="{LOGOUT_TGT}" title="{LOGOUT_TITLE}">{LOGOUT_LNK}</a>
<!-- END logout -->
I got this with a base install. Attempted again but after adjusting theme to be "classic" as "core" does not exist, still no joy. So, what have I done wrong? Not sure how others get by without seeing these MySQL syntax errors being reported (similar issue with phpBB2 install). Oh I am sharing the phpBB2 database, admin login etc. Also this is all on my sandbox localhost m/c. Hope you can help, TIA.
Robin