Paid users have a different support system and they can call the X10 800 number to speak with an admin directly. You aren't competing with 30000 other users (literally) to get support. There are probably 100 tickets a day submitted with users just as frustrated (if not more, I've seen some REALLY mad people
) as you.
Unfortunately, I'm not experienced at all in CGI, but I will do my best to assist you and hopefully someone more experienced will come along to assist me.
Can you try using a simple script that will do something other than send an email to do a test if the script is loading at all or not? Then we can establish whether or not the problem is with sending email or with your script loading, since your script is known to work properly. For example, in PHP I would do something like:
Code:
<?php file_put_contents('./test.txt', 'This file was created, so this script loaded correctly!'); ?>
So, when the script loads it creates a file in the same folder as the script, and if the file is there, then I know my script works. If this works for you (with CGI) then we know that your script is loading, but the problem is with X10's sending mail and then we can fix the problem from there. If your script doesn't write the file, then your script isn't loading and something's wrong with your site's configuration or possibly the server configuration.
Also, just to make sure I've covered all the bases, have you checked your junk email to see if the test you did ended up there instead of the inbox? Are there any errors in your logs?