Gossamer Forum
Home : Products : DBMan : Installation :

Can't modify subroutine entry in scalar assignment at db.pl

Quote Reply
Can't modify subroutine entry in scalar assignment at db.pl
Hello, I used perl -d db.pl to debug. The error message was

Can't modify subroutine entry in scalar assignment assignment at db.pl line 40, near "".";"

where the line 40 statement in db.pl is
$db_script_path=".";

Could anyone pls help?? Thx a lot!


Quote Reply
Re: Can't modify subroutine entry in scalar assignment at db.pl In reply to
Your problem is probably before line 40. Often that's what happens.

I would look for a & where you should have a $, given the error message you got.


------------------
JPD





Quote Reply
Re: Can't modify subroutine entry in scalar assignment at db.pl In reply to
Thank u! I'll try that out!