Jump to content

narengr

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

narengr's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. "pear install perl" says No releases available for package "pear.php.net/perl" Cannot initialize 'perl', invalid or missing package file Package "perl" is not valid install failed The README file says to compile and install but there is no configure file in the downloaded package. Please help me.
  2. Hi guys... How to install perl interpreter for php? I have downloaded this Perl interpreter form this link http://pecl.php.net/package/perl . Please let me know how to install the same.... Its very urgent Thanks in advance... Naren
  3. <html> <title> RepeatMasker </title> <body> <?php $var = shell_exec ("RepeatMasker gene.txt") or die ("Could not run"); echo $var; ?> </body> </html> I have modified the code like the above. Programs dies saying could not run.
  4. $var = shell_exec ( 'RepeatMasker temp/gene.txt ' ) || die("could not run the program"); I have changed the code as above still its dying, in a browser.
  5. Hi friends... Below is the code. When i try to execute this i am getting the error produced by die; "could not run the program"; <html> <body> <?php $val = shell_exec ( 'RepeatMasker temp/gene.txt > b.out' ) || die("could not run the program"); echo "<pre>$val</pre>"; ?> </body> </html> RepeatMasker is a computational program which takes an argument. The program runs and produces output when i run in terminal. But program cannot be invoked when i am using it with CGI-PERL or PHP. I am suspecting that Apache server loses its privileges when it goes to the background. Please help me with the same. thanks in advance. Naren
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.