Data and transaction security


Is H-Sphere also provide the data and transaction security ?

H-Sphere ensures data and transaction security at all levels, including:
– Site performance under site owner (both Unix and Windows);
– SSL / shared SSL certificate support for individual domains;
– SSL encryption for the entire control panel.

Can H-Sphere be installed on one computer?


Can H-Sphere be installed on one computer?

Yes. In the future you may come to the point when you will want to add more computers, and H-Sphere will allow you to expand your system painlessly.

access web controls from a code-behind page?


How can I access web controls from a code-behind page?

In the general declaration for your code behind class, create a control variable with the same name as the id of the control in your .aspx file:

Public Class CodeBehind : Inherits Page

Public ItemsGrid As DataGrid

Protected Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs)
If Not IsPostback Then
ItemsGrid.DataSource = GetMyDataSource()
ItemsGrid.DataBind()
End If
End Sub

End Class

minimum computer configuration


What’s the minimum computer configuration that you can install H-Sphere to?

You can begin with Pentium II, 200MHz, 512RAM.

there any special partitioning requirements?

create at least two partitions, because H-Sphere web box requires userquota feature enabled, and it is recommended to keep user disk quota feature on a partition other than the root.

I have a big partition I want to use for H-Sphere among other things. What do I do?

You should create the H-Sphere directory in the place you want to store H-Sphere files, and create a symlink to it in the root. For example:

mkdir -p /home/hsphere

ln -s /home/H-Sphere /hsphere

Prevent backing into a site


How do you prevent a user who doesnt log off a site from backing into a site if they leave it. Say for example a person logs into http://www.cpwebhosting.net but they dont log off, they instead type other domain name into the browser. Once they are on other domain name they decide to hit the back button to get back to cpwebhosting.net, the actually logged in account. How do i prevent them from doing so, and if they try to back into the site it tells them to log on again? Is this possible? I need help, new to ASP.

Try this one

Code:

<%
Dim objConn
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.open dsn

If Session("blnValidUser") = True and Session("Admin_ID") = "" Then
Dim rsPersonIDCheck
Set rsPersonIDCheck = Server.CreateObject("ADODB.Recordset")
Dim strSQL
strSQL = "SELECT * FROM Settings WHERE Admin_ID = '" & Session("Admin_ID") & "';"
rsPersonIDCheck.Open strSQL, objConn
If rsPersonIDCheck.EOF Then
Session("blnValidUser") = False
Else
Session("Admin_ID") = rsPersonIDCheck("Admin_ID")
End If
rsPersonIDCheck.Close
Set rsPersonIDCheck = Nothing
End If

Dim strID, strPassword
strID = Request("Admin_ID")
strPassword = Request("Password")

Dim rsUsers
set rsUsers = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT * FROM Settings WHERE Admin_ID = '" & strID & "';"
rsUsers.Open strSQL, objConn

If rsUsers.EOF Then
Session("Admin_ID") = Request("Admin_ID")
Response.Redirect "default.asp?SecondTry=True"
Else
While Not rsUsers.EOF
If UCase(rsUsers("Admin_Pass")) = UCase(strPassword) Then
Session("Admin_ID") = rsUsers("Admin_ID")
Session("isLoggedIn") = True
Session("blnValidUser") = True
Response.Redirect "main.asp"
Else
rsUsers.MoveNext
End If
Wend
Session("Admin_ID") = Request("Admin_ID")
Response.Redirect "default.asp?SecondTry=True&WrongPW=True"
End If
%>
you'll need to tell us how you keep the session for logged in users, is it just a session or a cookie???


 No, it is not a cookie, just a session

chack the referer, if its not your site then Session("Admin_ID") = ""

put the site in a frameset and then have an onUnload procedure on the frameset to destroy the session.

Put this code
Code:

strURLIn = Request.ServerVariables("HTTP_REFERER")
if strURLIn <> "" AND left(strURLIn, 23)<>"http://www.cpwebhosting.net" AND left(strURLIn, 19)<>"http:/cpwebhosting.net" then
Session("Admin_ID") = ""

H-Sphere hardware requirements?


What are H-Sphere hardware requirements?

H-Sphere can be installed on any number of computers. A minimum configuration can be installed on one box, but more is recommended.

Hardware

If you are going to install H-Sphere to only one computer, make sure it is at least Pentium II, 200MHz, 512RAM, 1GB HDD free. This will allow to host only a small number of customers. Adding SiteStudio will require at least 500MHz CPU and 512 RAM.

Other Requirements

  • Full control of DNS, mail, web and other hosting servers is a must while installation and testing.
  • H-Sphere can be installed only on public IPs.
  • You will also need a Full Access account at OpenSRS to provide domain registration services.

To accept credit cards in real-time, you will need an account and gateway access through one of the supported merchant gateways.

Can H-Sphere control NT box?

Win2000 is supported. NT4.0 and older versions are not supported.

Can H-Sphere control panel be installed on Win2000?

No, Win2000 can be used only for web servers

Do I need Win2000 box to run H-Sphere?

H-Sphere on one compute to another


If we install H-Sphere on one computer, can we later move all services to separate servers?
Yes, but it will require some downtime. Yet if you plan to grow rapidly (more than 3 servers in the next 3 months), it makes sense to start with 3.

How scalable is H-Sphere?


HI,
Any one has worked with H-Sphere. How scalable is H-Sphere?
H-Sphere can be scaled by adding more web servers, mail servers, database servers, and DNS servers, without any downtime under the same Control Panel. Hundreds of such servers can be supported.

not allow more than a specified number of submissions per IP address


I have a spammer attacking my ASP contact forms on my website. They’re just a really basic ASP form using CDO. My host suggested that I redesign the forms to not allow more than a specified number of submissions per IP address. Does anyone know how to do that?

use an image captcha into your form. google “captcha”

captcha is only effective if you’ve got spammers that are spamming your site programmatically, however. If you’ve got spammers that are going in and manually submitting your forms.

You should also check and see if the CAPTCHA has a counter to block x number of wrong submitted CAPTCHA inputs. And have a redirect to set to take them to a diffrent page when it is reached.