I'm using a bit of code my brother made so I'm not the expert though I understand the basics of it, I think.

Qt Code:
  1. serverConnection = new QHttp("www.web.be");
  2. connect(serverConnection, SIGNAL(requestFinished(int,bool)), this, SLOT(serverStatus(int,bool)));
  3. serverConnection->get("/status.php");
  4. serverConnection->readAll();
To copy to clipboard, switch view to plain text mode 

Using qDebug it shows that instead of getting a simple "1" or "2" it gets a whole different page then status.php

Qt Code:
  1. "<head>
  2. <meta http-equiv="refresh" content="0;url=http://ifastnet.com/notify2.html" />
  3. </head>
  4. <html>
  5. <body>
  6. <script LANGUAGE="JavaScript">
  7. window.location="http://ifastnet.com/notify2.html";
  8. </script>
  9. <!-- 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 526 640 917 51 415 140 573 716 965 688 395 829 76 810 801 733 244 95 205 283 488 189 705 173 743 574 947 608 694 973 886 298 223 449 99 309 936 432 209 623 454 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 526 640 917 51 415 140 573 716 965 688 395 829 76 810 801 733 244 95 205 283 488 189 705 173 743 574 947 608 694 973 886 298 223 449 99 309 936 432 209 623 454 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 526 640 917 51 415 140 573 716 965 688 395 829 76 810 801 733 244 95 205 283 488 189 705 173 743 574 947 608 694 973 886 298 223 449 99 309 936 432 209 623 454 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 526 640 917 51 415 140 573 716 965 688 395 829 76 810 801 733 244 95 205 283 488 189 705 173 743 574 947 608 694 973 886 298 223 449 99 309 936 432 209 623 454 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 399 310 772 188 121 747 908 375 658 989 471 891 842 282 539 788 863 526 640 917 51 415 140 573 716 965 688 395 829 76 810 801 733 244 95 205 283 488 189 705 173 743 574 947 608 694 973 886 298 223 449 99 309 936 432 209 623 454 -->
  10. </body>
  11. </html>
  12.  
  13. <BR clear="all">
  14. <HR noshade size="1px">
  15. <ADDRESS>
  16. Generated Sun, 14 Nov 2010 10:59:05 GMT by demil1.byetcluster.com (Lusca/LUSCA_HEAD-r14756)
  17. </ADDRESS>
  18. </BODY></HTML>
  19. "
To copy to clipboard, switch view to plain text mode 

I'm sure the file is there and named correctly as I can browse to it and download it. Any idea why this might be happening? Host related?

greets,
Speedy