Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. 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?
  2. tastwolf is the helionet username for this domain that you say is yours: notebookvault.co.cc
  3. Is your roommates's helionet username tastwolf?
  4. You already have an account on Stevie: notebookvault.co.cc Your only allowed one account per user.
  5. All you need to do is point your domain to your new hosting's dns.
  6. 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?
  7. 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.
  8. 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.
  9. Also have you tried a simple "Hello World" script on your site? <?php echo "Hello World!"; ?>
  10. No the server Stevie doesn't support ASP.NET. You'll need an account on Johnny to use that.
  11. Byron

    Plz Help

    Sorry but it looks like your account was deleted. Please feel free to create a new account if you like.
  12. You need to take a look at this djbob. decoded.cz.cc on server Johnny.
  13. 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?
  14. 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.
  15. 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.
  16. 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; ?>
  17. Did you make a backup like I suggested? I'm still seeing your site in the database so give it 24 to 48 hours.
  18. 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.
  19. It got changed. I'm not seeing decode.heliohost.org in our database anymore even though I still see it through my browser. Give it another day to clear out. I am seeing this in our database and it's working too. decoded.cz.cc
  20. Here's an image script that I've used several times in the past to grab info on some of my pages. It creates a 1x1 transparent gif: <?php # your script here # make a 1x1 transparent .gif header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); header("Content-type: image/gif"); $im = @imagecreate(1, 1); $background_color = imagecolorallocate($im, 255, 0, 0); imagecolortransparent($im, $background_color); imagegif($im); imagedestroy($im); ?>
  21. It's not working on the administrator's test account either: http://area51.heliohost.org/jsp/test.jsp Escalating...
  22. More than likely it's do to high server load. Are your JSP pages working now?
  23. What happened after you tried changing your domain name? Did you wait at least 24 hours after you changed your domain name for it to take effect?
  24. There shouldn't be any problems. Like jje posted, they all go to the same place. If you'll look at the source code at your cpanel, you'll see inside of an iframe, the renew script with your username. You can also see where it goes through this handy dandy tool. http://byrondallas.heliohost.org/php/tools/curl_get_info.php
  25. What kind of an error do you get? Have you tried logging in using all lowercase on your password? Do you live in Hong Kong?
×
×
  • Create New...