Jump to content

jje

Members
  • Posts

    2,755
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by jje

  1. Not sure about that. Let's see... This support request is being escalated to our root admin.
  2. You should have got suspended before and I am surprised that you didn't. You are suspended after 30 days of inactivity, and then your account is deleted after an additional 7 days. You should have had an email notification. That link should work fine. There is now an account in the database for Johnny with the same IP address as yours. Look: Username: rafhanwe Domain: www.rafhan*****.co.cc Server: Johnny
  3. Sorry, I can't think of any other explanation. Site backups should be taken by the user of the account and are not taken by HelioHost. This is clearly stated in the TOS. Do you login through the HelioHost homepage?
  4. The username 'aamsur2' cannot be found in the database. It may have been deleted for inactivity; you need to login to cPanel every 30 days to keep your account alive. Since your account has been deleted, your domain is now showing the Queued page since it cannot find an account named 'aamsur2'. Feel free to create a new account.
  5. jje

    aspx webpage

    Your welcome! Please spare 2 minutes to fill in our quick survey: http://feedback.heliohost.org Your participation in this survey is greatly appreciated.
  6. jje

    aspx webpage

    Your domain is on the 'Stevie' server when you need to be on the 'Johnny' server. Read the wiki: http://wiki.heliohost.org/wiki/Moving_your_account
  7. The below script will receive input from a form, check if the username is USER and password is PASS and then register the session. I just quickly typed this into the reply box so I might have made a few typos, let me know if you get any errors. Create a file named 'login.php' and paste in this code. Change the $username and $password variables. <?php // Assign the correct username and passwords to variables // CHANGE THESE TO THE CORRECT USER AND PASS. $username = 'USER'; $password = 'PASS'; // Check if the form hasn't been submitted if (!isset($_POST['submit'])) { // Display the form echo "<form method=post action=login.php>"; echo "<p>Please authorize to view site.</p>"; echo "Username: <input type=text name=username><br>"; echo "Password: <input type=password name=password><br>"; echo "<input type=submit name=submit>"; echo "</form>"; // Check if the form has been submitted }else{ // See if the username and passwords match if ($_POST['username'] == $username && $_POST['password'] == $password) { // If yes, start the session session_start(); // Then create the session $_SESSION['username'] = $_POST['username']; // Redirect to the site homepage header("location:index.php"); // If not }else{ // Die and show the error message die('Login details mismatched'); // End of statement } // End of statement } ?> Then, at the top of every page you wish to protect, enter: <?php session_start(); if ($_SESSION['username'] == NULL) { header("location:login.php"); } ?> The above code activates the session and checks if a username has been registered. If it hasn't been registered, it redirects to login.php You can also make a nifty logout screen. Create a new file and enter <?php session_start(); session_destroy(); echo "Logout Success!"; ?> Hope this helps!
  8. Your welcome! Please spare 2 minutes to fill in our quick survey: http://feedback.heliohost.org Your participation in this survey is greatly appreciated
  9. Your site should be up in 24 hours. If you still don't see your site after that time, please clear your cache. Glad your problem got solved! Please spare 2 minutes to fill in our quick survey: http://feedback.heliohost.org Your participation in this survey is greatly appreciated.
  10. jje

    MS Sql Database

    Yeah, MySQL is basically the same anyways.
  11. Create a file named '.htaccess' in the folder you wish to protect and paste the following code: AuthUserFile /home1/hacker/protected/.htpasswd AuthGroupFile /dev/null AuthName "A Restricted Area" AuthType Basic <Limit GET POST> require valid-user </Limit> Create another file named '.htpasswd' in the folder you wish to protect and use this website to generate the contents: http://www.htaccesstools.com/htpasswd-generator/ Don't use the cPanel Password Protect otherwise your work may be overwritten! Source.
  12. jje

    MS Sql Database

    MySQL is a useful alternative to the SQL engine. Since we are running a Linux system instead of Windows, it would be impossible for us to set up a MSSQL engine (i think). MySQL is very similar to MSSQL, except you use different code and manage it differently. More information in the wiki article: http://wiki.heliohost.org/wiki/MySQL_Databases
  13. Sorry, I wasn't sure how to word it. I noticed that for your background you used a cut out of mine and tried to join up the edges manually. I can give you an original if you like. Here you go: http://www.heliohost.org/home/templates/rt...header-logo.png Once again thanks for supporting us!
  14. jje

    Johnny signups backlogged

    350 accounts in the queue for Johnny currently; we should soon be back on track.
  15. I thought that was a grin, not a laugh. Yeah, Notepad is very bad for editing code. Just use metapad; much better.
  16. I quickly made this banner in Fireworks, hope it might be suitable. Although I wouldn't class this banner as an 'official' banner.
  17. Your welcome! Please spare 2 minutes to fill in our quick survey: http://feedback.heliohost.org/index.php?sid=78245 Your participation in this survey is greatly appreciated
  18. jje

    The Survey is Complete

    We will continue to ask users to complete our survey, but this time we will start to use our new link: http://feedback.heliohost.org/index.php?sid=78245
  19. Yes, I'll avoid using .co.cc from now on and use .cz.cc or .tk from now on.
  20. Don't edit your files in Notepad, it adds extras to it that can confuse the server. Use metapad instead.
  21. On record you have been waiting 14 days for your account be deleted. Therefore, I am manually deleting your account. UPDATE: Starting process, one moment please. UPDATE: ACP seems to be lagging, still working after a 60 second wait. Hang on... UPDATE: Okay, it's done! If you are signing up with the same Domain, please wait 24 hours. If not, go ahead and sign up for a new account.
  22. You don't have to; you could just create new addon domains. Although I agree, more space would be good in this kind of situation.
×
×
  • Create New...