Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make a webpage from where people can run moss and check similarities in source code files.
For that I'm uploading the files via php and calling the moss script with those files as arguments using 'exec' in php, and dumping the output in a separate text file. The code works fine sometimes but sometimes it just stops after uploading the files.
Following is a snippet from the script

$server = 'moss.stanford.edu';
$port = '7690';
.
.    
$sock = new IO::Socket::INET (
                                  PeerAddr => $server,
                                  PeerPort => $port,
                                  Proto => 'tcp',
                                 );
die "Could not connect to server $server: $!\n" unless $sock;
$sock->autoflush(1);
.
.

it is unable to create connection, and doesn't proceed beyond the fourth line in this snippet - 'die "Could not connect to server $server: $!\n" unless $sock;'

this doesn't happen all the time but, sometimes it works just fine and sometimes it doesn't.
But when I login to my webhost (which is btw godaddy), via ssh and execute the script in terminal with the same arguments, it always works!

Can someone please help me out with this, what's going wrong on the server sometimes that the script dies when executed through browser?

share|improve this question
3  
Moss seems to be an interesting project, perhaps it even uses some Lisp for it... but your question seems to be about Perl. Did you confuse the tags, perhaps? – wvxvw Nov 2 '12 at 19:09
yeah i did that by mistake, thanks for pointing it out. :) – Panks Nov 2 '12 at 19:27
Does it die? What is $!? What is $@ say? A quirk of implementation (having to do with cross-platform timeout support, IIRC) means that IO::Socket::INET conveys errors in $@ rather than $!. This is Inobviously Documented (tm) and a pity in my opinion, but so it is. – pilcrow Nov 2 '12 at 19:59

1 Answer

Since it works fine on another machine the problem likely lies in either your network or the particulars of your Perl install or something to do with the browser/PHP interaction. The easiest thing to check is if its your network.

See if you can reproduce the network problem with something other than Perl. Perhaps telnet moss.stanford.edu 7690 a bunch of times. This would determine if the problem is Perl or if your network connection is just flaky.

I'd also leave a ping moss.standford.edu running and try to reproduce the problem in the browser. If the ping drops out at the same time as you have your problem, there you go, it's a network issue.

share|improve this answer
How network issue on my side can be a problem when the script completely runs on godaddy server? And I'm student and in my college they have blocked this port (7690) and that's is why i was trying to run the the script on godaddy server and use it via webpage. – Panks Nov 2 '12 at 20:29
@Panks I see, when you say you're logging in to run "the script" locally you mean the Perl script not the PHP script which is calling the Perl script. I thought you were trying the PHP locally and on a remote server. In that case we'd need to see how you're calling the Perl program from the PHP. – Schwern Nov 3 '12 at 0:02
Actually it works fine either way, if i logging to godaddy and run the perl in terminal directly, or if i execute the php file in terminal, which in turn calls the perl script using 'exec' command. In the both the cases it works just fine and the result is dumped in the terminal. – Panks Nov 3 '12 at 7:08
Here is the code for php: github.com/panks/moss-it/blob/master/index.php it's little different from what I said above, it calls a python file 'test.py' on line 47 and which does some preprocessing and calls the actual perl script.Though the problem of script dieing is there even if the call to moss(perl) script it is made directly from php using exec. – Panks Nov 3 '12 at 7:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.