Forbidden

You don't have permission to access /abc.php on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

please give the suggestion for Solve this problem.

please give the Suggestion step by step i am fresher for PHP Development....

Thanks in Advance..

There are a number of reasons why you're seeing that error.
Would I be right in assuming you are using Apache?
You will need to check the file permissions on the folder containing the php file and make sure the correct user's are set.
Or you may need to configure your httpd.conf file. There is a global sectin that should look like thi:

<Directory />
    #Options FollowSymLinks
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>

If neither of those work, Google apache server errors and 404. You should find your answer.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.