-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Posts posted by Byron
-
-
I just noticed I had my exclamation mark in the wrong place incase you copied my code. It's fixed now.
if ($code != "****************")
<html> <head> <title>Welcome to Lincoln's Site</title> </head> <body> <?php # $code = "random"; # remove this or the code will always see the password $code = $_POST["verifycode"]; if ($code != "****************") { echo "You are not a verified user. Go Away."; exit; } else { # backslash your quotes echo "<frameset cols=\"120,*\">\n"; echo "<frame src=\"navframe.htm\" />\n"; echo "<frame src=\"default.php\" name=\"showframe\" />\n"; echo "</frameset>\n"; } ?> </body> </html>See if this shows google in the frameset for you after you enter the password.
http://byrondallas.heliohost.org/test/login.html
-
You need to echo out the html if it's inside the php like this:
<html> <head> <title>Welcome to Lincoln's Site</title> </head> <body> <?php # $code = "random"; # remove this or the code will always see the password $code = $_POST["verifycode"]; if ($code != "****************") { echo "You are not a verified user. Go Away."; exit; } else { # backslash your quotes echo "<frameset cols=\"120,*\">\n"; echo "<frame src=\"navframe.htm\" />\n"; echo "<frame src=\"default.php\" name=\"showframe\" />\n"; echo "</frameset>\n"; } ?> </body> </html> -
Do you have to have the <body> and <head> tags though?
No. You can have your php inside the html like this:
<html> <head></head> <body> <?php # php code ?> </body> </html>
-
Is it possible to have html tags in the php tags?
Yes. You can have html before the php, html after the php or you can echo the html inside the php. It doesn't matter.
<html> <head></head> <body> </body> </html> <?php # php code ?>
or
<?php # php code ?> <html> <head></head> <body> </body> </html>
or
<?php echo "<html>\n"; echo "<head></head>\n"; echo "<body>\n"; # php code echo "</body>\n"; echo "</html>\n"; ?>
-
The cPanel has been down for me ever since this morning. Anybody else having a problem getting into cpanel?
EDIT:
I just went back and tried again and it finally loaded after a long wait. Checked the Server Load and it read 20.82. Somebody is running the server down.

-
[Moved from Questions forum]
Just be patient, djbob is still in vacaction mode I believe. He'll get around to you real soon.
-
I just checked my gmail account (that I had forgotten I had) and my test mail went through without any problems. So gmail IS NOT blocking heliohost. You might want to check your spam folder but my email went directly to my In Box.
-
they are blocking heliohost what do I do?
Are you geting a returned email with subject matter:
Mail delivery failed: returning message to sender
at your server mail that has the email headers from gmail?
-
gmail
Do you have a gmail account to try this test email with to see if they are blocking heliohost?
<?php $to = "your_address@gmail.com"; $subject = "Test Mail"; $message = "Hello world!"; $headers = "From: you@your_site.heliohost.org"; mail($to, $subject, $message, $headers); echo "The email was sent"; ?>
-
My IPB 3.0.3 can't send validation emails through php mail apparently and so I switched to stmp but its not working either can anyone explain?
Who is the email client that's not receiving emails?
-
-
Just don't login to cpanel for 30 days. You can still use your domain on the other host. Just change the nameservers to your other host's.
Yes thats the Problem. i cant. im using Godday and when i Reset the name serves in the DNS. the website Stays Connected on cPannel
It doesn't matter what you have in your heliohost cpanel as a domain name. What matters is what your nameservers are at Godaddy. When you set the nameservers to point to another host then that's where it's going to go when somebody clicks onto your domain name.
-
[byron]
And what if you "accidently" enter 1984 instead of 1994?
[/byron]
That was Nightcracker who posted that, but my reply to that would be, you would "accidently" be lying.

-
Just a question, there no advises about getting out due to inactivity (sorry for that, I just go out for have a rest in holidays, and I just forgive all except my mail xD)
You'll recieve a warning email after 30 days telling you to login or your site will be deleted.
-
djbob has to fill out a form that tells Hotmail that Heliohost isn't a spam server. That's why Hotmail is blocking heliohost's mail. But now that I look at the url from your previous post I don't think djbob has filed out the form. djbob filled out the form from this site that I posted a few weeks ago:
This is a different site (i think):
-
You can use uni.cc if your under 18 (as far as I know). That's who I use.
http://www.uni.cc/site/home.php
-
Rochak, you already posted your problem in Customer Service. Please don't post your problem twice.
Thank you
-
Hotmail thinks it's spam. djbob has already filled out the form once a few weeks ago. He'll have to look into it when he gets back online.
-
Are you sending it from your helio address, some mail providers block heliohost.
No, am not using heliohost's address. I am using personal "yahoo" mail for this.
It doesn't matter what the From: address is. What matters is the email headers and they will always show heliohost.
-
I looked for help on Joomla forums and the response I got is check whether your host support "PHP MAIL FUNCTION". Want to know is this function supported by heliohost?
1) Sendmail Path: /usr/sbin/sendmail (Is this correct?)
Yes Heliohost supports the php mail function and yes that is the correct path. The rest you'll have to wait for djbob or somedody else who is more knowledgeable about SMTP to answer your other questions.
-
It takes about 24 hrs after you register for your site to come up.
btw, your domain will be in lowercase.
http://pctech-geek.heliohost.org/
-
Ghostscript isn't a Perl module.
This is what the ImageMadick people said about Ghostscript:
"ImageMagick uses the Ghostscript delegate program to render PDF."
Here is the Ghostscript site.
-
One thing though. apparently my co.cc domain is still not recognized by my account as the main domain. I set the parked domain to no redirection. what do I do?
You would have had to sign up with the co.cc domain for it to be your main domain in your cpanel. But you get the best of both worlds with a parked domain. Let's say co.cc goes down, with it being a parked domain you can still access your site through you heliohost domain.
-
When the change has been done heliohost's server will overrride any settings I make in the user panel at my domain name provider right?
Because of the name server change? Server at heliohost is all set so we'll just have to wait and see what happens.
The only thing you do at the cpanel is add the Parked Domain name and it won't change anything on the name server user panel. Anyway it looks like the changes have taken place cause I'm going to your site:
and the nameservers are set correctly:
http://byrondallas.heliohost.org/php/tools...mingpassport.nl

frameset problems
in Technology and the Internet
Posted
It would be a browser problem. Try this real quick and see if you see the google page in the frame.
http://byrondallas.heliohost.org/test/login.html