The website’s configuration prevents you from accessing this page

or if you’re good at coding you could redirect it.

index.php It No is problems

I can not access my file

permission my file 644

exampro code

<?php  
 //fetch.php  
 include_once('../../../../conn.php'); 
 if(isset($_POST["employee_id"]))  
 {  
      $query = "SELECT * FROM tb_category WHERE cat_id = '".$_POST["employee_id"]."'";  
      $result = mysqli_query($connect, $query);  
      $row = mysqli_fetch_array($result);  
      echo json_encode($row);  
 }  
 ?>

Can you rename service folder and file name to anything else? Looks like it’s a system file name like includes or etc.

3 Likes

I too think that it’s a naming restriction. Although modules may also be the blacklisted keyword here.

4 Likes

thank you Admin
because name modules I rename is work

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.