Jump to content

AKSoapy29

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by AKSoapy29

  1. When you say multimedia, do you mean like video?
  2. Right from BeastNode its self. Would this be a good package that would fit my needs? And who do you use for hosting?
  3. How is Storage BS? I think 2GB is reasonable, considering my website on my flash drive (Same one that is http://aksoapy29.comoj.com) is ~2.5MB. I actually plan to make it smaller through the use of PHP Include and such, for the headers and styling and stuff. But, my website will grow tiny bits at a time with all of the pages and edits I will add later. Really, how much storage do you need for a website like mine? Link is http://aksoapy29.comoj.com if you want to see it.
  4. I figured out how much it would cost me if I were to buy hosting. Domain would be $10.69 a year from NameCheap.Hosting would be $2.95 a month from BeastNode.Overall, it would be $46.09 a year, or about $3.84 a month. I can work with that. What I get: 2GB Storage12GB Bandwidth a MonthFree SetupUnlimited FeaturescPanel That's the same for all of their hosting packages, the only difference is the memory and the bandwidth. I would say this is pretty good, would anyone agree/disagree? EDIT: Haha I think I mow the lawn more than 10 times in a year, so consider it paid off?
  5. Right now I am using a free hosting company called 000webhost, and all I have is a subdomain. I just figured out that BeastNode doesn't offer domains. I don't have a budget really. With all the talking, buying from a hosting company doesn't seem like a bad idea. If I do go with a domain regestar, do you guys recommend anyone? GoDaddy? NameCheap? Anyone else? Also, I know nothing of Linux or hosting really. I am young, really young, but not the youngest.
  6. I was thinking about having my own server so that everything would work and it would be easier to edit and change all the files. As for the download/upload speed, I think you are right. I can download a file faster than I can upload a video file of the same size. For bandwidth, do you think 12GB monthly is good? I still don't even know what bandwidth is. I was thinking about going with BeastNode if I do buy a hosting package. I was also thinking about just getting the 2GB storage space, because really, my website is way less than that. I have multiple copies of my website and other crap on a 2GB flash drive that isn't full. It would also save me money, and if I needed to upgrade later, I could. As for a domain, does a hosting company provide that, or do I still have to go and buy that somewhere else? Thanks for all your replies. I just tested it, and I get 9.57Mbps download, and .95Mbps upload... Lame.
  7. Thank you for your reply. I have a 10Meg internet connection. As for buying from someone to host my website, what is bandwidth?
  8. Hello, I am thinking of starting a webserver, and I was wondering what type of tower I would need, what OS, what specs, what software, and all that stuff. I was thinking of going Linux also. I also have a question; I have a form on my website that is set up to email me an email. It goes to a @gmail.com address, so would I need to install a mailserver also? And how would I get a .com domain? Can that be configured on the tower as well? Or do I need to buy a domain? Sorry if this is a lot of questions, I just would like to know this stuff before I start or buy anything. Here is my website if that helps: http://aksoapy29.comoj.com
  9. Thank you It works great, so now I have to add it to my website, and style it with html and css.
  10. Hello, this is the first post I am making on this forum, so print("hello world!"); I am working on a mail system for my free hosting account over at 000webhost, and I need the email to be split into sections, where I have each line of data, ex. Name, Email, Subject, all on a separate line. Here is my code, and I will blank out the email I will be using for the form. I tried using \n to make a new line, but that didn't work. So if anyone can help, that would be great. <html><body><?php/* This code here will mail off an email from the webform to ... *//* These are the fields of the form. The ones with * need to be filled out.nameemail *subject *message *check **/$name=$_POST["name"];$email=$_POST["email"];$subject=$_POST["subject"];$message=$_POST["message"];$check=$_POST["check"];$sendemailto="..."; // Who to send the email toprint $name;print $email;print $subject;print $message;print $check;if ($email=="" or $subject=="" or $message=="" or $check==""){ // If any of these fields are equal to nothing, thenprint "You have missed some fields. Go back and fill out all of the fields that have a * next to them.";}elseif ($email!="" and $subject!="" and $message!="" and $check==...){$message = "Name: " . $name "\n Email: " . $email "\n Subject: " . $subject "\n Message: " . $message ;$headers = "From:" . $email;mail($sendemailto,$subject,$message,$headers);print "Email sent!";}?></body></html>
×
×
  • Create New...