Search results

  1. devongovett

    Cossacks Down ?

    It is now up but I am getting the "Great Success ! Apache is working on your cPanel® and WHM™ Server" message. Grrrrr.
  2. devongovett

    Cossacks Down ?

    I can no longer count the number of times that it has gone down in the last month. Really annoying.
  3. devongovett

    Upload Fail

    Fixed thanks!
  4. devongovett

    Upload Fail

    Hello, I have a problem. I am uploading an image to a php script. Along with that image, I am also posting two strings. The whole process works correctly on my local machine, and works once and a while (randomly) on x10's servers. The php script gets run, and tells me that the two strings...
  5. devongovett

    Weird Problem

    Hi everyone, I am having this weird problem with my site at http://our-voice.info/, where it is not accessible from any computer BUT mine. I can access all aspects of it except sub domains just fine, but anyone on a different local network cannot. I have tried proxys and many other computers...
  6. devongovett

    CSS Width

    Hello, I would like to set the width of an html element to be 100% of the width of its contents. This will mean that it will be bigger than its parent element. Here is the html: <div id="items"> <ul> <li><img src="sample.png"></li> <li><img src="image.jpg"></li>...
  7. devongovett

    Email Problem

    Hi, Before my account was transfered to the new cossacks, I had set up my account so that all email to my domain was sent to my personal email address (A domain Forwarder). When the account was transferred, the forwarder was not transfered with it. I have since re-setup the forwarder, and...
  8. devongovett

    Timeout

    I honestly don't care if the browser times out or not, I just need it to send the emails :). When the browser times out, does that affect the php script?
  9. devongovett

    Timeout

    Hello, I am using PHP to send out a large number of emails (almost 300) with a loop. After about 30 seconds, my browser times out. Does this mean that the PHP script was stopped? If so, is there a way to find out where it left off so I don't have to send duplicate emails to people...
  10. devongovett

    Javascript in Internet Explorer

    No its a script problem. I installed The IE Dev Toolbar, and Script Debugger, and it is an eval line. Here is the line which works in every other browser, but internet explorer insists that current.whatever is null. eval('string = current.' + m.columns[j].toLowerCase()+';'); This is by the...
  11. devongovett

    Javascript in Internet Explorer

    Ok so I made a web app with javascript and html. and it works in every browser except IE which shows an error telling me nothing. How can I find out what the problem is? Or even better! can I run some js library or something to make IEs js work like all the other browsers!!!? Thanks for the...
  12. devongovett

    Poll: Would you like MagickWand to be installed?

    Well... This doesn't seem to be going anywhere.
  13. devongovett

    Poll: Would you like MagickWand to be installed?

    MagickWand is a PHP extension that allows access to the powerful ImageMagick graphics library. It is far more powerful than GD, which is the standard imaging library for PHP. Check it out here... Thanks for voting.
  14. devongovett

    Request to install MagickWand

    I am creating a virtual book with javascript. I need to upload a pdf, and then convert each page into an image to me combined in the format that my js needs with the montage command. I will start a poll. Thanks!
  15. devongovett

    Request to install MagickWand

    I need to use the montage command to combine multiple images on the fly.
  16. devongovett

    Request to install MagickWand

    Hello, I need the MagickWand php extension in order to access ImageMagick. Would it be possible to get this installed? Thanks!
  17. devongovett

    thank you page

    Or you could put that html in a separate file and call: header( "Location: "mythankyoupage.html" );
  18. devongovett

    IS my blog taking time to load?

    took me 10 seconds on a 802.11g wireless dsl connection, where I was pretty far away from the router.
  19. devongovett

    JS - make nodeValue the id - but how...

    You could also try: function pimp_navi(id) { with (document.getElementById(id)) { var links = getElementsByTagName('a'); for(i=0;i<links.length;i++) { var name = links[i].innerHTML; links[i].id = name; links[i].innerHTML = ""; } } }
  20. devongovett

    email submit button

    As far as I can tell, you are still missing <form action="guestbookmail.php" method="post"> although you can change guestbookmail.php to whatever you named your php file. If you go to the php file directly in a browser, you will no receive anything back - you have to access it by clicking on...
Top