[Date updated: 2021/10/15(Fri) 19:48:47]
 I am trying to run my own HeyuriRemix but bbs.cgi just displays the source code.. i haet perl
 
 You need to allow CGI scripts to run in that folder, and also set 
   permissions so that each script file is executable (usually chmod 755, 
   check the scripts documentation for more details)
   
   Here's what I do, but keep in mind that I don't have any real exper-
   ience beyond messing with my raspberry pi test server (Debian 10, 
   Apache 2.4.38, Perl 5.28.1) and I'm linuxly challenged ヽ(´ー`)ノ 
   (also the steps required may be entirely different for your setup):
   
   1. Open "/etc/apache2/apache2.conf" in a text editor as root or whatever
      (location may vary)
   
   2. Add something akin to the following in the "Sets the default 
      security model" section:
   
           <Directory "path_to_scripts_directory_here">
                   Options +ExecCGI
                   AddHandler cgi-script cgi pl
           </Directory>
   
      I do this for every single folder I want to run CGI/Perl scripts in. 
      There may be a less retarded way, but this is what I know, and it 
      usually seems to work... ヽ(´ー`)ノ
   
   3. Save the file
   
   4. Run "sudo systemctl restart apache2" to restart apache
   
   5. Adjust permissions for every directory and file for your site, guide-
      lines are usually provided in the script's documention
   
   6. ????
   
   7. PROFIT!!!
   

Return