I'm not sure what "user 99" permissions is, but you could create a script to run to edit the permission level after the install is completed:
use the following code to change the permissions on the webassist directory to 755, this will allow read, write execute for the owner and read, write for the user and group:
<?php
chmod("webassist/", 0755);
?>