Search results

  1. descalzo

    PHP Mail Function Still Not Working

    Try this script. The From must be an address on your account. It cannot be a hotmail or gmail account. // TEST OF THE MAIL SYSTEM USING PHP mail() date_default_timezone_set('America/Los_Angeles'); echo date('l jS \of F Y h:i:s A'); $from = "FROM ACCOUNT ON YOUR SITE"; $to="TO...
  2. descalzo

    Pop Up banner ad with freehosting acct on Firefox browser

    Take a second and look at the add. 000 web host . And it is not a popup. It is a Javascript lightbox. Turn off JS and it will not appear. And the site isn't even hosted here.
  3. descalzo

    Email

    Say you are using a script from your account. Say your account has a domain name of lumberjacksong.com You have to have the 'From' header be something like: ima@lumberjack.com, where that is an email account on your site. It cannot be: imalumberjack@hotmail.com
  4. descalzo

    need to restart server

    You cannot restart the server. You are on a server with thousands of other accounts. Why does your PHP script require a restart?
  5. descalzo

    Why is indexing not working?

    They are no longer using Apache as a server. Litespeed has indexing turned off by default. Since a working website really shouldn't use the indexing feature, it was not enabled. You can always add an index.php that scans the directory and puts up the equivalent of an Apache 'Index of' page.
  6. descalzo

    CGI/Perl

    Try http://x10hosting.com/free-hosting-signup
  7. descalzo

    Parse error: syntax error, unexpected T_VARIABLE

    elseif($ban == 'RaeqwoN <=======================
  8. descalzo

    Parse error: syntax error, unexpected T_VARIABLE

    Please post the lines before #70. That is usually where the real problem is located. And you do have a problem with line #70, but that should show up when the query is run. Remove the ')' that is inside the double quotes.
  9. descalzo

    Ssh

    SSH is not enabled on any of the Free Servers. No exceptions.
  10. descalzo

    I uploaded files and account created splash page is still the index?

    Please clear your browser cache and history. I see your site.
  11. descalzo

    my domain was deleted... help

    Domain name? URL to a page on the site?
  12. descalzo

    Cannot access to the website trought the ip

    That is the IP of your server. What IP were you using before? Does it fail to work with 69.175.122.178 ?
  13. descalzo

    Cannot access to the website trought the ip

    Simple. In shared hosting you cannot access an individual account via the IP by typing it into the address bar/clicking on a link.
  14. descalzo

    Main Domain Problem

    I can see your BTEC Media site using both URLs. Please clear your browser cache and history (and maybe flush your DNS) before checking your site again.
  15. descalzo

    Domain Trouble

    Do you remember what Server you were on? One thing, I show a 301 redirect to cacton.x10.mx , which is not in the system. Make sure you do not have a redirect in .htaccess
  16. descalzo

    Php Script Help!

    You didn't seem to get the message. File uploading/sharing scripts are not allowed on x10hosting.
  17. descalzo

    Php Script Help!

    http://x10hosting.com/terms a link for you. Please note: So the site you are building is in violation of the T.O.S. Not to mention the fact that you will probably end up with copyright infringement too.
  18. descalzo

    mysqldb-python

    Python (and Perl ) on not enabled on the Free Hosting Accounts, so you cannot use Python.
  19. descalzo

    Php Script Help!

    $pwd = $keyfile; $pwd_length = strlen($pwd); for ($i = 0; $i < 255; $i++) { $key[$i] = ord(substr($pwd, ($i % $pwd_length)+1, 1)); It is saying that you are calling the function with $keyfile as an empty string, so $pwd is empty, so $pwd_length is 0, so $i % $pwd_length is...
Top