-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
This is the way the ip addresses match to the nameservers. ns1.heliohost.org is 65.19.143.4, and ns2.heliohost.org is 65.19.143.5 I think if you'll point your domain to the heliohost nameservers you'll be ok.
-
As of the time of this post, your domain name is pointing to this nameserver: ns47.domaincontrol.com ns48.domaincontrol.com you need to set your nameservers to heliohost's: ns1.heliohost.org ns2.heliohost.org
-
When your finished testing you need to change cgiecho to cgiemail http://sepero.heliohost.org/cgi-bin/cgiema...ailtemplate.txt and you can use relative urls for the form action if you want. cgi-bin/cgiemail/emailtemplate.txt Here's something you might want to add to your contact page right before your form closing tag. It redirects the person to a thank you page after they've clicked submit. <input type="hidden" name="success" value="http://your_site.heliohost.org/thankyou.html">
-
When you go to your CGI Center you need to click onto the link that says 'CGI email' and it will get installed in your cgi-bin. I've never used a text file in my root directory so I can't say for sure if this is the correct path for the form action or not. <form action="cgi-bin/cgiemail/emailtemplate.txt"> Normally you would have your text file inside of a sub directory and then the form action would look like this: <form action="cgi-bin/cgiemail/SUB-DIR/emailtemplate.txt">
-
You could add this to your public_html .htaccess file: RewriteEngine On RewriteRule ^/?$ /joomla/ That way you can still go to the pages in your public_html folder but this will redirect you to the index file of the joomla folder: mysite.heliohost.org You might need to write it this way, adding this [R=301,L] for your images to work? RewriteEngine On RewriteRule ^/?$ /joomla/ [R=301,L] the other way the browser doesn't know it's been redirected.
-
Can you just move the files from the joomla directory to your public_html directory?
-
You can actually do that at your Backups from your cPanel but it's not enabled right now. Maybe djbob will read this and tell us if this can be enabled.
-
You don't need to run a cron job to generate a backup. Just go to your cpanel backup and then click the link "Download or Generate a Full Backup" and then leave all of the forms blank unless you want it ftp'd to another server and then click "Generate Backup" and it will leave the zip file in your user directory for you to upload.
-
Usually about this time of the day so you might want to give him a couple of hours if it's not too late for you.
-
Okay, you'll need to wait for djbob to check into it.
-
Try to renew your account here: http://www.heliohost.org/scripts/renew.php
-
Your site is up: http://maisdental.heliohost.org/ and you should be able to login to your cpanel here: http://maisdental.heliohost.org:2082/ Make sure you login at least once every 30 days.
-
If your email client is Hotmail then it probably got blocked. Do you remember the dmain name you signed up with?
-
I'm not 100% sure but I believe it should be localhost
-
You need to go here to apply for it.
-
It's a problem system wide and djbob is working on it. You can stay up to date by following this thread.
-
Can I chang the default domain and have a dedicated IP?
Byron replied to Rex's topic in Customer Service
Yes I believe that's normal. Just give it about 24 hrs. -
If your site is still up and you can login to your cpanel then your site has been renewed. Just make sure you login to your cpanel at least once every 30 days.
-
Do you see a link called "Fantastico De Luxe" at your cpanel?
-
You need to login to your cpanel at least once every 30 days.
-
You need to wait about 24 hours after you register before you can login.
-
It means that domain name is already being used. http://c7cnpm.co.cc/
-
The process is still the same. Your just using the cgimail as the form action. Your really better off using php. With the cgimail you have to create a txt file with your email address and it is added to the form action. If somebody wants they can source your mail form to get your email address from the text file. This is how you use cgimail. This is the text file you make that becomes part of the form action: http://byrondallas.heliohost.org/files/mailer.txt <form method="post" action="../cgi-bin/cgiemail/files/mailer.txt"> This is how it works in the mailer form: <form method="post" action="../cgi-bin/cgiemail/files/mailer.txt"> Your name:<br> <input type="text" name="yourname" size="25" maxlength="50"> <br><br> Your email address:<br> <input type="text" name="required-from" size="25" maxlength="50"> <br><br> Subject:<br> <input type="text" name="subject" size="25" maxlength="50"> <br><br> Message<br> <textarea name="message" rows="3" cols="50"></textarea> <br> <input type="submit" value="Send"> <input type="hidden" name="success" value="thankyou.html"> </form>
-
How about a php mail form? http://byrondallas.heliohost.org/files/contact_me.php http://byrondallas.heliohost.org/files/contact_me.txt Just change the $to to your email address and change the html to suit yourself.
