Linux-SWAT
Forum Addict!
- Joined
- Feb 13, 2010
- Messages
- 9,188
Maybe a hint (i really don't know if the problem is linked to extensions) :
Look at : components/nsExtensionManager.js
Replace with :
Look at : components/nsExtensionManager.js
Code:
target.permissions |= PERMS_FILE;
Replace with :
Code:
try {
target.permissions |= PERMS_FILE;
}
catch(e) {
ERROR("(jc)can't set target permissions for "+entryName+". Probably due to FAT partition... continue install");
}
Last edited by a moderator: