Search results

  1. D

    Boru server time off by one hour

    Bump
  2. D

    Have I done something stupid?

    Sometimes it takes the system a while to update the virtual host list. That is why you are getting the defaultwebsitepage.cgi if you go to your domain and a 404 error if you try to find any interior page. Seems to clear up in 12-24 hrs. Or not.
  3. D

    Untrusted Connection

    Unfortunately they have not updated the SSL certificate for the servers. So, yes, we get that message when we try to use the https URL to log into the cPanel. Add the exception once should work. Still more secure than the http URL.
  4. D

    Can't access MySQL database from cron job

    <?php define('DB_NAME', 'dlukin_foo'); define('DB_USER', 'dlukin_foo'); define('DB_PASSWORD', 'TheSecretWord'); define('DB_HOST', 'localhost'); $link = mysqli_connect( DB_HOST, DB_USER, DB_PASSWORD, DB_NAME ); if (!$link) { die('Connect Error (' . mysqli_connect_errno() ...
  5. D

    My suspended account

    Once they have deleted your Free Hosting accout (at least 14 days, probably longer), you can sign up for another Free Hosting account. But make sure to read the Terms of Service and follow them.
  6. D

    Primary domain change

    Tell them exactly what you want.
  7. D

    Can't not create mysql database on my Cpanel

    cPanel --> Remote MySQL The list of Remote Hosts should look something like: 10.33.248.% 10.33.249.2 192.168.1.% int.boru.x10hosting.com int.mysql.x10hosting.com were the one with 'boru' has your server name instead.
  8. D

    Boru server time off by one hour

    Yes, and one of your Staff says that it is set to Eastern Standard Time and then showed it is set to Eastern Daylight Time. The time is one hour off. Period.
  9. D

    Error in DB access!

    Some things to try: 1. Use PHPMyAdmin in cPanel and make sure the db is there 2. MySQL Databases in cPanel, make sure the Remote Hosts list looks something like: 10.33.248.% 10.33.249.2 192.168.1.% int.boru.x10hosting.com int.mysql.x10hosting.com were the one with 'boru' has your server name...
  10. D

    Server time on Boru off by 1 hour (still)

    If the server doesn't change for DST, why, according to Brandon, is it showing the correct DST time? Maybe the server time should be set to Standard Time? ---------- Post added at 12:26 PM ---------- Previous post was at 10:46 AM ---------- Just realized. It look like you posted this at...
  11. D

    Server time on Boru off by 1 hour (still)

    Why don't you run something from the Web? I'd don't care what the system clock says. When you run it through Apache and PHP or Perl, it is off by one hour. Period. Perl: #! /usr/bin/perl use CGI::Carp qw(fatalsToBrowser); @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep...
  12. D

    Server time on Boru off by 1 hour (still)

    http://x10hosting.com/forums/free-hosting/136485-help-me-time-display-incorrect.html#post741479 Apparently your servers do not know what time zone they are in. That, or their time setting is off for the timezone they "think" they are in.
  13. D

    Help me - Time display incorrect

    $timezone_identifier = 'America/Los_Angeles'; date_default_timezone_set( $timezone_identifier ); $dt = date('l jS \of F Y h:i:s A'); echo $dt ; Displays the time an hour fast. ie, shows 3:50 pm when it is really 2:50 pm PS: $tz=date_default_timezone_get(); echo $tz...
  14. D

    Help me - Time display incorrect

    Where are they located, Halifax? I am in California and they display 4 hours past me.
  15. D

    I can not edit my web page

    http://www.radenko.tk/sohoadmin/index.php
  16. D

    free sites visitor privacy policy

    Clear all your cookie. Visit you x10hosting site. Unless you are using cookies yourself, you should not see any cookies sent by x10hosting. At least I don't on my site or my friend's.
  17. D

    Can't Connect Remote MySQL

    You are not allowed to access x10hosting's MySQL servers from outside the system. I am pretty sure that the other direction, accessing a remote MySQL from a script on x10hosting is blocked too, mainly due to the port(s) being blocked.
  18. D

    Strange cron job error

    Boru server cron command: /usr/bin/php /home/username/public_html/cronscript.php >>/home/username/public_html/cronlog3.txt 2>&1 Script does not run. cronlog3.txt has the following error output: /usr/bin/php: error while loading shared libraries: libpspell.so.15: cannot open shared...
Top