Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6893321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:38:40+00:00 2026-05-27T06:38:40+00:00

In my application when i sending mail forbodden error message is displayed This is

  • 0

In my application when i sending mail forbodden error message is displayed
This is my ajax code

$.ajax({  
                    type: "POST",  
                    url: "http://www.ryuneo-clients.co.uk/houndzabout/process.php/"+x+"/"+y,
                    success: function(msg){
                    if(msg == 0)
                    {
                        alert("Your Request Is Send!");
                    }else{
                        alert("Your Request Is Failed!");
                    }
                    $("#txtname").val("Your Name");
                    $("#txtphone").val("Your Phone Number");
                    }
                });

This is the process.php page

<?php
    $uri = $_SERVER['REQUEST_URI'];
    $pieces = explode("/", $uri);
    $name = $pieces[3];
    $phone = $pieces[4];

    $nam11 =  urldecode($name);

    /*$to = "mariyadavis90@gmail.com";*/
    $to = "wirralpetnanny@live.co.uk";
    $subject = "New Request Come !";
    $message = '<div style="background-color: #EEEEEE;border-bottom: 1px solid #DCDCDC;padding: 10px 0 20px;width: 400px;"> 
<div style="width:400px;">

<div style="width:400px;background-color:#eeeeee;padding: 10px 0 20px;border-bottom:1px solid #dcdcdc;">
<div style="width:300px; text-align:center;color:#666666;margin-left:20px;font-size:12px;font-weight:bold;">
Now you got a new request from :
</div>
</div> <!--end of div_form_main-->
<div style="width:400px;background-color:#eeeeee;padding: 10px 0 20px;border-bottom:1px solid #dcdcdc;">
<div style="float:left;width:150px;color:#666666;margin-left:20px;font-size:12px;font-weight:bold;"> Name:</div>
<div style="float:left;width:auto;color:#000000;font-size:12px;font-weight:bold;">'.$nam11.'</div>
</div> <!--end of div_form_main-->
<!--end of div_form_main-->
<div style="width:400px;background-color:#eeeeee;padding: 10px 0 20px;border-bottom:1px solid #dcdcdc;">
<div style="float:left;width:150px;color:#666666;margin-left:20px;font-size:12px;font-weight:bold;"> Phone Number:</div>
<div style="float:left;width:auto;color:#000000;font-size:12px;font-weight:bold;">'.$phone.'</div></div> <!--end of div_form_main-->
</div> <!--end of div_password_main-->';
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
    $headers .="Content-Transfer-Encoding: 8bit";
    if(!mail($to, $subject, $message, $headers))
    {
        echo 1;
    }
    else
    {
        echo 0;
    }
    //die();
?>

when i sending mail

"NetworkError: 403 Forbidden - http://www.ryuneo-clients.co.uk/houndzabout/process.php/fvgh/111-111-11111111"

is displayed in firebug.When i taking the url in new window this message come

Forbidden

You don't have permission to access /houndzabout/process.php/fvgh/111-111-11111111 on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:38:40+00:00Added an answer on May 27, 2026 at 6:38 am

    Unless you have a .htaccess file specifying rewrite rules, your linux server will interpret that as a path. So instead of looking for

    file process.php in folder …/houndzabout and passing it “fvgh” and “111-111-11111111”

    The server is looking for

    file 111-111-11111111 in folder …/hound/process.php/fvgh and passing it nothing

    (note that folder names with periods are valid)

    It’s doing this because you’re separating your filename (houndzabout/process.php) and arguments with a forward slash.

    Traditionally, “GET” parameters are passed following a question mark (?) and separated by ampersands (&).

    In that case, your url line in your javascript should look something like:

    url: "http://www.ryuneo-clients.co.uk/houndzabout/process.php?"+x+"&"+y
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

when i am sending mail in my web application i am getting this erro.
I am sending mail from .net application, my mail code is working fine but
In my web application, i write a code for sending mail the grid view
I have a DLL that provides mail sending functionality to an asp.net application, this
I am sending mail through my application. For that I am using following code.
I'm sending mail from my C# Application, using the SmtpClient. Works great, but I
Sending a mail through my windows application to a person asking him to log
I'm developing an application for the iPhone that has inApp-mail sending capabilities. So far
I have a mail application. While sending to each recipient I am writing to
I have developed one application for sending mail using vb.net. for that i'm using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.