how do you have the domain name entry listed in the server?
if you have it listed as
www.patrickmaloney.net , it'll only work with
www.patrickmaloney.net and not patrickmaloney.net
if you have it as just patrickmaloney.net and it's still not working, it's probably a web server config issue
to fix it if it's a web server config issue, if it's IIS, change the host header from
www.patrickmaloney.net to patrickmaloney.net, and if it's apache, try adding another virtual host like so:
NameVirtualHost patrickmaloney.net
<VirtualHost patrickmaloney.net>
directives here in httpd.conf
</VirtualHost>