Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Django seems to be working fine on Johnny. Johnny test account: http://area51.heliohost.org/djangotest/
  2. This will show your hidden files: http://YOUR_DOMAIN.heliohost.org:2082/frontend/x3/files/dir.html?showhidden=1&dir=/public_html/ Once your at your file manager through that url above, click onto the folder name and you'll see a link to Change Permissions. If your wanting to change permissions on a file, click the icon left of the file name and you'll see the Change Permissions link.
  3. I've been working on my site all day and haven't had any problems. Check your Error log file at your cpanel the next time you get a 500 error.
  4. As long as you login to your cpanel at least once every 30 days you don't have to worry about your site being deleted for inactivity. However if you fail to do so you will be sent an email saying that you need to login before it's counted as inactive.
  5. I found this captcha script about a year ago and decided to play around with it yesterday. Here's where to find the original script: http://www.puremango.co.uk/tag/captcha/ Here's the demo I made adding a contact form. You can play around with it to see the results because I've disabled it from sending any emails: http://byrondallas.heliohost.org/files/captcha/contact.php Here's a zip of mine with the email contact form. You'll see two places to edit the contact.php file for your email address: http://byrondallas.heliohost.org/scripts/zip/captcha_mail.zip
  6. Is this your account? paulsta.heliohost.org It was suspended for high mysql load.
  7. The best way to see what is causing the error is just comment out each line one at a time until it works.
  8. Create a file and name it something like "remove_dir.cgi" and chmod it to 755. Add the code below to that file: #!/usr/bin/perl -w print "Content-Type: text/html\n\n"; system 'rm -r "/home/byron/public_html/folder" 2>&1'; Be sure to set this to your correct npath to your folder: /home/byron/public_html/folder Then click onto that file and all files and folders in that directory (including that directory) should be gone. You'll probably need to refresh your cache.
  9. Your account was suspended for sending too many emails. Keep the emails under 50 a day or you'll be suspended permantly. Okay I've unsuspended your account.
  10. Glad your question got answered! Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  11. Should be: <?=$r['name'];?><?=$and?> NOT this: <?php=$r['name'];?><?php=$and?> I normally use it something like this: <input type="text" name="url" value="<?=$_POST[url];?>"> @Hairy DJ, we can't use only the simple code tag.
  12. Remove this from the bottom of your page and refresh your cache: <script type="text/javascript" src="http://livedots.net/counter.php?site_id=d96409bf894217686ba124d7356686c9"></script>
  13. ns1.heliohost.org ns2.heliohost.org
  14. You were suspended for sending too many emails. This is your second suspension for the same reason. Once more and you'll be suspended for good. Okay I've unsuspended your account.
  15. If your able to login to your cPanel then your not suspended. Try refreshing your cache.
  16. You were suspended for: Once more and you'll be suspended for good. Okay I've unsuspended your account.
  17. Okay I've reset your password. Check your gmail account for the email.
  18. I'm not seeing any accounts with those email addresses. If you don't already have an account then you can signup for one.
  19. I'm not seeing anything under those usernames. What's the domain name?
  20. I sent it to a gmail account. I also sent a BCC to my gmail account and I recieved it just fine.
  21. Okay I've reset your password and emailed it to the address you registered with and your account is on Stevie and not Johnny.
  22. Your account was suspended for causing high FTP load. Over 9000 accesses in about 5 hours. I can unsuspend your account but not back to default settings. Okay I've unsuspended your account. Please keep the ftp load down or you'll be suspended for good.
  23. Something else to keep in mind when we upgrade Stevie's ImageMagick. Stevie has Ghostscript with ImageMagick. It allows you to convet pdf files to png files. I'm not sure what's involved in adding it to Johnny but I wanted to make sure we didn't lose it on Stevie.
  24. 1. Go to your cPanel and look for the link that says "Default Adrress" and follow the instructions or click here and login. 2. The .html extension won't work in the cgi-bin. Use .shtml instead. Also have you tried a simple cgi/perl script yet? Copy and paste the code below into a file that's chmoded to 755 and give it a .cgi extnsion: #!/usr/bin/perl -w use CGI ':standard'; $current_time = localtime; print header, start_html('A Virtual Clock'), h1('A Virtual Clock'), "The current time is $current_time - PST.", hr, end_html;
×
×
  • Create New...