Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Give it another 24 hours and your site should be up.
  2. Your site is up. Refresh your browser.
  3. We don't offer domain names. If you don't already have a domain name when you sign up, you should have chosen the USERNAME.heliohost.org option (the first option on the dropdown menu). You can however go and sign up for a free domain name at one of these places: http://www.co.cc or http://www.uni.cc Or choose a heliohost sub domain like: inmage.heliohost.org And then we can change your domain name to whatever you choose.
  4. You should be able to go to your domain name provider and login. Then just follow the directions to add nameservers. It should be pretty straight forward once you login.
  5. You need to point that domain (inmage.com.br) to our nameservers: ns1.heliohost.org ns2.heliohost.org
  6. This support request is being escalated to our root admin.
  7. This support request is being escalated to our root admin.
  8. You can report it right here.
  9. You can do that at your cpanel. Just look for the link that says Redirects. It should write something like this into your htaccess file: RewriteEngine on RewriteCond %{HTTP_HOST} ^hamroworld.com$ [OR] RewriteCond %{HTTP_HOST} ^www.hamroworld.com$ RewriteRule ^mypage$ "http\:\/\/profile\.php\?profile\=mypage" [R=301,L]
  10. This support request is being escalated to our root admin.
  11. I'm not seeing that domain in our database. It probably got deleted because you didn't log into cpanel for over 30 days.
  12. Password Protection Without Logging In If you have a password protected directory that you use just for yourself, this will keep you from logging in. Also if your on another machine that isn't yours it will prompt you for the password. Just go to your cpanel and create a password protected directory like you normally would. Then you go to the directory's .htaccess and replace the code with this: AuthName "Restricted Access" AuthUserFile "/home/byron/.htpasswds/public_html/passwd" AuthType Basic Require valid-user Order Allow,Deny Allow from 172.17.10.1 Satisfy Any Replace 172.17.10.1 with your ip address. You can also add more ips if you want by adding a new line like this: Allow from 172.19.14.12 Allow from 172.27.60.01 Allow from 132.35.10.63
  13. Directory Sweeper Script This is a simple php script that will delete files in a directory by age. You can change how old the file has to be before it gets deleted. The way I use this is on a cron job and sometimes I use it as an include at the bottom of the page. The script is written to go inside the directory below the "tmp" but you can change that. <?php ### Directory Sweeper ### # create directory resource and read it # directory to delete files $dir = "tmp/"; $directory = opendir("$dir"); while (true == ($file = readdir($directory))) { # but don't read the links to directories if ( is_file("$dir/$file") ) { # find out when it was created $created_time = filemtime("$dir/$file"); # $age = present time-$created_time $age = time()-filemtime("$dir/$file"); # how many hours before file gets deleted $hrs = 24; $expire = 60*60*$hrs; # delete if more than $hrs old. # don't delete the indexe or .htaccess if ( $age > $expire && !preg_match("@\.htaccess|index\.html@i", $file, $x) ) { unlink("$dir/$file"); } } } closedir($directory); ############### exit; ?> Like I said you can use this as an include on another page if you want like this: <?php include("sweeper.php"); ?> That way anytime somebody clicks onto your page your sweeper script checks for old files and deletes them.
  14. Just try to be a little patient. I'm sure djbob will get to you sometime today. He lives in the PST zone in the U.S.
  15. Is that an addon domain problem? Post here. It it's a parked domain then you need to post your default domain name and username.
  16. When I go here: http://medcare.heliohost.org I get a page that says: Welcome to our new home! When I go here I'm seeing the same page. http://www.medcarestore.com
  17. Did you give it 24 hours to show in the cpanel? If it still doesn't show then post in the thread I posted to you in my previous post. You also need to point your domain name to our nameserver: ns1.heliohost.org ns2.heliohost.org
  18. Try refreshing your browser's cache.
  19. Post that same information in this thread.
  20. This support request is being escalated to our root admin.
  21. I'm not seeing that domain or username in the database. Go ahead and register it again.
  22. You can't start a New Topic in the Escalated Request forum but you can post in an existing thread and that's what you need to do. Post in the thread that I posted for you in my previous post and the Administrator will help you.
  23. This support request is being escalated to our root admin.
  24. We don't reply by email. Give it 24 hours for your addon domain to show. Make sure you refresh your browser when you check it again.
×
×
  • Create New...