Search results

  1. descalzo

    NOOB Need Help

    Not sure, but can tag names have spaces in them? If so, can that parser handle them?
  2. descalzo

    Change free domain name

    What would you like it to be changed to?
  3. descalzo

    Website is down?

    creativethinking.x10.mx shows an empty (except cgi-bin) Index of / page for me.
  4. descalzo

    PHP Mail Function Not Working?

    Do you have an email account named "noreply@iharmi.elementfx.com" on your account?
  5. descalzo

    PLEASE HELP ASAP! URGENT!

    Did some research and I guess I was remembering last year when there was a problem with CURLOPT_FOLLOWLOCATION because safe_mode was enabled on one server.
  6. descalzo

    trying to figure out Futures and Observables

    trying to figure out Futures and Observables
  7. descalzo

    3 Free MySQL Databases?

    cPanel will list 4 as the limit because it thinks that you can have 2 mySQL and 2 Postgres databases. (apparently no way to configure cPanel differently) x10hosting does not offer Postgres. So, actually, you only have 2 databases.
  8. descalzo

    3 Free MySQL Databases?

    When I signed up (2009), you were allowed 3. This is when bandwidth/disk space was limited. (package adfree/adfree) Then they changed to unmetered accounts (package adfree/infinity) and reduced the number of databases to 2. Other resources were similarly decreased. A trade off. Those rules...
  9. descalzo

    Don't know the official name, dispersing comments upon multiple pages

    The term you should Google is "pagination" ... along with terms like PHP and mySQL
  10. descalzo

    can i use phpmailer?

    You can use various PHP functions to get much of what phpinfo shows. I have a script that uses PHPMailer to send mail via SMTP and a Google Apps account via port 465. Used to work. No longer. Seems they blocked the ports.
  11. descalzo

    can i use phpmailer?

    My mistake. Forgot that I had used an .htaccess override in my test directory to move the version back when that was causing problems. Now the scriptlet shows 5.4.19 cPanel is still showing the older version, but that might just be for cPanel itself.
  12. descalzo

    PHP create image functions

    That code looks like C#. Won't run on the servers here.
  13. descalzo

    can i use phpmailer?

    cPanel -> Left column -> a bit past halfway down -> PHP version 5.3.27 (this is on Vox, but all Free servers should be the same) Otherwise, just create a version.php file with: <?php echo phpversion() ; ?>
  14. descalzo

    Can't access site

    I show the nameservers for that domain as belonging to CloudFlare, so the problem would be there. A little while ago, x10hosting.com (which also uses CloudFlare) had a similar problem.
  15. descalzo

    Help inserting Current date into Database

    <?php $today = date("Y-m-d"); $dbh = new PDO('mysql:host=localhost;dbname=test', 'dbAdmin', '#######'); $stmt = $dbh->prepare("insert into TestGuest(Name, Date, Comment) values (?,?,?)"); $stmt->bindParam(1, $Name); $stmt->bindParam(2, $today); /* Change here */ $stmt->bindParam(3, $Comment)...
  16. descalzo

    Site not working !!!

    1. Clear your browser cache and history. Close your browser. Open your browser. Then check your site.
  17. descalzo

    Site not working !!!

    I do not see any SMF or PHPBB on your site.
  18. descalzo

    Help inserting Current date into Database

    $Date = $_POST["date"]; Where do you have a "date" field in your form? If you just want today's date... use PHP to grab the system date and then format it http://php.net/manual/en/function.date.php as a string to satisfy mySQL http://dev.mysql.com/doc/refman/5.1/en/date-and-time-literals.html...
  19. descalzo

    little confused at what to do NEED HELP !

    Right now I do not see any SMF on the site but you left some redirection which is messing things up. Did you add the custom domain as an add on? How did you install SMF?
  20. descalzo

    I think I require assistance..

    http://network-tools.com/default.asp?prog=express&host=chuckspecialforces.us https://www.whatsmydns.net/#NS/chuckspecialforces.us As of right now, both show that GoDaddy has not changed the settings. The nameservers coming up are theirs, not x10hosting's.
Top