Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/14/2017 in all areas

  1. Hello, I thought I'd take a couple of minutes to say just how much I appreciate HelioHost and I'm really glad it's still around, as without it I would not be where I am today. Before HelioHost I was using silly things like Weebly and/or Webs, not doing proper coding just placing together a website and seeing what came out of it. Then when I was in school, someone I knew had started making a website by coding in HTML and CSS and they mentioned it was hosted on a subdomain by HelioHost, so I took a look, back then it was a nightmare to get your website up and running on HelioHost, or I was just really stupid.. probably the second one. After I managed to get it sorted out and running, I logged in and was amazed at what I saw. I loved the freedom I got with the free webhosting and subdomain, it was a whole new world. Then I was purchased a CSS/HTML book and I started taking tips from that and tips from the internet, and over time I progressed to become a better website developer, even now I'm not the best but I can make do and I get the things I want done.. my websites have improved since a few years ago too and I've even made some websites for people and been paid for it! I was using HelioHost on and off for a good year or two before I stepped away and looked into getting my own domain and some webhosting from another place as HelioHost took a little tumble and had regular issues, then I went into new projects and a few years later joined up with a friend to make a very popular music website (SmashLeaks) which unfortunately has now closed down, we used Wordpress for this and I did coding as and when I could to improve the site. More recently I made a website for my Mother's work, a website for a hobby she enjoys (which I was paid for) and I'm currently working on making a website for a Parkour and Free-running group called TeamShift. I honestly feel though, that without HelioHost I would not have made it to where I am today, I'm working at a company called PlugPayPlay which sells gameserver hosting, etc, but I would never have got into this if I had never got into webhosting as it all sprung off of each other, from web development to gaming to joining the company. I joined in October 2011 but was there for a short while before leaving, then rejoined in May 2012 and have officially been here an entire year now and I've progressed to become the Director of Sales and Marketing and have helped to take the company to new heights. I'd like to take this chance to thank HelioHost for existing as without it my life could have been completely different. If you're considering web development, then go for it, just do it, what do you have to lose? Start out like I did, a noobie to it all and learn from the professionals. Use free templates, modify them, that's another way that I learnt was modifying existing templates and learning how the code works and why. It was only recently yesterday that it came to my attention HelioHost still exist and I'm so glad that they do, HelioHost helped massively. Thank you.
    1 point
  2. I talked to him on IRC chat and his command was /home/deep958/public_html/cron.php which doesn't do anything because it needs to be something like php /home/deep958/public_html/cron.php
    1 point
  3. when i execute code on my localhost and on 000webhost then it works fine but shows error on this host . my php file's php code is this <?php // define variables and set to empty values $email = $password = ""; $errors = array(); if ($_SERVER["REQUEST_METHOD"] == "POST") { $con=mysqli_connect("localhost","deep958","<removed>"); mysqli_select_db($con,"deep958_togetherwe"); if (empty($_POST["email"])) { $errors['email'] = "Email is required"; } else { $email = test_input($_POST["email"]); // check if e-mail address is well-formed if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $errors['email'] = "Invalid email format"; } else{ $a="select * from signup where email= '$email'"; $aresult=mysqli_query($con,$a); $anum=mysqli_num_rows($aresult); $b="select * from login where email= '$email'"; $bresult=mysqli_query($con,$; $bnum=mysqli_num_rows($bresult); if($anum==1) {$errors['email'] = "This email is not verified.Click <a href='\New folder\confirmation.php'>here</a> to verify it.";} elseif($bnum==0) {$errors['email'] = "This email doesn't exist. Plz click <a href='\New folder\signup.php'>here</a> to sign up";} } } if (empty($_POST["password"])) { $errors['password'] = "Password is required"; } else { $password = $_POST["password"]; // check if password is well-formed if (!preg_match_all('$\S*(?=\S{6,})(?=\S*[a-z])(?=\S*[A-Z])(?=\S*[\d])(?=\S*[\W])\S*$', $password)){ $errors['password'] = "Invalid password"; } else{ $row=mysqli_fetch_array($bresult); $bpassword=$row['password']; if($password != $bpassword) $errors['password']= "password is incoreecrt"; } } if(count($errors)==0) { session_start(); $_SESSION['user']="$email"; header("Location: /public_html/New folder/videos.php"); exit(); } } function test_input($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } ?> and errors that it is showing is in the image
    1 point
  4. You didn't post the whole file... Here's the missing beginning of the file: <!DOCTYPE html> <html lang="en"> <head> <title>Together We</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link href="https://fonts.googleapis.com/css?family=Open+Sans:400i,600i" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="lstylesheet.css"> <style> .error {color: #FF0000;} </style> </head> <body id="myPage"> <?php You obviously have html before any of the php code you posted. You're going to get that error if you use any of the session or header commands after already posting html to the page.
    1 point
  5. That account is suspended for Phishing.<br /><br />For security reasons, phishing accounts cannot be unsuspended, backed up, or deleted. You will need to create a new account and restore any backup you may have. Please be aware that you will not be able to reuse any domains on your suspended account, and will need to pick a new username.<br /><br />We apologize for any inconvenience this may have caused.
    1 point
×
×
  • Create New...