dimumurray
Aug 2 2008, 10:16 PM
First off, let me say that I have spent considerable effort and time going through the forums seeking solutions for this problem. I have even gone as far as to seek help from the Xisto Live support team (they suggested I wait 2 hours and then get back to them. Well I did that, and there has been no change, and live support is now down). I've also tried changing permissions on both files and folders via Cpanel, but to no avail. I still end up with the same error: QUOTE Forbidden You don't have permission to access /index.php on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.41 Server at dimu.trap17.com Port 80 This happens any time I try to access my site via: http://www.dimu.trap17.com/index.phpAnd yes I've put my index.* files into the "/public_html" folder (which seems to be mirrored by the /www folder). What's weird is that I can access my account via cPanelX and even FTP and modify and upload files at will but I can't access my content via the internet. Any ideas as to what might be the problem?
Comment/Reply (w/o sign-up)
Erdemir
Aug 2 2008, 10:23 PM
Perhaps you have replaced /public_html/.htaccess by mistake. Try to delete the .htaccess file. Or edit the .htaccess file and left inside only CODE php_value display_errors on
Comment/Reply (w/o sign-up)
sonesay
Aug 2 2008, 10:51 PM
I hope you didn't delete any files in there before you moved your files in because I've come a cross a post a long time back where a user did that and apparently those files contain certain configuration files for their particular hosting account. The only fix was for the admin to re-run the hosting script for their account again.
Comment/Reply (w/o sign-up)
anwiii
Aug 3 2008, 12:03 AM
hmmm try this either in your ftp client or your file manager through your cpanel. find your .htaccess file in your root directory which should be your public_html directory acording to your post. DirectoryIndex index.html index.php <----copy and paste to your .htaccess on a seperate line. if you can't find your .htaccess, create a .htaccess file(simple text file you can create in notepad) and copy and paste, save, upload to your root directory and retry your site now if that doesn't work, have you been moving files from one directory to another??? if so, your solution could be different than this simple fix hope this works for ya bud. if not, let me know and i wll try to offer further suggestions
Comment/Reply (w/o sign-up)
dimumurray
Aug 3 2008, 04:46 AM
I tried some of your suggestions, but nothing seems to work. And yes I have been moving files about...can an admin please re-run the hosting script on my account...
Comment/Reply (w/o sign-up)
Saint_Michael
Aug 3 2008, 07:32 AM
Hmm its funny I had this happen to two days ago while working a clients website and odds are you somehow change the permissions on your account and so the only way to fix that would be for the admin to change the permissions on your index file and see if that works.
Comment/Reply (w/o sign-up)
anwiii
Aug 3 2008, 08:46 AM
ok. you want us to help you but you aren't being specific to what you were trying to accomplish on your website while moving files around. chances are this can be fixed without resetting your hosting account but you need to be specific bud. so the htaccess file didn't fix it. the only other thing i could think of is you moved files around after installing a cms or blog and you wanted it in your root directory rather than the folder/subdirectory you created. now is this the case or am i off base here before i start offering suggestions. also, did your index files work beofre you started moving files around in other directories? chances are yes but you need to be more specific here so we can help you. something common that happens sometimes is when you move files rather than copy them to another directory, you get the problem you are having. if this is your case, then move all your files back to where they were before and copy them to the directory. seems a little illogical, but it works in some cases. but again....please be more specific here and try my other suggestion in the meantime another thing is resestting hosting....although an easy quick fix, is a watse of admins time when a person requests hosting but doesn't know how to manage it. this is a time to try to fix the error rather than reset hosting and learn from these experiences because the same thing could happen again and what....reset the hosting account again? i've been in your shoes before and know how anxious you are to get things working again so please be patient. now beofre i posted the first time, i tested my own permissions to see if i could get this same error and i didn't which means it probably has nothing to do with your permissions unless the permissions are coming from the program you installed on your website. in which case, we need to know which program you installed QUOTE(dimumurray @ Aug 2 2008, 11:46 PM)  I tried some of your suggestions, but nothing seems to work. And yes I have been moving files about...can an admin please re-run the hosting script on my account...
Comment/Reply (w/o sign-up)
dimumurray
Aug 3 2008, 02:49 PM
Ok I'll try to be more specific, though I doubt the extra detail I provide here will make much difference. First off, I have not installed a CMS or Blog. I added a few folders to the server and for one of those folders I wrote a a custom .htaccess file. Both folders are in the root directory. I also wrote an index.php file which references a number of php code libraries in one of the folders I created. Initially I placed it (index.php) in the root directory but realizing my error moved it to the public_html folder(changing the references to the code libraries accordingly). The permissions on the index.php file are set to octal 755. Folder creation and file uploads were done through FTP using Eclipse's Remote System Explorer plug-in...then I used cPanelX to set the desired permissions on folders and files. When I just got the account the default index.html rendered successfully in my browser (Firefox). After my modifications though all I get is the 403 Forbidden Error. There were other tweaks I tried out of frustration but to be honest I can't recall most of them. That's why I am requesting a full reboot.
Comment/Reply (w/o sign-up)
sonesay
Aug 3 2008, 08:47 PM
heres my default .htaccess file its in the www/_private/ folder CODE # -FrontPage-
Options None
<Limit GET POST> order deny,allow deny from all allow from all require group authors administrators </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthType Basic AuthName sonesay.trap17.com AuthUserFile /home/sonesay/public_html/_vti_pvt/service.pwd AuthGroupFile /home/sonesay/public_html/_vti_pvt/service.grp The last few lines has reference to some files in the web root folder of _vti_pvt/* maybe those are important I don't know but it may pay to check if you still have some of these files or similar. I never touched my .htaccess so this should be mostly default unless some C panel settings I've done have altered them. The only thing I remember doing in c panel is adding add on domains though so I don't know. Good Luck.
Comment/Reply (w/o sign-up)
Erdemir
Aug 3 2008, 09:00 PM
QUOTE(sonesay @ Aug 3 2008, 11:47 PM)  heres my default .htaccess file its in the www/_private/ folder CODE # -FrontPage-
Options None
<Limit GET POST> order deny,allow deny from all allow from all require group authors administrators </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthType Basic AuthName sonesay.trap17.com AuthUserFile /home/sonesay/public_html/_vti_pvt/service.pwd AuthGroupFile /home/sonesay/public_html/_vti_pvt/service.grp The last few lines has reference to some files in the web root folder of _vti_pvt/* maybe those are important I don't know but it may pay to check if you still have some of these files or similar. I never touched my .htaccess so this should be mostly default unless some C panel settings I've done have altered them. The only thing I remember doing in c panel is adding add on domains though so I don't know. Good Luck.  If you put that .htaccess which was in www/_private/ folder to /public_html, No one could enter that site. There is no default .htaccess file. In each directory .htaccess could be different from the others. For example /puclic_html/.htaccess should allow everything. But /puclic_html/_private/.htaccess blocks everything. What default? There is no need to use .htaccess if you want everything work normal. But if you want something to be different, you can edit .htaccess. For example show errors when occurs, to do this, .htaccess should be only CODE php_value display_errors on Let's get back to dimumurray's problem. He tried to edit .htaccess and not solved. So the last option left. An administrator should change the /public_html permissions to default or reset. I think he should send a PM to an admin.
Comment/Reply (w/o sign-up)
jlhaslip
Aug 10 2008, 04:00 AM
yes, another member asked for the re-open. sorry about that.
Comment/Reply (w/o sign-up)
dimumurray
Aug 10 2008, 03:13 AM
QUOTE(jlhaslip @ Aug 9 2008, 07:45 PM)  re-opened per member request.
Apparently the issue remains to be solved. Can you delete/rename all of the .htaccess files on your account to see if it works then? Everything is working fine on my end...Is there anything I should be aware of...or is it that another member is having similar problems?
Comment/Reply (w/o sign-up)
jlhaslip
Aug 9 2008, 11:45 PM
re-opened per member request. Apparently the issue remains to be solved. Can you delete/rename all of the .htaccess files on your account to see if it works then?
Comment/Reply (w/o sign-up)
jlhaslip
Aug 6 2008, 01:16 PM
Topic is resolved.
Please PM any moderator to continue this discussion. Until then, this topic is closed.
Comment/Reply (w/o sign-up)
dimumurray
Aug 6 2008, 01:14 PM
Everything seems to be back on track, thanks in no small part to BuffaloHelp. Thanks to all who posted with advice on how to solve the problem. I think the matter is pretty much closed at this point. Admins, feel free to close this topic at any time.
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : hosting, problem, 403, forbidden, error, occurs, access, site
- Hosting Account Is Suspended
(10)
Somebody Uploaded A File Onto My Hosting Account [resolved]
(4) This has really scared me a little. I went into my cpanel to see a file that I did not install, in
my File manage. It was called "SubVersion." Pretty confused what it's all about, but I found a
link to the site http://subversion.tigris.org I don't know what it is, or how it got there.
Can anybody PLEASE help me. Also, it seemed like somebody messed with one of my folders, and
chom'd it to 755, when it was 777. This is really freaking me out a little, I think somebody
has gotten ahold of my hosting account.....
Cpanel And Ftp Down, Hosting Up?
is that normal? (7) For the past 15-20 hours I haven't been able to access CPanel or connect to my domain through
FTP but my website seems to work correctly. I was wondering why is that happening when we are
talking about the same hosting account? I figure that a non-working CPanel could be due to problems
in the CPanel framework but how about FTP access? shouldn't that be a direct access to my domain
regardless of CPanel status? Right now the http access to the site works but the ftp access
doesn't... thanks for any hint! ....
I Can't Access My Site
(7) Hello I can't access my site, a200.trap17.com, (ignore the default trap17 default page on it)
but others can? I actually can access it if I go via a proxy, but directly I cannot... I can't
successfully ping it either. I can access it at school and under any other internet connection, so
I believe it is my ISP issue (I cant access gamma.xisto.com so it might be the whole server I cant
get to). How can I resolve it? I don't know... I have tried flushing my DNS and that does not
work and I am stuck for ideas /ohmy.gif" style="vertical-align:middle" emoid=":o....
If We Have Negative Hosting Credits, Are They Pushed Over To The New Mycent System?
(7) Hello I have signed up for the MyCent new system, and I was wondering if my negative balance here is
transferred? When I signed up, I was like 23 credits in the red! I made a good post and that
dropped to 13 or so, and today, checking computing host, my negative credits have not been moved
over /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> so am
I therefore on a new, fresh slate, or has the whole thing not worked (aka my forum account not
linked to the computinghost one?). I notice my balance is 700 mycents, is that from the bi....
Another Suggestion
Domains and hosting (6) I went on the billing site, to approximate how much much my hosting would cost a year and it came
out to $39.71 USD. The thing that REALLY drove the price up on this was addon domains (I chose to
have 5 for $23.80). This was more than hlaf of the yearly cost. Are there plans to keep the prices
for the addon domains the same, or if they will be lowered? Here is my plan right now: QUOTE
Description Price Linux Regular Hosting - Logic Plan
(ineedtocheckhowmuchthisplancostsandwhattheaddonspricesare.com) » DISK SPACE: 1000MB » BANDWIDTH
(Transfer Limit per Month): 10....
What Is Vps Web Hosting?
Virtual Private Server and Hosting (6) This is probably a dumb question, but what exactly is VPS hosting? After reading up on wikipedia I
found out it's essentially a server with a bunch of split operating systems on it. The article
also said generally a VPS hosting service gives its users superlevel-access so they could run any
software on the Operating System. Is that true? If it is VPS hosting would be very useful to me and
my clan because we need a dedicated system to run a server im developing (writing it in .NET). So I
would need an updated Windows XP OS to run it on. But for some reason I'm dou....
Question About Hosting After Credit System 3.0
(6) This is something that I thought of today.. Once the credit system 3.0 is fully rolled out(Not just
like now where it's running but not completed) what will happen with our current sites? Like,
do we need to start backing up everything now for a server change or something, or will our current
hosting package be automatically rolled over? Just wanting to make sure that I am not going to lose
all of my information and all once the transformation is complete. Also, what if we end up doing
an upgrade later? Will our current site be "copied" into the new host? Or wil....
Language In Trap17 Free Web Hosting
(2) Would someone teach me the lauguage usage in Trap17 free web hosting? In the TOS(terms of services)
of trap17 free web hosting, http://www.trap17.com/forums/index.php?sho...amp;#entry40137 "All
websites must be in English to qualify for free hosting. We do this to ensure that Accounts are
legal and have permissable contents." But I found at a review site
http://www.free-webhosts.com/reviews/Trap17.php that "They are amazing. Non-English sites ARE
allowed, except you have to have an English overlook page detailing your site so they know what it
is about." Which w....
Problem Concerning Credits Reduced
Reduced when I created a hosting account (12) My free web hosting account request for the second package was approved, which means that at the
time of the request (the topic itself) or the topic, however you want to name it, i had something
over 37 credits, positive and green of course, and when the admin actually approved the request, and
we all know that exactly when we see some changes on the request topic title, for instance, the
addiction of the words: "denied", "approved", et cetera. The point is that when the admin approved
today i had about 45 or 47 credits, and i created then the hosting account that only....
Cannot Open My Site
(12) Hi everyone. Sometimes, I cannot connect with my site, neither ftp, ping, etc. This happens
everyday, and sometimes, as a miracle, doesn't happen. This also happens with a friend of mine
with the same ISP. I contacted my ISP, and they told me that there must be a prob with the server,
not the ISP itself. Do you have any ideas? Thanks in advance, Alex btw, proxy browsing sucks!
/blink.gif" style="vertical-align:middle" emoid=":blink:" border="0" alt="blink.gif" />....
My Site Is Crippled.
I can't access anything (10) Hey guys please help. I haven't been able to access my cPanel for a long time now. I think the
problem started when most members had those password problems. I think that's when I made too
many unsuccessful login attempts. Now I can't access my cPanel and any site hosted here. Someone
told me my IP is blocked but I don't know who to tell to have the problem resolved.
BuffaloHelp(sorry if it wasn't u Buff) stated in one post that he could reset password if nayone
would write a post with the line "Please reset my password". I did that but still there is....
My Site Is Down :(
(11) QUOTE http://frover.trap17.com/qyfyre.com it has been down since yesterday /sad.gif"
style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" />....
Error 28 (on Phpmyadmin)
What does this error message mean? (11) I have a shopping cart system on my website. It always worked before, but all of a sudden, when I
try to access it i get "Got error 28 from storage engine". Has that got something to do with the
recent problems again, or can someone tell me what this error message means? Thanks. After posting
this I noticed I cannot get into my PHPAdmin anymore. It gives loads of errors: QUOTE Warning:
session_write_close() : SQLite: session write query failed: database is full in
/usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42 Warning: session_write_close() :
Fai....
How Do I Delete My Hosting Account?
(4) I currently don't have the time to keep up with this forum and a website in addition to my job.
So, how would I delte my hosting account? I don't want to delete my trap17 forum account, I
like the discussions here, and I may want to try a website gain someday, but right now I don't
have the time. Is it possible to keep my forum account but have my hosting account deleted? Thanks
for any and all info!!! Byron Arnold....
Unable To Access Cpanel
(7) I'm not able to access the cPanel for my hosting account, I get the following error, CODE
The connection has timed out The server is taking too long to respond. I tried accessing the
cPanel from http://gamma.xisto.com/cpanel ....
Trap17 Offers 17 Mb Of Free Hosting
(30) Imagine that trap17 can offer 17 megs of free hosting to any member registered to this forums. I
mean, 17 megs of space shoudn't be too much fot this huge hosting company like trap17. You would
only need to geather 100 credits on forums, with ultra quality posts and you can get your 17 megs of
space for at least one year. I think it's great idea, don't you? /dry.gif"
style="vertical-align:middle" emoid=" ....
Transferring Files From One Host To Another
Take my site to trap17 (9) As I said, I had to move my web site away from Trap17 temporarily because I had ran out of disk
space. Now, when my upgrade is finalised, I would like to ask for a little assistance. The provider
I will be moving my site from, back to Trap17 also uses Cpanel, and the admin let me know to do a
backup and that backup could be simply transferred via FTP to my new provider. The backup includes
all my files and MySQL data, in other words, the whole web site. It is in a .tar.gz format. How do I
get all this across? Do I 'unzip' the file and then transfer them bit by bi....
Can't Access My Email Account [resolved]
(4) I couldn't access my email account for 3 days ago .. I use the Horde .. the problem is when I
click on Login the page loads itself and don't change!!!!.......
Wordpress Installation Error [resolved]
Anything to change in the wp-config.php file? (4) I've chosen to install WordPress manually and things were going well so far...until I hit an
installation error when I tried to run the install.php file on my browser. For the record, I
logged into CPanel and went into MySQL Databases, created the databases, the username and added the
user to the database - as suggested in the installation procedure. Perhaps there's a mistake in
my wp-config.php file that might've caused the error. If there's something I should change,
please let me know. Many thanks in advance. CODE // ** MySQL settings ** // de....
Site Taking Too Long To Respond
Message from Firefox (13) "Site Taking Too Long To Respond" issue has been resolved and It is caused when the service Apache
on server is not responding to your queries due to reboot / maintenance. To solve this, Contact Web
Hosting Support @ http://www.xistosupport.com/billing/ At ComputingHost, this issue should not
persist more than 2-5 min. 1. ComputingHost (web host sponsoring this site) uses Advanced ROUND
ROBIN DNS (managed DNS solution) 2. Network is Powered by XO Communications and they employ Branded
Server Hardware for tension free uptime! Package Details ComputingHost: Logic XTREM....
The Matter Of Hosting Credits
Got a question? Find the answers! (53) Many members ask about the matter of hosting credits. Trap17 staff have explained hosting credits
clearly on the site, but if you're not paying attention, have any questions, or need more, here
are some points that will answer your questions. Due to a few user comments, I have had to add a
few more points, and edited some previous points to be a bit more clearer. This is in addition to
the additions mods have made to the posts, which I greatly thank you for. 1. READ THE FORUMS BEFORE
YOU POST A CREDIT QUESTION!!! How many times have the Admins of Trap17 explained h....
Error Using "move_uploaded_file()"
Permission denied to perform this action (5) I, on my website, have employed a page to upload files on my website. But I'm having problems
using it. When the file is uploaded to the 'temp' directory of my account, and when I use
the function 'move_uploaded_file()' to move this file into the actual directory, it returns
the error move_uploaded_file(ABD.jpg): failed to open stream: Permission denied
move_uploaded_file(): Unable to move '/tmp/phpF5SqzC' to 'ABD.jpg' please help me
what should now I do with this.. I also tried changing the mode of the 'temp' directory to
7....
403 Forbidden Error When Accessing My Site
(12) umm this is a problem that i have been looking in other topics to try to fix but i can't seem to
find a answer to what i lookin for. I got my site workin again the other day ok and so i went on to
see it (so i can make more changes) and when i got there i got this QUOTE Forbidden You
don't have permission to access / on this server. Additionally, a 403 Forbidden error was
encountered while trying to use an ErrorDocument to handle the request. Apache/1.3.33 Server at
www.clansga.trap17.com Port 80 now i looked at everything and i can't seem to find t....
Have You Read The Rules?
TOS, privacy policy, hosting rules... (29) Dear hosted members, We have noticed that many members are knowingly or unknowingly breaking some
basic rules of posting and hosting at T17. This has resulted in a lot of spam posts which in turn
lead to more unnecessary work for moderators and admins, 'defacement' of the foums and
sometimes even banning of the concerned member. The rules are there and you are also there. But
have you read them? Usually, if you have read the rules and understood them, it is not expected
that you break them voluntarily. This however can be expected of some unscrupulous eleme....
Mysql Database Setup : Setting Up Mysql Database
Guide to use MySQL database in your site (7) A SMALL INTRODUCTION TO DATABASE ============================= I have seen that many members have
problems with Database. Here is a small INFO which should give you the IDEA. mySQL is a DATABASE
server. You can access it using the link in Cpanel. Cpanel can be accessed by
"www.YOUR-SITE.com/Cpanel" There you have 4 Main Options :- 1> CREATE A DATABASE 2> CREATE A USER
3> ADD USER TO DATABASE 4> PHPMYADMIN CREATE : IT ALLOWS YOU TO CREATE A DATABASE CREATE USER
: IT ALLOWS YOU TO CREATE A USER. USING THIS, YOU CAN ACCESS THE DATABASE. A DATABASE CANNOT BE....
School Blocks Out My Site.
(19) deleted....
You Trap17 Hosting Email
(25) What do you use in order to check you trap17 email Please take the poll....
Problems with PHPBB & my Access to files :S
(4) Ok another problem i'm having.. prolly my fault but ok.. i go to uploud my avatar on my forums
and it says this after i click submit Warning: copy(./images/avatars/486273215410e356f445f1.jpg):
failed to open stream: Permission denied in /home/zipmc/public_html/Forum/includes/usercp_avatar.php
on line 227 Warning: Cannot modify header information - headers already sent by (output started at
/home/zipmc/public_html/Forum/includes/usercp_avatar.php:227) in
/home/zipmc/public_html/Forum/includes/page_header.php on line 474 Warning: Cannot modify header
information - h....
Warning About Ajuluke
Web Hosting (11) Ajulukefrancis ripped me off two gmail invites for hosting and he sent me to this site. He claimed
that he personally had hosting accounts to offer.....
Looking for hosting, problem, 403, forbidden, error, occurs, access, site
|
Searching Video's for hosting, problem, 403, forbidden, error, occurs, access, site
See Also,
|
advertisement
|
|