in reply to Re^2: problem path stored in hash
in thread problem path stored in hash

There could be (invisible) control-characters, for example backspaces, in your config file. To see if your strings have any control-characters in them, you might use Data::Dumper:

use Data::Dumper; $Data::Dumper::Useqq=1; print Dumper(\%config);