Jump to content

Vordar

Members
  • Posts

    52
  • Joined

  • Last visited

Everything posted by Vordar

  1. It hasn't really gone bananas, but it is confusing me. When I go to my domain (trevord.heliohost.org) on Google Chrome on my laptop, I get the 'account queued' page. But when I go to my site on any other browser on the same laptop- or my phone- I see my site. Why would this be happening? Should I clear my browser cache, or something like that? Thanks! Edit: apparently (on Chrome), it is only when I go specifically to trevord.heliohost.org. I went to trevord.heliohost.org/index.php and it showed up fine...
  2. The title says it all, really. I have tried using the domain change script to change my domain from w3poker.heliohost.org to trevord.heliohost.org. I tried this once, and after a few days, tried it again. It hasn't worked either time. Is there another way I could change it, or could a moderator do it? Thanks! Vordar
  3. I am not sure if this is the right place for this [edit: it probably could've gone on 'Contact HelioNet'], but when I tried to go to heliohost.org I got (and am getting) an SQL error: This is as of 8:20 AM EST.
  4. Hello. I would like to create a new site, with a new domain name. However, I already have a site I do not use- vordarnetwork.heliohost.org. I very recently queued that domain for deletion. Would it be OK for me to create a new site once "vordarnetwork" is deleted? Thanks! -Vordar
  5. Hello, I have a problem where a css reset (reset.css) I put in a folder (styles) in pubic_html won't load on my home page. I viewed the page source to see why reset.css wasn't being applied, and when I clicked the link to reset.css, I got this source: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access /styles/reset.css on this server.</p> <p>Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.</p> <hr> <address>Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/0.9.8e-fips-rhel5 mod_mono/2.6.3 mod_jk/1.2.37 mod_bwlimited/1.4 mod_wsgi/4.4.13 Python/2.4.3 Server at vordarnetwork.heliohost.org Port 80</address> </body></html> The error message makes it look like I have password-protected "reset.css" or the "styles" folder, though I looked in the cPanel's "Password Protect Directories" section and saw that neither is actually supposed to be protected. I can access a page that says "Index of /styles", but I can't actually view the css document when I click the link. What could be wrong with the folder/stylesheet? If someone could tell me how to fix the problem, that would be great! Tell me if I am being unclear so I can explain further. Thanks, Vordar
  6. Don't know if this is the right place for this post, but I doubt anyone will mind, you're new to the forum I second that. This forum, though I haven't used it much, is great. And thanks for the hosting service too!
  7. Hello. I recently got a For Dummies book on C++ and really want to get started, but I can't find a good place to download C++ or Code::Blocks. Anyone know where I should go for the downloads and what I should do when I get there? int main() { cout << "Thanks for your help!" << end1; return 0; }
  8. Thank you for your help! HelioHost username = vordar domain = vordarnetwork.heliohost.org server = Johnny **Whoops. Tried to do BBS. Didn't work that well, did it?
  9. Hello! I switched from the cPanel theme I was on (x3) to x2 out of curiosity. Turns out, x2 is horrible... it lacks tons of features, and it seems like the option to change back to the x3 theme is nonexistant. Which is kind of a big deal. Anyone know how to escape the clutches of x2? Thanks in advance!
  10. Hello! I switched from the cPanel theme I was on- x3- to x2 out of curiosity. Turns out, x2 is not even close to as good as x3... it lacks many features, including the option to change back to the x3 theme. Which is kind of a big deal. Anyone know how to escape the clutches of x2? Thanks in advance!
  11. I think I am real but for all I know YOU are imaginary, and I am imagining a person who thinks I am imaginary... and this whole thing is fake... And I'm just living in a dome, simulating the world, being videotaped as part of The Vordar Show ...
  12. In a child's terms: Pretty accurate, isn't it? Children are the smart ones, really
  13. <p>I will not state if I do or not right now.</p> <p> </p> <p>Two points:</p> <ul> <li>Evolution does have <em>fairly</em> solid evidence supporting it</li> <li>Even if you believe in God, you can still consider some evolution... What if God created all life and then, throughout time, helped guide the process of evolution?</li> </ul>
  14. There's no actual way to prove God's existence, besides prophecies in the Bible which came true (but you can argue that those are guesses). There's no actual evidence to prove evolution etc, as that "evidence" can be questioned, and the evidence supporting the evidence can be questioned, etc. I will post further if someone asks me too but I do not feel like doing more right now
  15. This is one of those things that befuddles everyone. It's one of those things that you really must just accept or not accept. A lot of evolutionists say it's ridiculous that a Creator would just come into existence without being created, and that it makes no sense that a Creator could just- POOF!- pop into existence. And creationists counter that it makes the same amount of sense (or, more accurately, lack of it) that something like the Big Bang could just- POOF! - happen. Creationists say things such as miracles in real life, dreams ("visions") with predictions that come true and other related events are proof. However, dreams and other things can often be explained away, and there is no one who can actually give solid, totally credible evidence of a Creator. It is just the question: "To Be(lieve) or Not To Be(lieve)".
  16. Hi. I am working on a quadratic formula solver, just for fun. Here is the code I need fixed: var $a, $b, $c, $d, $e, $f, $g, $h, $$A, $$B, a, b, c; function solve(x, y, z) { a = document.getElementById("A_").value; b = document.getElementById("B_").value; c = document.getElementById("C_").value; $a = (-1 * B)/>; $b = (2 * a); $c = Math.pow(b, 2); $d = (4 * a * c); $e = ($c - $d); if ($e >= 0) { $f = Math.sqrt($e); $g = ($a + $f); $h = ($a - $f); $$A = ($g / $B)/>; $$B = ($h / $B)/>; if ($$A == $$B)/> { return $$A; } else if (Math.abs($$B)/> == $$A) { return "± " + $$A; } else { return $$A + " or " + $$B; } else { return "I'm sorry, this calculator can not compute imaginary solutions."; } Apparently, I am misusing the brackets, parentheses, etc. I have a version that works: function solve(x, y, z) { a = document.getElementById("A_").value; b = document.getElementById("B_").value; c = document.getElementById("C_").value; $a = (-1 * B)/>; $b = (2 * a); $c = Math.pow(b, 2); $d = (4 * a * c); $e = ($c - $d); if ($e >= 0) { $f = Math.sqrt($e); $g = ($a + $f); $h = ($a - $f); $$A = ($g / $B)/>; $$B = ($h / $B)/>; if ($$A == $$B)/> { return $$A; } else { return $$A + " or " + $$B; } } else { return "I'm sorry, this calculator can not compute imaginary solutions."; } } But I want to insert the "else if" statement, which I seem to be doing wrong. Anyone know the (probably embarassingly obvious) solution? If so, can you please show me what to do? Thanks!
  17. Hello! Sorry if this is a repeat question or topic... Anyway, I'm trying to change my password to a really handy all-non-letter password (with one number) that no one could guess (even through the deadliest brute-force attacks) yet I know perfectly. However, though it contains no letters (only the random characters and a number), it claims that my password is bad because it is "in the dictionary" (dictionary must be getting broader, eh?) Is there a way around this? Thanks in advance, Vordar And, just a random question (I'm new to the forum), can you delete a topic once you are done with it? I don't think this is something that needs to waste storage space for the next few months. And tell me if there is a place where you're supposed to post extra-random stuff. ______________________________________________________________________________ Signature in progress!
×
×
  • Create New...