.htaccess Status |
||
Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.
In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.
Zymic Webmaster Forums Zymic Free Web Hosting Zymic Free Web Hosting - General Discussion & Help |
||
7 Pages
« < 3 4 5 6 7 >
|
![]() |
.htaccess Status |
||
Feb 10 2009, 04:48 PM
Post
#81
|
|
|
Newbie ![]() Group: Members Posts: 12 Joined: 4-February 09 Member No.: 80,580 |
|
|
|
Feb 11 2009, 10:21 AM
Post
#82
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 11-February 09 Member No.: 81,762 |
And what will be with .htaccess?
|
|
|
Feb 18 2009, 03:35 PM
Post
#83
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 29-January 09 Member No.: 79,763 |
is .htaccess not enabled on uuuq then? anyway, im using uuuq and when i upload my .htaccess file, it says, upload successful, but when i look for the file within the server, its not there, is this normal? if u check previous posts you'll find your answer.. (tip: files starting with a dot(.) are hidden files) and seems that .htaccess it is not working in uuuq servers |
|
|
Mar 5 2009, 10:29 AM
Post
#84
|
|
|
Newbie ![]() Group: Members Posts: 13 Joined: 2-February 09 From: India Member No.: 80,224 |
Hi there, I have a site at uuuq.com and i have uploaded .htaccess file for my own custom 404 error pages in the root itself. but its not working. Is this because of any mistake in my code(given below)
ErrorDocument 404 http://www.nigil.uuuq.com/404.html Site address: http://www.nigil.uuuq.com Is .htaccess is enabled in uuuq. If this is not allowed in uuuq please let me know i will remove it. Any help will be apreciated, Thanks in advance, Nigil. |
|
|
Mar 10 2009, 06:57 PM
Post
#85
|
|
|
Newbie ![]() Group: Members Posts: 4 Joined: 9-March 09 Member No.: 86,277 |
Does Zymic / uuuq let you have a 404 page?
And, Is the re-write engine [ON] or [OFF]? |
|
|
Mar 27 2009, 06:14 PM
Post
#86
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 11-December 08 Member No.: 72,661 |
hello, I just recently launch my site here.. the url is http://smalltym.uuuq.com the PROBLEM is when I try entering www.smalltym.uuuq.com the page was not found.. any help here... Try going to the site without the www. (http://smalltym.uuuq.com). Unless the @ entry in the DNS is set up with www as an alias, the www subdomain will not work. If you assign a domain name to your account, then you can set it up to work with or without the www. |
|
|
May 21 2009, 09:26 AM
Post
#87
|
|
![]() Newbie ![]() Group: Members Posts: 18 Joined: 21-May 09 From: Donetsk, Ukraine Member No.: 95,965 |
|
|
|
May 22 2009, 03:35 AM
Post
#88
|
|
|
Newbie ![]() Group: Members Posts: 4 Joined: 21-May 09 Member No.: 96,057 |
This is the first time I've used an .htaccess/.htpasswd file.
I have mostly used IIS so I just set the permissions in windows. Anyway I made a folder in the root of my site called secure and one underneath it pass (/secure/pass) I went online and generated an .htaccess and .htpasswd file. I uploaded them to the server Here are the contents: .htaccess - in secure folder CODE AuthUserFile /secure/pass/.htpasswd AuthGroupFile /dev/null AuthName Secure-Login AuthType Basic <Limit GET POST> require valid-user </Limit> .htpasswd - in pass folder CODE test:test Now I'm prompted for a username/password but it won't accept it. Does anyone have any ideas? Thanks, Kenny |
|
|
Jul 28 2009, 01:15 AM
Post
#89
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 28-July 09 Member No.: 104,478 |
Guys,
password protection for directories works on this hosting just as expected. There are exactly 2 reasons for 500 error when you're trying to use it: 1) bad .htaccess file 2) bad .htpasswd file that's ALL. .htaccess file that WORKS: CODE AuthType Basic AuthName "Whatever" AuthUserFile "/www/vndv.com/x/y/z/xyzsite/htdocs/protected_dir/.htpasswd" You should update the last line to show YOUR path to htdocs and protected dir whitin it. Now, the .htpasswd (must be EXACTLY where you instruct the server to look for it in .htaccess file): CODE username:hwX8zhSYASRw6 The tricky part is the garbage looking string. It's the ENCRYPTED password as it is returned by UNIX crypt() function. Plaintext passwords WON'T WORK. There are number of ways you can get your password encrypted. I usually log into my local linux server and use htpasswd utility that comes with apache. I believe there are online password encrypting tools that use the same algorythm that htpasswd does (in fact, it can handle several encryptions; this is the default). When you have these two files properly done and at their place, it just works, that's all.
Reason for edit: Code tags - Dave
|
|
|
Aug 1 2009, 07:26 PM
Post
#90
|
|
|
Newbie ![]() Group: Members Posts: 11 Joined: 1-August 09 Member No.: 105,026 |
Is DefaultType enabled in .htaccess?
http://us2.php.net/manual/en/security.hiding.php shows some examples of this. |
|
|
Aug 15 2009, 06:32 PM
Post
#91
|
|
|
Newbie ![]() Group: Members Posts: 17 Joined: 31-March 09 Member No.: 89,671 |
Help is .htaccess
http://wmpda.uuuq.com/shell/25-pointui-versii-151a-20.html .htaccess no work! Error 404 |
|
|
Aug 21 2009, 10:16 PM
Post
#92
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 21-August 09 Member No.: 107,315 |
If you are receiving the following error 500: Recently limited functionality has been allowed within .htaccess, this allows any directives for limiting the availability, so for a quick example: CODE Order Deny,Allow Deny from all This can protect a directory. There is however a caveat that comes along with only allowing this. Any directives which do not fall under the scope of 'Limit' will cause the server to choke and spit out the above 500 error. To fix it, either comment out all other directives in your .htaccess, or move/delete the offending .htaccess. Commenting in .htaccess is a line prefixed with '#'. It is not at this time possible to use block statements around the limits. CODE <Directory /foo> # this would not work </DIrectory> We are working on a solution. hello, thank's for your service free webhosting, but please can you enable mode-rewrite for .htaccess we need it really. why all free hosting don't enable this mode? it's so necessaire for indexation. thank's. |
|
|
Aug 21 2009, 10:46 PM
Post
#93
|
|
![]() Outrageously Uber Ninja ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrators Posts: 2,831 Joined: 11-March 07 From: UK Member No.: 9 |
benn, mod_rewrite is enabled, try setting a RewriteBase:
CODE RewriteBase /
|
|
|
Aug 26 2009, 12:37 PM
Post
#94
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 25-August 09 Member No.: 107,761 |
Salut!
Could anyone please help me? The "http://www.vndv.com/htaccess-fix/" don't work for me. I am not advanced in any programming, and unfortunately i don't know what means to manage ModRewrite / or some of these codes. Could you explain me please what should i do to clean index.php? from my urls or if the htaccess - fix dont work. Thank you for your support. mailitis.vndv.com austrismailitis |
|
|
Aug 29 2009, 12:45 AM
Post
#95
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 29-August 09 Member No.: 108,133 |
I need the rewrite function. Is this working??
|
|
|
Oct 11 2009, 07:02 AM
Post
#96
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 11-October 09 Member No.: 113,476 |
took a look at the previous posts and I don't see the prblem with my .htaccess please let me know what I need to get mod_rewite to work
thanks in advance. |
|
|
Nov 7 2009, 04:34 PM
Post
#97
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 7-November 09 Member No.: 117,400 |
Why can not we use this rewrite mod !.. or How can we use ? do you know ?
Because I constantly receive a 500 error :X ...Somehow I could not do |
|
|
Nov 10 2009, 03:53 AM
Post
#98
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 10-November 09 Member No.: 117,767 |
I have launch my site recently http://mass-specc.zymichost.com/ and I always get a 500 Internal Service Error.
Can someone help me fix this error? I think this has something to do with .htaccess file that I uploaded. Here is my .htaccess code: RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] Any help would be very much appreciated. |
|
|
Nov 10 2009, 05:29 AM
Post
#99
|
|
![]() Outrageously Uber Ninja ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrators Posts: 2,831 Joined: 11-March 07 From: UK Member No.: 9 |
I have launch my site recently http://mass-specc.zymichost.com/ and I always get a 500 Internal Service Error. Can someone help me fix this error? I think this has something to do with .htaccess file that I uploaded. Here is my .htaccess code: RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] Any help would be very much appreciated. Try setting a RewriteBase: CODE RewriteBase / |
|
|
Nov 10 2009, 03:53 PM
Post
#100
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 10-November 09 Member No.: 117,767 |
|
|
|
![]() |
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users) |
||
| 0 Members: | ||
Forum Jump |
||
| Lo-Fi Version | Time is now: 24th May 2013 - 08:04 PM |