PHP function question

I've got a script that uses @getimagesize to calculate an image's size and then inputs it in the <img> tag for that images. For some reason, it doesn't work on my host. I did phpinfo() and it listed this for the "Configure Command"
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--with-curl' '--with-swf=/usr/local/flash' '--enable-ftp' '--with-gd=../gd-1.8.4' '--with-jpeg-dir=/usr/local' '--with-xpm-dir=/usr/X11R6' '--with-png-dir=/usr' '--with-imap=../imap-2001.BETA.SNAP-0105220031' '--with-ming=../ming-0.1.1' '--enable-magic-quotes' '--with-mysql' '--enable-safe-mode' '--enable-track-vars' '--with-ttf' '--enable-versioning' '--with-zlib'
I'm guessing something in here either needs to be added or changed. I've got a small site hosted with another company, and my code works fine on their servers. For their "Configure Commnd" in phpinfo() they have:
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-swf=/usr/local/flash' '--enable-ftp' '--with-gd=../gd-1.8.4' '--with-jpeg-dir=/usr/local' '--with-xpm-dir=/usr/X11R6' '--with-png-dir=/usr' '--with-imap=../imap-2001.BETA.SNAP-0105220031' '--with-ming=../ming-0.1.1' '--enable-magic-quotes' '--with-mysql' '--enable-xslt' '--with-xslt-sablot' '--enable-track-vars' '--with-ttf' '--enable-versioning' '--with-zlib'
What should I tell my first host (where the @getimagesize in PHP doesn't work) to add or change to their configure line? Thanks

 

 

 

 

Top