Author |
Message |
Ulong
New Member


Joined: Dec 28, 2004
Posts: 7
|
Posted:
Wed Dec 29, 2004 5:55 am |
|
i am new to PHP-Nuke.
I just installed Nukesentinel 2.1.13
and when i finished my Admin Auth via .staccess and .htaccess
Everything looks good... but
i must enter my site with http://www.mysite.com/index.php instead of
http://www.mysite.com
(It shows this msg "Fedora Core Test Page
This page is used to test the proper operation of the Apache HTTP server after it has been installed. If you can read this page, it means that the Apache HTTP server installed at this site is working properly.")
Here is my .htaccess config
Quote: | Options All -Indexes
DirectoryIndex index.php index.htm index.html
# -------------------------------------------
# Start of NukeSentinel(tm) admin.php Auth
# -------------------------------------------
<Files >
deny from all
</Files>
<Files admin.php>
<Limit GET POST PUT>
require valid-user
</Limit>
AuthName "Restricted Area For ADMIN ONLY !!"
AuthType Basic
AuthUserFile /home/virtual/site268/fst/var/www/html/.staccess
</Files>
# -------------------------------------------
# End of NukeSentinel(tm) admin.php Auth
# ------------------------------------------- |
Help me please +_+ |
|
|
|
 |
djdiz-e
Regular


Joined: Dec 19, 2004
Posts: 51
Location: Ontario, Canada
|
Posted:
Wed Dec 29, 2004 6:23 am |
|
if you have a index.html or index.htm file in your www folder delete it and you should be up and running
and the .htaccess should look like this
Quote: | # -------------------------------------------
# Start of NukeSentinel(tm) admin.php Auth
# -------------------------------------------
<Files .staccess>
deny from all
</Files>
<Files admin.php>
<Limit GET POST PUT>
require valid-user
</Limit>
AuthName "Restricted Area For ADMIN ONLY !!"
AuthType Basic
AuthUserFile /home/virtual/site268/fst/var/www/html/.staccess
</Files>
# -------------------------------------------
# End of NukeSentinel(tm) admin.php Auth
# ------------------------------------------- |
|
|
|
|
 |
Ulong

|
Posted:
Wed Dec 29, 2004 7:44 am |
|
There is no "Index.html or .htm" in my Website 's root
any suggestion ? |
|
|
|
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Wed Dec 29, 2004 7:59 am |
|
Make sure in your conf/httpd.conf that you have added .php to your DirectoryIndex directiveCode:<IfModule mod_dir.c>
DirectoryIndex index.php index.php3 index.php4 index.phtml index.shtml index.html index.htm
</IfModule>
|
|
|
|
|
 |
Ulong

|
Posted:
Wed Dec 29, 2004 8:12 am |
|
oh.. i cannot find "conf/httpd.conf" where is it located?
sorry this is my first website  |
|
|
|
 |
Raven

|
Posted:
Wed Dec 29, 2004 8:20 am |
|
I was assuming you had access to the Apache configuration file. Also, I didn't notice that you have basically the same thing in your .htaccess. That should be working. |
|
|
|
 |
Ulong

|
Posted:
Wed Dec 29, 2004 8:21 am |
|
finally found it but it is blank(The directory)
So i have to create "httpd.conf" myself ?  |
|
|
|
 |
Raven

|
Posted:
Wed Dec 29, 2004 8:27 am |
|
No. You should have a httpd.default.conf. Copy it to httpd.conf to create one, although I don't understand how you're running Apache w/o one Are you sure you don't have another one? |
|
|
|
 |
Ulong

|
Posted:
Wed Dec 29, 2004 8:40 am |
|
Is this My web hosting problem ?
/etc/httpd <-- when i go to this directory there are 2 directories
1.conf
2.conf.d
Both are empty and i can't do anything to these directories...
or it is hidden ?  |
|
|
|
 |
Raven

|
Posted:
Wed Dec 29, 2004 8:44 am |
|
It's usually in usr/local/apache/conf. Instead of just apache, you will have apache.1.3.31 or whatever. |
|
|
|
 |
Ulong

|
Posted:
Wed Dec 29, 2004 9:27 am |
|
i still cannot find that.
Is that because My web hosting using apache 2.0 ?
+_+ |
|
|
|
 |
Raven

|
Posted:
Wed Dec 29, 2004 10:19 am |
|
No. But like I said, the .htaccess should be working. I'd check with your host. |
|
|
|
 |
Ulong

|
Posted:
Thu Dec 30, 2004 9:23 am |
|
My Host said that You cannot change httpd.conf because it's sharing server...
so there is no httpd.conf for specific domain.
What can i do next...  |
|
|
|
 |
Raven

|
Posted:
Thu Dec 30, 2004 9:55 am |
|
Then have your host do it. Also, if you have index.htm and/or index.html in the same folder as index.php, then remove the .htm and .html. That should allow index.php to be the default. |
|
|
|
 |
|