jQuery php file outside of public_html - Need help ;)

jQuery php file outside of public_html - Need help ;)

Good Morning everyone

I was wander whether I could get some help from you guys with a blocker issue I am having right now L

Let me give you some background. My server file structure looks like this

 

  1.  /
  2. HOME
  3. USER
  4. Connection
  5. Public_html
  6.                 Index.php
  7. resources
  8.                                 library
  9.                                 templates
  10. top_header.inc
  11. web_main_dir
  12.                                                                 f_menu_dir
  13.                                                                                 Slideview.php
  14.                                                 web_support_dir 

In public_html -> Index.php require once top_header.inc which includes my jQuery script (See below)

 
  1. <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js' type="text/javascript">
  2. </script>
  3.  
  4.     <script type="text/javascript">
  5.         $(document).ready(function() {
  6.             $("#category_2").live("click", function(){
  7.                 var category_2 = $("#category_2").val();
  8.                
  9.                 $.post("Sideview.php", { category_2: category_2}, function(data) {
  10.                     $("#viewid2").html(data);
  11.                 });
  12.                 return false;
  13.             });
  14.         });
  15.     </script>
 
 
  1.     <script type="text/javascript">
  2.         $(document).ready(function() {
  3.        
  4.        $("#viewid2").load("Sideview.php");
  5.         
  6.             
  7.         });

 

But my problem is that when I load Sideview.php the response is as fallow L

 

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
   
<html><head>
   
<title>404 Not Found</title>
   
</head><body>
   
<h1>Not Found</h1>
   
<p>The requested URL /~arek/Mainview.php was not found on this server.</p>
   
</body></html>
   

  Would you be able to assist me with this issue.

  Kind Regards;