Error 403--- HELP!

Can please someone help me get this fixed?

  • yes!

    Votes: 0 0.0%
  • This is how to fixed that...

    Votes: 0 0.0%

  • Total voters
    0
  • Poll closed .
Status
Not open for further replies.

creat158

New Member
Messages
7
Reaction score
0
Points
1
Hi,
I would like to get this fixed as soon as possible as I uses this free host for my school exercises.
I am presently taking Web Design.

So all I want is to know how to fixe this error 403.
I been trying to add a PHP page and the response I get from the page is

The website declined to show this webpage
HTTP 403

This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.

For more information about HTTP errors, see Help.

Most likely causes:
  • This website requires you to log in.

I am login at my host and at my Dreamweaver... I don't know what else it could be.
 

lylex10h

Active Member
Messages
982
Reaction score
71
Points
28
Make sure your public_html folder has 755 permissions and your .php files have 644 permissions. Also if you have a .htaccess file, try renaming it to htaccess.txt and see if that makes a difference.
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
Thank you,
But how do I check that?

Now the message showing is:

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

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
_______
All I want is to open the info.php
which is a table with information on PHP version 5.6.28
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
Thank you,
But how do I check that?

Now the message showing is:

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

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
_______
All I want is to open the info.php
which is a table with information on PHP version 5.6.28

+++++++++++++


Ah I see. yes the public_HTML has 755 permissions and .php have 644 permissions
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
Hello!
Does this Web host uses a different extension for PHP, then .php ?
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
This is the message I get:
Forbidden
You don't have permission to access /xampp/info.php on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

After opening http://creationdodo.x10host.com/xampp/info.php (this page).
How could I change the error or what do I have to update or upload ?
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
Here is my HTAcces file

text-plain.png
htaccess.txt
ASCII text
# Powered by x10Premium.com
DirectoryIndex index.php index.cgi index.html
ErrorDocument 401 "Unauthorized"
ErrorDocument 403 "Authorized"
RewriteEngine On
#### PERSISTENT CONTENT ####



#### PERSISTENT CONTENT END ####

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ sitepro/$1 [L,QSA]


#### PERSISTENT CONTENT ####
 

creat158

New Member
Messages
7
Reaction score
0
Points
1
Please see the post by bdistler
If http://creationdodo.x10host.com/xampp/hello.php has the same permissions as http://creationdodo.x10host.com/xampp/info.php, then the issue is with the code of that file, not .htaccess

For future reference, it is generally not recommended to store .sql files publicly such as the one listed on http://creationdodo.x10host.com/xampp/
_____________________________________________________________

There are not real .sql files, it is just a work for school.
Thank you for the post.
 
Status
Not open for further replies.
Top