Search results

  1. descalzo

    help needed

    He has already posted once about this problem five days ago. http://forums.x10hosting.com/free-hosting/103865-missing-account.html And since his signup date for the forums is Oct 18, any account linked to his forum account would not be suspended for inactivity.
  2. descalzo

    Account supend due to maximum allowed cronjobs

    30 * * * * = Run at 30 minutes past the hour, every hour, every day every month 0 * * * * = Run once an every hour , on the hour, every day every month 30 23 * * * = Run at 11.30pm every day every...
  3. descalzo

    My coding isn't working

    What text? <body> <img style="position: absolute; left: 0px; top: 0px; height: 617px; width: 998px;" src="http://i33.tinypic.com/30sytxd.jpg" border="0px"> </body>
  4. descalzo

    Person burnt by McDonald's coffee

    Re: The inactivity time at the bottom of the TOS page still says 2 weeks No, she won the case becaus McDonalds was negligent in serving a product at dangerous temperatures. She originally asked for $20K to cover $11K medical bills plus suffering. McD's offered $800. Judge/jury awarded...
  5. descalzo

    access denied to a function!

    If you get it to work, please post your solution. I tried to get mySQL to accept a "SELECT * INTO OUTFILE" request, but it keeps comming back access denied. And I had set up the user with all the permissions at the time.
  6. descalzo

    In your opinion, what is best about FREE web hosting with x10?

    I don't see Ruby mentioned anywhere, even in their Premium Hosting. But I do have another account on another free service. PHP, with ability to install PEAR modules. ImageMagick, SOAP, and Zlib installed, magic quotes turned off. Perl, with ability to install any CPAN module. Ruby on...
  7. descalzo

    msnlive.x10hosting.com

    3 hours later, and the stolen front page is still there. "Testing some pages" is one thing. Putting up the personal homepage of a blogger on Defensive Computing as your index page is another. I wonder about his choice of domain name too.
  8. descalzo

    In your opinion, what is best about FREE web hosting with x10?

    Gee, I think I missed the fact that they support Ruby. And from some of the problem posts, I think ASP.NET has its problems (due to the limitations of Mono). But that might happen on any host on an *nix box. And you forgot Perl. And there have been some questions about the Eunich...
  9. descalzo

    ssh enabling

    You can change the permissions (ie make them executable) via FileManager or FTP.
  10. descalzo

    Not able to access Cpanel file manager

    Are you saying that you can log onto the cPanel. But if you click on the FileManager, the File Manager Directory Selection Selection pops up and you tell it to go to public_html, instead of going there, the cPanel signin screen appears again, right? You sign in again, but it sends you to the...
  11. descalzo

    Make this type of 404 page

    I click on the link you provided above. It puts out a page that says: The URL that you requested /biwet3479p534 wasn't found. The URL in the address bar is the URL that was requested. What is the problem?
  12. descalzo

    Make this type of 404 page

    Neither do I. Isn't that what you want? Why are you putting full URLs in .htaccess?
  13. descalzo

    Checkboxes and AJAX

    Quickest way .... var imen = document.getElementById('interestedmen').checked; var iwomen = document.getElementById('interestedwomen').checked; Gives 'true' or 'false' which you can be sent back to the server. If you submit a form normally, a checkbox value is sent only if it is...
  14. descalzo

    Did X10 recover from major crash ?

    What do you expect when they name all the free servers after Vodkas?
  15. descalzo

    404 Error

    Works both ways for me, with/without 'www' It might be a browser cache problem at your end right now. Try clearing the brower cache. http://danielfairbrother.com/ redirects to http://danielfairbrother.com/home/index/index.html And the www redirects to the same URL with www in front.
  16. descalzo

    Getting '0' results from MySQL COUNT()

    SELECT COUNT( * ) AS count, ADDDATE( CURDATE(), 0) AS date FROM `testing` WHERE DATE( submit_dt ) = ADDDATE( CURDATE(), 0) UNION SELECT COUNT( * ) AS count, ADDDATE( CURDATE(), -1) AS date FROM `testing` WHERE DATE( submit_dt ) = ADDDATE( CURDATE(), -1)...
  17. descalzo

    cannot select database

    Any error messages? Are you using mysql_XXXX or mysqli_XXXX ? Are you testing the result of xxxx_connect() to see if it is valid vs being false?
  18. descalzo

    Word Association

    Divide
  19. descalzo

    Internal Server Error 500

    This often caused by problems in the .htaccess file. Make sure you have an index file (index.html or index.php) in public_html and that your .htaccess file is set up properly. If you are not sure what your .htaccess file should look like, you can post it here and we can try to help you.
  20. descalzo

    Checkboxes and AJAX

    Could you post the code you have, both server side and client side? Usually checkboxes send nothing if they are unchecked.
Top