Jump to content

wolstech

Chief Risk Officer
  • Posts

    16,333
  • Joined

  • Last visited

  • Days Won

    578

Everything posted by wolstech

  1. CSS is another language used for describing the appearance of elements on a website. It sounds like your book should cover it. Font tags are commonly used in books for beginners because they are easy to understand and eliminate the complexity associated with CSS. They technically shouldn't be used anymore on published sites because they are from an older HTML standard, but that's not to say they won't work, as all major browsers still understand them. Since you're a beginner, you might just want to keep the font tags for now.
  2. Our name servers are ns1.heliohost.org and ns2.heliohost.org. Do note though that NS2 is often slow to respond (or down entirely) because it is located on the same server as Johnny. Some people have reported trouble adding it to a domain because their registrar verifies it's availability. If this happens to you, your website will work fine with just NS1, and you can try adding NS2 again later.
  3. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days. If you are still seeing the Account Suspended page after renewing your account, please clear your cache.
  4. The innodb tables are read-only, so you won't be able to remove their records. If you have any MyISAM tables mixed in with the innodb tables though, you can remove the records from those particular tables (or drop the MyISAM table entirely.)
  5. There are a few issues that doing the above won't fix, but those cases are few and far between. The above is thorough enough for many people. Some things to add: In step 6, you can't drop any databases that have InnoDB tables if you are on Stevie. Doing so will bring down Stevie's mysql sever for a few minutes, and will also leave them in a state where they are gone from cPanel, but still exist in phpmyadmin. Also, if you use cron jobs, be sure to delete them by going to the cron job page of cPanel.
  6. Aside from the very outdated HTML (<font> tags are obsolete, use CSS for fonts), some code comments I have after a very quick look are these: <h1 align= "center" class= "blueshadow"><font color= "red" size= "8" face= "Comic Sans MS">Save a Pet</h1></font> You opened the <h1> first, but closed the <font> last. The first thing opened should be the last thing closed. Move the </font> inside of the </h1> so the header is closed last. <a/> Typo for the closing tag on your pet finder link. <td><img src= "images/shelterdog3.jpg" width= "200px"</td> The closing > is missing on your <img> tags for all of the images in that table.
  7. That account is not suspended. If you are seeing the suspended or queued pages, please clear your cache.
  8. The page renders fine in my browser when I copied it to an html file. The images are missing, but I expected that since I don't have them. What problems are you having with it?
  9. I'll assume you reached that from the features page...it should be http://www.heliohost.org/home/features/databases Fixed.
  10. InnoDB tends to trash itself more frequently when MySQL crashes. MyISAM can crash too, but it is more stable than innodb is, and repair is often easier if something does happen.
  11. The way we recommend you convert innodb tables to myisam is to make a backup as an sql file, replace all of the ENGINE=InnoDB with ENGINE=MyISAM in the backup SQL file, import it into a blank database, then edit your application Config to use that new database. Last i tried, attempting to use ALTER on the existing tables to change engine doesn't seem to work. Also don't bother trying to drop databases with innodb tables in them, since doing so wont succeed and will crash the MySQL server for everyone on the server...and it takes 10 minutes for it to restart.
  12. That'd be nice, but it just adds complexity to an already complex system.
  13. Because doing that type of stuff is not nearly as easy as it sounds when you have hundreds of users on the server. The server is not like your typical PC and is not nearly as easy to maintain or rebuild as a PC is. Rebuilding the bare system and your data would take days of downtime for thousands of websites, and getting everything back the way it was configuration-wise could take weeks or months of continuous tweaking. Besides, if we made and used backups, they'd restore these half-deleted databases. Once mysql is working properly, an admin can remove them for you. We won't upgrade mysql because it's broken and an upgrade might make the problem worse. It may be upgraded in the future. If you need a newer version for some reason, Johnny has MySQL 5.5 that isn't damaged. PHP will likely not be upgraded to latest because PHP 5.5 is not backward-compatible with a lot of programs due to function deprecation. We might get 5.4 at some point, but I don't know when that would be.
  14. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days. If you are still seeing the Account Suspended page after renewing your account, please clear your cache.
  15. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days. If you are still seeing the Account Suspended page after renewing your account, please clear your cache.
  16. I have an app on there that uses it for secured mail server connections and haven't had any trouble, so yes we do.
  17. That'd be a half-dropped database. It's related to Stevie's mysql issues. cPanel deletes it from your list of databases, but mysql then crashes trying to drop it. The result is cPanel thinking it's gone, and mysql still having it. I have 3 of these half-gone databases in my account from when I created new ones to convert to MyISAM tables. I can't get rid of them, and several others on here have reported the same. The solution seems to be to just ignore them until the mysql issues are fixed (who knows when that will be...).
  18. For those who can't/don't want to download it, the post and file he is referring to is a copy of dosbox and Turbo C v3 packed in an NSIS installer... Dosbox is open source. Turbo C is commercial software that has a trial and licensed version, and I can't tell which one you included. I'd delete it just to be sure.
  19. When I do a dig I'm seeing an SOA only for NS1. Whether that's because NS2 is down or because the SOA record just doesn't exist, I don't know. Either way, an admin will need to fix the issue with NS2. For the time being, contact the registrar and ask them to set the NS for you, telling them that your host only provides one (working) NS. We've had at least 1 other person with the same issue, and they were able to set it up by contacting the registrar. Alternately, you could create an A record to 216.218.192.170 instead. You already have your domain set as your Heliohost account's main domain, so this should work without any additional configuration.
  20. An admin will need to look into the SOA record issue, but I wouldn't be surprised if the issue is actually because NS2 is down a lot. It's hosted on the same server as Johnny and is often impacted by the load Johnny creates. The server monitor seems to indicate that it something's been wrong with it for a while. In the mean time, your website should work fine with just NS1.
  21. It's logging in as anonymous. You need to specify your FTP account's username and password in Filezilla's Site Manager settings.
  22. Error 2013 is due to the crash. It occurs when you try to do things to innodb tables, like create or drop them. Best course of action is to just not use innodb tables. MyISAM is working normally. If you have to use them, you can move to Johnny, although it goes down quite a bit due to load.
  23. This support request is being escalated to our root admin.
  24. Please do not open a second topic for the same issue. Merged. Anyway, it may take a while before someone can look at this. Krydos is usually the one who handles this sort of thing; I'm not sure if the others can do it. I'll escalate it for you.
  25. The code seems to have disappeared, but your font tag and h1 tag were closed in the wrong order if I remember right. Closing Font tag needed to be moved inside the h1 tag I believe. Also, for what it's worth, font tags are obsolete, as are the align attributes on several other tags. You shouldn't be using them, but rather using CSS instead.
×
×
  • Create New...