Please Check This..

Status
Not open for further replies.

feirox83

New Member
Messages
11
Reaction score
0
Points
0
my site www.feirox.com is having problem of \"500 internal server error\" for nearly 1 week..i was waiting for this to be corrected automatically, but it still not solved..Please help..
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
a. Files should have permissions set to 0644 and directories set to 0755

b. .htaccess use of mod_rewrite should use RewriteBase /
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
in my site i have thousands of files and directories..
should i change permission of all files to 0644 and directories to 0755 ?

also will you please describe what i have to change or write in .htaccess ?

ands thanks for your help.. you deserves reputation from me..
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

Please post the contents of the htaccess file and we will go from there. There may be no need to change permissions.

Thanks.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
now again look in feirox.com.. it's now showing different thins like dns flush etc.

ok the .htaccess file content is.




#####################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Directory (just / for root)

# RewriteBase /


########## Begin SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End core SEF Section
 
Last edited:

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
RewriteBase / is commented out. Place it without the '#' above everything there.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
Hello,
now the site is opening again without Channing the .htaccess file..
i only changed some permission..

i want to know something..
did x10hosting supports FFMPEG & FLV Tool 2 ? See Here

if yes then what its's path?

Thank you..
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
No. x10hosting doesn't support ffmpeg nor flv tool.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
Then i think it will be great to install them in your system..because right now maximum of advanced websites using this services...


and i have another question..
x10 now uses 4 servers stoli, boru, starka & chopkin..
im asking right now which server is the most fastest?
i mean in which server minimum number of websites are hosted..
please rank them as 1st , 2nd , 3rd, 4th..

Thank you all for your great support..

---------- Post added at 10:29 AM ---------- Previous post was at 10:22 AM ----------

& one thing..

u told me to place RewriteBase / on the top without comment..

but top means at the extreme top or top of the RewriteEngine On

please can you write the .htaccess file again?
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

The "maximum advanced websites" are using premium, not free.
All of the servers are equal as far as you're concerned. They all run at the same speed.

Code:
################################################## ###
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
################################################## ###

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On
RewriteBase /

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Directory (just / for root)



########## Begin SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End core SEF Section
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
Hello,

Thanks..

if i upgrade to premium..then will i get the ffmpeg and flv tool 2?

but i saw, in boru page loading is faster than stoli..

ok plase just give me a suggestion..

which will be the best to upload the website?

boru, stoli or starka?
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

Using those tools would be more open to consideration on premium. I don't know the ins and outs as I only deal with free hosting support. I'm sure someone could tell you.
The servers are subject to visitor numbers. E.g- one may have a lot of visitors at one time and may slow down a bit, while another doesn't have many. The point is that they all average out at around the same speed, as they all run on the same setup. Accounts are allocated on a basis that ensures each server has roughly the same amount of accounts. We also don't move free accounts around servers, so there's not really much you can do about it anyway.

Thanks.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
Hello,
i am now just going too launch my site..
if i start earning revenue from it, i will sure buy a premium plan as soon as possible..promise..

ok please just give me one suggestion personally..
in which i will upload the site? boru or starka..? please choose one for me..it's a request..

---------- Post added at 03:19 PM ---------- Previous post was at 02:51 PM ----------

Hello again..

i have some little question..

1. i added a add on domain in my Cpanel suppose www.xyz.com
so for this in my ftp a folder crated named www.xyz.com

also if i add only xyz.com (without www.) in my cpanel then the folder in ftp will be create as name xyz.com

my question is, is this two process are different?
i mean will i get error if i add the domain www.xyz.com as a add on domain in cpanel?

2. i think u saw for some websites , suppose u type in your browser xyz.com and it will redirect u to www.xyz.com , they add the www. automatically before domain name..
how it possible?
writing some codes in .htaccess file?
if you know please tellme how to..

Very very thanks..
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
Hello,
i am now just going too launch my site..
if i start earning revenue from it, i will sure buy a premium plan as soon as possible..promise..

ok please just give me one suggestion personally..
in which i will upload the site? boru or starka..? please choose one for me..it's a request...

Neither. Your account is on the server stoli, so you'll upload on that server.

As for your other two questions, you can find the answer by searching online. There are tons of tutorials out there that teach you how to use .htaccess. Your addon domain is working, and I'm able to view your site there just fine.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
im not asking for this account..
im going to upload another site so im asking which server it will be best for uploading..boru or starka..

i know my addon domain is working, only im asking is adding www. before the domain name will be good?

ok please just tell that my 2nd question answer depends on ,htaccess file?

Thanks..
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
im not asking for this account..
im going to upload another site so im asking which server it will be best for uploading..boru or starka..

Again, neither. You only have one account attached to your current forum account, and you're only supposed to have one account seeing that you have this one already. Your current server is stoli.

From the TOS that you agreed to when you signed up:
1. Server Usage

Personal accounts are to be used by the primary owner only. Personal account holders are not permitted to resell, store or give away web-hosting services of their website to other parties. Web hosting services are defined as allowing a separate, third party to host content on the owner's web site. Exceptions to this include ad banners, classified ads, and personal ads. x10Hosting reserves the right to refuse service and/or access to its servers to anyone. Each individual is allowed ONE account only. x10Hosting does not allow any of the following content to be stored on its servers.

If you want to upload a different website, then you can place one more addon domain in your current account to do this. Just like how you uploaded your current site to the subdomain folder that was created for your current addon domain, you can do the same with your other addon domain should you put another addon domain in there.

i know my addon domain is working, only im asking is adding www. before the domain name will be good?

ok please just tell that my 2nd question answer depends on ,htaccess file?

Thanks..

Both the www and without the www are working. If you want only one or the other, then I believe that you can do that through the .htaccess. Just research it online. There should be a tutorial or few that would tell you the possibility of it and how to do it.
 

feirox83

New Member
Messages
11
Reaction score
0
Points
0
oh..im very sorry..i dont want to violate your T&C..sorry..
thanks to notify me before i did the mistake....

but i think now adding 2 addon domain is possible..before there is only one..

but friend i already researched lot, but cant find it..

will u little help me in this matter?
 

stpvoice

Community Support Rep
Community Support
Messages
5,987
Reaction score
212
Points
63
Hello,

I'm really not sure what you're asking. Could you clarify?

Thanks.
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
stpvoice: feirox83 is wondering which url would be best for his domain: with or without the www. I think my previous answers were confusing the matter.

feirox83: The url doesn't matter with or without the www. Your url currently works with both. Someone can type in your url with the www, and it'll go to the exact same place in your site as without typing in the www. Is there a specific reason that you don't want one or the other to not work? Attempting to block out either (if it's even possible to do that) will just complicate things when it usually doesn't matter. Having both work is actually easier for everyone who visits your site.
 
Last edited:

feirox83

New Member
Messages
11
Reaction score
0
Points
0
Hello,

i just only want that when someone type feirox.com in his/her browser then he/she will redirected to www.feirox.com..
i just want it exactly..
so im wandering if i add the domain feirox.com as www.feirox.com in addon domains at cpanel then may it can fix the issue..
but it's not fixed..

so stpvoice or calistoy im just asking do u know how to do this?
via the .htaccess or adding some php codes.?
now please don't tellme to research in net, because i already did and cant find anything...

Please help....

Thanks....

---------- Post added at 04:31 AM ---------- Previous post was at 04:28 AM ----------

stpvoice: feirox83 is wondering which url would be best for his domain: with or without the www. I think my previous answers were confusing the matter.

And calistoy i am a girl....

This domain www.feirox.com is owned by one friend, but i am a girl who is talkin here..

Thanks..
 
Status
Not open for further replies.
Top