From: Phil D. <ph...@du...> - 2004-03-03 08:22:36
|
Richard, Please just email any scripts to p.d...@pa... but first please ensure the scripts you modified are freshly updated from CVS on sourceforge. ---------------------------- > Problem > ------- > Bad title (first clue problem was comming) > error loading page on click 'login' > > Changed > ------- > "<?echo" replaced with "<?php echo" > > files affected > -------------- > includes/Login.php > index.php > There were quite a few other short tags used .. I have replaced all of these with <?php throughout > ----------------------------------------- > Problem > ------- > undefined index error visible > > Changed > ------- > add line > $hide_menu = false ; > (could go anywhere, I put it at the end) > > Files affected > -------------- > config.php > I removed this variable altogether now so no need to define it in config.php > > Problem > ------- > undefined index error visible on first load of app > > Changed > ------- > > added the lines (after session_start;) > > if (!isset($_SESSION["AttemptsCounter"])) > { > $_SESSION["AttemptsCounter"] = 0 ; > } > > Files affected > -------------- > session.inc > > ----------------------------------------- This is a curious one since the latest version 2.8 actually has this code already in session.inc ?? I haven't changed it but would like to confirm you are using a prior version Richard?? > > Problem > ------- > logo image not displaying in footer > > Changed > ------- > > replaced line 23 in footer.inc > > old <td align="center"><img > src="<?="$rootpath/css/$theme/images/webERP+sm.gif";?>"></td> > new <td align="center"><img src="<?php echo > "$rootpath/css/$theme/images/webERP+sm.gif";?>"></td> > > Files affected > -------------- > footer.inc fixed. > > ----------------------------------------- > Problem > ------- > Version downloaded said 2.8 Config.php says $Version = "0.2.7"; > Files affected > -------------- > Config.php > Changed > ------- > no action taken Well here we have the explanation to my earlier question - you have version 2.7!! That explains the AttemptsCounter issue. I am guessing you do not have CustEDIConfig.php EDIMessageFormat.php and a few other scripts at all. I think the sourceforge mirroring might be a little flaky. > ----------------------------------------- > Problem > ------- > Lots of Undefined Variable notices, I suggest some of the testing needs to > be > done with notices shown (php.ini setting) rather than switched off. > Good point - will do! > > Otherwise looking very much smoother than the earlier versions. > > I have a prospective user, so my interest has increased. Hope he/she bites! Phil |