Search results

  1. descalzo

    How do I get a PDF file I link to not to cache?

    Add the following to your .htaccess file <FilesMatch "\.pdf$"> FileETag None Header unset ETag Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" Header set Pragma "no-cache" Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT" </FilesMatch> This should turn...
  2. descalzo

    Is my cron facility on ?

    A cron command like: /usr/bin/php /home/igor/public_html/my_cron_script.php >>/home/igor/public_html/my_cron_log.txt 2>&1 will log system error messages and any output ( print or echo commands). Adding lines like date_default_timezone_set('America/Los_Angeles'); echo "\nCron job run...
  3. descalzo

    Proxy server accession not available....

    I am behind a proxy and can see your site. I even used a web based proxy, and they displayed your site. The problem is not with x10hosting, it is with your proxy server. Talk to your IT department.
  4. descalzo

    Php mail) finction disbabled.

    1. Hotmail bounces emails from the x10 mail server due to past abuse. Not sure of others (Yahoo). Many others put it into the Spam folder. 2. Content header must be type: text/plain NOT text/html . The mail server will just eat text/html quietly.
  5. descalzo

    Modify Domain

    Modify Main Domain x Use an x10Hosting subdomain as my account's main domain Uncheck the box and the dropdown list will disappear. Then fill in your domain (without the www).
  6. descalzo

    name servers

    Nameservers work (assuming you are talking about qureshi-impex ). The error messages are because your server has not set up the map between your domain name and your account. That takes up to 24 hours and happens to a lot of people. It is due to the fact that so many people add domians on a...
  7. descalzo

    please restart my account as of day 1

    Currently I show your DNS servers to be set to those hosted at dnspark.net They point to the wrong x10 server (ursus.x10hosting.com instead of starka.x10hosting.com) Either switch the DNS servers to ns1.x10hosting.com and ns2.x10hosting.com or tell the dnspark.net nameservers the correct IP...
  8. descalzo

    vBulletin No Licence un-suspension request

    You thought you paid $200 ?
  9. descalzo

    Email functionality doesn't seem to be working

    Change : $headers .= "Content-type: text/html\r\n"; to $headers .= "Content-type: text/plain\r\n";
  10. descalzo

    Can i have my directory files?

    No. And considering that those files might contain usernames/passwords that you have stolen and plan to rip people off, why do you think you have any right to them?
  11. descalzo

    Domain aufschalten

    Nameservern: ns1.x10hosting.com ns2.x10hosting.com Die IP des Servers (stoli.x10hosting.com) ist 69.175.122.17
  12. descalzo

    How long does it take to change domain?

    Where did you buy/register gtkie dot com ?
  13. descalzo

    unable to run php cron jobs

    1. Get Google Apps account for your domain 2. Follow their instructions to use cPanel to set MX records to Google. All incoming mail will be routed to Google Apps account 3. Download and use PHPMailer to send your outgoing mail via STMP thru your Google Apps account.
  14. descalzo

    "Website specified does not exist"

    Try http://mygame.x10.mx/?foo
  15. descalzo

    unable to run php cron jobs

    PHP mail() does not work properly when run as a cron job, period.
  16. descalzo

    Mail support with hotmail

    Hotmail bounces email from the x10hosting mailserver. You should see the returned messages if you go to SquirrelMail via cPanel-->Webmail. Alternative: Create a Google Apps for your domain. You can do it with yoursubdomain.x10.bz etc, it does not have to be a regular top level domain. Follow...
  17. descalzo

    What happened to Mr. Hunter-Killer?

    Racing Stripe
  18. descalzo

    re-open my account

    The system does not show a Free Hosting Account linked to this Forum account. If you had one and it was suspended and then deleted, you are free to sign up for a new account. Any old files/databases would be gone
  19. descalzo

    Can't Install SQL database for drupal. showing error/

    If you are installing it manually, you first use cPanel --> MySQL Databases to create your database, create your database user (write the password down), and add the database user to the database, making sure to check the ALL PERMISSIONS box when it comes up. The database and database user...
  20. descalzo

    mod_rewrite (invisible rewrite)

    RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.+)$ myfolder/subfolder/index.php?url=$1 [L] If the request does not match a file or directory and is not for the favicon, it sticks it at the end for your...
Top