Search results

  1. descalzo

    AJAX help

    Second problem, move the .hide() to after the if(xmlhttp.status==200) { } else { } but still inside the if (xmlhttp.readyState==4 ){ } construct. As to the first problem, how are you calling the usernameSearch ? ie, is it on change or on keypress, etc?
  2. descalzo

    AJAX help

    function usernameSearch(str) { if (str.length==0) { document.getElementById("nameSearch").innerHTML=""; document.getElementById("nameSearch").style.border = "0px"; return; } else { $("#load").show(); //loading image show } if...
  3. descalzo

    hi good afternoon

    The nameservers for x10hosting are: ns1.x10hosting.com ns2.x10hosting.com The current IP of your server, Starka.x10hosting.com is 69.175.120.122
  4. descalzo

    Time is wrong

    I am sure that they will fix the time once all the major problems have been fixed.
  5. descalzo

    Can't access site

    Currently I how the baby blue defaultwebsitepage.cgi , which often shows up for a while (up to 24-48 hrs) after changing domain names. That is because while cPanel updates your domain name and so does the nameservers, the server itself takes awhile to update its internal map that connects...
  6. descalzo

    Default Page

    Try clearing your browser cache or adding ?foo to the end of your site's address. I show a blank Index of / page for your mafiamobster domain.
  7. descalzo

    Free Hosting Update

    x10hosting does NOT insert any code onto your web pages.
  8. descalzo

    PhpInfo and mod_rewrite

    mod_rewrite enabled. You should include the RewriteBase directive if you are going to use RewriteRule PHP 5.2.14
  9. descalzo

    Compiling code on server for free hosting package

    No. You would probably need a VPS for that.
  10. descalzo

    php/mysql: problem inserting rows already existing in spite of verification

    Wild guess: Are you remembering to strip off the ending newline? (either in this script or in the script that originally populated the table). Then the stored values would look the same in phpMyAdmin but would not be equal.
  11. descalzo

    change domain name

    Almost all co.cc domains are free (except "popular" names). You just have to go to co.cc and register and use their tools to set the DNS nameservers to x10hosting's
  12. descalzo

    Help with securing website from hackers??

    Passwords: 083049llewoL!@amroN Usernames: The admin user should not be 'admin' or 'root' That applies to all levels of your site. cPanel/FTP. Admin access to your software (WordPress, Drupal). Many of the scripts have security plugin/mods. Check them out and use one. Most scripts have...
  13. descalzo

    Help with securing website from hackers??

    In any .htaccess you have (if you have none, put one in your document root, here it is /home/yourCPanelUsername/public_html ) put the line: Options -Indexes
  14. descalzo

    SQL help (possible a join)

    SELECT feed.id , feed.user_id, feed.content FROM feed INNER JOIN friends ON feed.user_id = friends.user2_id WHERE friends.user_id = current_user ; should work Edit: facepalm.png ... thirty lashes with a wet lasagna noodle for me for not reading gomarc's post more closely.
  15. descalzo

    How to increase PHP Upload Limit?

    The max upload is 16M for Free Hosting Accounts http://x10hosting.com/free-hosting-comparison shows the features of Free vs Illuminated vs Premium.
  16. descalzo

    My domains return error

    Your sites load for me. Please clear your browser cache and history. If that does not work, add ?foo to the URL you are going to in order to bypass any caching routines.
  17. descalzo

    Still seeing defaultwebpage.cgi?

    Clear your browser cache and history. If that does not work try : http://stscholastica.x10.mx?foo
  18. descalzo

    Please Help

    Try : http://thomasipodiphonehelp.x10hosting.com/?goo Also clear your browser cache and history (but your ISP might be caching pages)
  19. descalzo

    Cron trouble

    wget -O - http://nameOfYourSite.x10.bx/cron_fivemins.php?code=YourSecretCode >>/home/igor/public_html/cron_log.txt 2>&1 Will call your webpage/cronjob. NOTE: it is -O - , ie hyphen capital O (not zero 0 ) space hyphen
  20. descalzo

    Cron trouble

    Ok. I assume you are supposed to call it via the web htt://yadda.com/cronjob.php?yourSpecialCodeHere. Give me a bit to check how the current system is set up to see what works here.
Top