Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Minute - 0 Hour - 0,12 Day - * Month - * Weekday - * For no emails: php -q /home/byron/public_html/cron.php >/dev/null 2>&1 For emails: php -q /home/byron/public_html/cron.php >/dev/null 2>&1 Don't forget to change the path to home1 if that is your path and the username to your username.
  2. I'm not seeing this account as suspended. lu.heliohost.org EDIT: Nevermind. I got here a little too late.
  3. I never hammered you with questions nor did I imply that you were lying. This was your last post to me: In which case I simply replied: It's as simple as that and it's up to you if you want another account or not. I make no apologies for what I've posted.
  4. @jje: If you'll read my previous post you'll see where he claims his roommate passed that account on to him. If he'll delete that account he can create another one. btw, you've already escalated this thread.
  5. This support request is being escalated to our root admin.
  6. I'm not seeing: xiix.heliohost.org in our database. Please try to register it again.
  7. In that case you'll need to delete that account to create another one. http://www.heliohost.org/home/support/scripts/delete
  8. I should have said: tastwolf is the helionet username for this domain that you say is your roommates: notebookvault.co.cc The ip that you say belongs to you and your roommate registered this domain notebookvault.co.cc with the helionet username: tastwolf. Do you see where the confusion is?
  9. tastwolf is the helionet username for this domain that you say is yours: notebookvault.co.cc
  10. Is your roommates's helionet username tastwolf?
  11. You already have an account on Stevie: notebookvault.co.cc Your only allowed one account per user.
  12. All you need to do is point your domain to your new hosting's dns.
  13. His page is returning this as a content type: Content-Type: application/x-httpd-php5 http://byrondallas.heliohost.org/php/tools...n&follow=on It should be returning this: Content-type: text/html So I'm thinking he's got something misconfigured in his htaccess file?
  14. Did you add anything to your .htaccess file to make php work on your site? Something like this: application/x-httpd-php5 You don't need to add anything for php to work.
  15. Ok I've deleted your account on Johnny, although it may still be in your cache. Give it another day or two for the account on Stevie to become active.
  16. Also have you tried a simple "Hello World" script on your site? <?php echo "Hello World!"; ?>
  17. No the server Stevie doesn't support ASP.NET. You'll need an account on Johnny to use that.
  18. Byron

    Plz Help

    Sorry but it looks like your account was deleted. Please feel free to create a new account if you like.
  19. You need to take a look at this djbob. decoded.cz.cc on server Johnny.
  20. Because I wasn't sure what was going to happen once you removed the parked domain and I didn't want you to loose all of your files. Are you still able to login to your cpanel and see your files?
  21. Byron

    Confused...

    Add this near the top of your script: BEGIN { use CGI::Carp qw(carpout); use diagnostics; open(LOG, ">errors.txt"); carpout(LOG); close(LOG); } use CGI::Carp qw(fatalsToBrowser); And see if you get any errors written to the errors.txt file.
  22. Those are the actual png images the script creates and not screen shots. Maybe you've mistaken the arrow in the image for the curser? btw, if your interested in imaging, check out what we can do with the Imagick Class. http://byrondallas.heliohost.org/php/imagi...all-methods.php If you'll click onto the link that says DJ Mike's examples, you'll find more examples there than at php.net.
  23. I didn't write this. I had it saved from a few years back and came across it last night and thought some of you might like the effect. Takes an image like this: and reflects it like this: <?php # Read the image $im = new Imagick("../../images/heliohost.png"); # Clone the image and flip it $reflection = $im->clone(); $reflection->flipImage(); # Create gradient. It will be overlayd on the reflection $gradient = new Imagick(); # Gradient needs to be large enough for the image $gradient->newPseudoImage($reflection->getImageWidth(), $reflection->getImageHeight(), "gradient:transparent-black"); # Composite the gradient on the reflection $reflection->compositeImage($gradient, imagick::COMPOSITE_OVER, 0, 0); # Add some opacity. Requires ImageMagick 6.2.9 or later $reflection->setImageOpacity( 0.3 ); # Create an empty canvas $canvas = new Imagick(); # Canvas needs to be large enough to hold the both images $width = $im->getImageWidth(); $height = ($im->getImageHeight() * 2); $canvas->newImage($width, $height, new ImagickPixel("black")); $canvas->setImageFormat("png"); # Composite the original image and the reflection on the canvas $canvas->compositeImage($im, imagick::COMPOSITE_OVER, 0, 0); $canvas->compositeImage($reflection, imagick::COMPOSITE_OVER, 0, $im->getImageHeight()); # uncomment to write image to your directory # $canvas->writeimage("reflected.png"); # output image header("Content-Type: image/png"); echo $canvas; ?>
  24. Did you make a backup like I suggested? I'm still seeing your site in the database so give it 24 to 48 hours.
  25. Yes you should have removed it as a Parked Domain before you tried changing it to your main domain. Make a backup of your stuff before you try to do anything else. Once you've made a backup, go to your cpanel and try to remove decoded.cz.cc from being a Parked Domain.
×
×
  • Create New...