Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Mine isn't showing correctly on Stevie either. It's showing around 38 MB when it should be around 130 MB. Escalating...
  2. Please post your username and domain name. Moving to Suspended and Queued Accounts... Nevermind, I found your account. Your site became Inactive because you failed to login to your cPanel every 30 days. I've reactivated your account. Refresh your cache if you still see the Suspended page.
  3. Glad your problem got solved! Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  4. We don't keep backups of anybody's site. If your worried about the other folders that were in your public_html folder, then re-create them also. The only folder of any importance would be the cgi-bin. Any other folders, besides images, were related to Frontpage Extensions and if you don't use Frontpage, then don't worry about those folders. If you do, then go to Frontpage Extensions at your cPanel and add them again.
  5. Your last login was 2011-09-21 so your ok. It may have just been high server load. I was able to login this morning without any problems. Try logging in when the server load is under 20 and see if that helps. If you continue to have a problem, post back.
  6. Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  7. It had nothing to do with being soft-skinned. You insinuated that everybody in this thread was so stupid, that how could they have possibly even read a book, much less any of the books that were mentioned. Let's not make a big discussion about this. Just try and show a little more respect from now on, ok!
  8. That remark was really uncalled for. If you don't refrain from making these smart remarks in your post, I will ban you from posting. You seem to be a pretty intelligent person but you lack the ability to show respect to fellow posters. And yes I have read my bible more than once and continue to read it every day.
  9. Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  10. There aren't any upgrades or any paid accounts. What you see is what you get. Everybody gets 500 MB of space with unlimited bandwidth (within reason). All you have to do is make sure you login to your cpanel at least once eveey 30 days.
  11. Okay the account www.benimeserim.org has been manually deleted.
  12. Byron

    mod_rewrite

    Yes both servers support mod_rewrite.
  13. Your site seems to be up right now. Your problem is probably because we are experiencing a few technical difficulties with the server Stevie. We are working to correct those problems as soon as possible.
  14. Are you wanting this domain deleted from the server Johnny? www.benimeserim.org Moving to Customer Service...
  15. Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  16. Evidently not on the same planet you live on. When the server is down and returning a Queued page for all accounts, my pages in my sub-directories return a 404 for me. And at the time of my post, that was the case.
  17. Look for Frontpage Extensions at your cPanel and it will give you the option to disable them.
  18. Normally the server Stevie isn't slow. if you can wait until the root administrator has a look at the slowness problem, Then I think you'll be happier staying with Stevie. If you insist on moving to Johnny, you can delete your account here: http://www.heliohost.org/home/support/scripts/delete
  19. Byron

    help please

    We're aware of the problems and working to correct them as soon as possible.
  20. You need to wait 24-48 hours for your site to become active.
  21. I'm assuming you want to password protect a directory? You can do that from your cPanel. Look for Password Protect Directories. If this is not the case then please be a little more specific.
  22. If nobody here at helionet can show you how, try this forum. http://www.codingforums.com I'm sure if it can be done, somebody there will know how. If you come up with a solution, please post it back here in this thread.
  23. If your lke me, sometimes you need to show the source of your php script. You can highlight (color code) your php code with the highlight_file() function. By using the .phps extension you can just make a copy of the php file and then rename it with the phps extension like below: Working file: http://helio.byrondallas.heliohost.org/server_load_s.gif Highlighted file: http://helio.byrondallas.heliohost.org/server_load_s.phps First create a file named phpsource.php in your root directory and add the code below: <?php if (substr($_GET['file'],strpos($_GET['file'],'.')) == '.phps') { highlight_file($_GET['file']); } ?> Then add these two lines to your root .htaccess file: RewriteEngine On RewriteRule ^(.+.phps)$ phpsource.php?file=$1 [L] Now you can show the source of any php file by adding the .phps extension. There's also another way which I use more often and that's using the highlight_string() function. <?php highlight_string('YOUR PHP CODE HERE'); ?> I normally just add that to the bottom of an example page, like the example below: http://helio.byrondallas.heliohost.org/email_form.php Just remember if you use single quotes to wrap your code in, you'll need backslash ALL single quotes inside your code \'. Same way if you use double quotes to wrap your code in, then you'll need to backslash ALL of the double quotes in your code \".
  24. I really don't think this can be done since php is server side and javascript is client side. If it can, it's beyond me.
×
×
  • Create New...