The hosting company say it is PHP4 - but can be set to PHP3 if required (have tried this makes no difference) There was no .htpassword file in any of the directories - I have tried loading a blank one into them - also makes no difference hope this helps 41 ############## db/mysql ####################### 42 $pc = array(); 43 $pc['db'] = 'dbxxx'; 44 $pc['user'] = 'dboxxx'; 45 $pc['pass'] = 'xxx'; 46 $pc['host'] = 'dbxxx'; 47 $pc['prefix'] = ''; 48 $plugin_config['db']['mysql'] = $pc; 49 50 ############## protect/htpasswd ############## 51 $pc = array(); 52 $pc['use_plain_text'] = @PROTECT_HTPASSWD_PLAIN@; 53 $plugin_config['protect']['htpasswd'] = $pc; 54 55 ############## protect/php_include ############## 56 $pc = array(); 57 /// redirect user after logout to: 58 $pc['redirect'] = ''; 59 $plugin_config['protect']['php_include'] = $pc;
$pc['use_plain_text'] = @PROTECT_HTPASSWD_PLAIN@; replace it to $pc['use_plain_text'] = 0; I hope you used automated setup? In another way you will get more troubles for sure.
Alex thanks - that more or less fixec it the only further problem was on line 72 (or 75?) $pc['admin_approval'] = @PAYMENT_FREE_APPROVAL@; I changed that to $pc['admin_approval'] = 0; and so far so good thankq
Use automated setup as described in the manual: http://cgi-central.net/opened/html/ It will save you time for sure!