So I wanted to get update.php working with UniUploader.
In update.php find:
require_once( $roster_dir . '/settings.php' );
Just above it add the full path to your roster directory. mine looks like this, yours will be different:
$roster_dir = '/www/somedirectory/modules/Roster';
then find:
include_once( ROSTER_BASE.'lib'.DIR_SEP.'phpbb.php' );
change phpbb.php to nukebb.php to look like this:
include_once( ROSTER_BASE.'lib'.DIR_SEP.'nukebb.php' );
This got automatic updates working via UniUploader. But I still cant get the siggen trigger to work properly. When I call the sig generator directly it works just fine. Outputs a picture to the browser as well as saving it in the proper directory:
http://my.domain.name/modules/Roster/ad ... ayer=Molvi
That works in my browser but from trigger.php I set it up properly:
$etag = 0
$player = urldecodecrap($member_name);
chdir('full path to siggen');
include 'sig.php';
This produces an error in the combineImage function where $im is "not an image resource". $etag and $player are properly available to siggen.php which is no different than being called from the browser going directly to sig.php. So any more clues would be helpful.