Search results

  1. descalzo

    My site is blank?

    Your site is there. Just loads very slowly.
  2. descalzo

    My site is blank?

    Your site loads extremely slowly for me (blank screen), finally loads fully, and then IE7 shows a JavaScript error: Line 7: Char: 1 Error 'Shadowbox' is undefined. Line 7 is Shadowbox.init() and I guess it is supposed to be defined in shadowbox.js which you load just above it. And I...
  3. descalzo

    mail() function

    The mail() function for PHP works on free/paid accounts. But be aware that there have been issues with people using outside email addresses (ie their gmail or hotmail account) in the "From" header. It is best to use an email account from your x10 account. Or are you asking for help to...
  4. descalzo

    Word Association

    Paris
  5. descalzo

    Account suspension

    It looks like it might have been terminated.
  6. descalzo

    in IE input password is displayed shorter than input text

    Use CSS to set the width: <style type="text/css"> input.twentywide { width: 20em ; } </style> ... Email <input type='text' class='twentywide' name='email'><br /> Pass: <input type='password' class='twentywide' name='pass' ><br />
  7. descalzo

    Crons

    If the time component is * * * * * , that is every minute. They do not allow that.
  8. descalzo

    Crons

    With the tweaking of the servers that the admins have done, I am not sure what might have changed. For awhile, some people could not get php cron jobs to run on some of the free servers. Almost like the PHP cli was disabled. Ideas: 1. Recheck the path. On Chopin it is /usr/local/bin/php 2...
  9. descalzo

    SAT's

    They really don't have the time or the resources to do in depth screening. While imperfect, SATs do help measure the ability of students to pass college level courses. High School grades can be horribly inflated. Recommendations depend on how good a writer the source is.
  10. descalzo

    Crons

    Nature of the crons? wget or php or something else? Any error e-mails? Crons on Chopin are working fine.
  11. descalzo

    Need some help

    When in doubt, Google it . The articles seem to point to a database problem.
  12. descalzo

    Help, required

    1. How big is the file? 2. What error do you get from Filezilla and what error do you get from FileManager?
  13. descalzo

    White box again !!

    You could start by going to the site and removing all your files. At least take your index page down. PS. You were warned.
  14. descalzo

    White box again !!

    Perhaps one of the files you are uploading has a virus in it. Or the program you are using to upload the files is infected. Did you check all your files before you uploaded them? Did you run a scan on your computer? Do you have any "free softare" on your computer that really isn't "free"...
  15. descalzo

    Need some help

    1. cURL works 2. wget is a shell command and the PHP functions that use shell commands are disabled. But if you ever need to use wget directly in a cron job, it does work that way. 3. DOMDocument works. For future reference, the quickest way to see if a PHP feature is enabled on your...
  16. descalzo

    php copy

    The script that is linked to has too many problems. Why use mysql_real_escape_string() if you aren't going to connect to mySQL? filesize( $url ) fails with x10's settings. You either have to load until you get to your size limit and then fail, or send a HEAD request to find out the size of...
  17. descalzo

    PHP creating folder help

    1. Double check $_GET['username'] to make sure you are not hacked. if( isset( $_GET['username'] ) && strlen( trim( $_GET['username'] ) ) > 0 ){ $user = trim( $_GET['username'] ) ; } else { ## handle blank username } if( ! ctype_alnum ( $user...
  18. descalzo

    Delete my account!!

    If the files on your computer are infected, then when you create a new account and upload them, you will have the same problem as before. If you used a "free" copy of some software to create the site on your computer, that might be the source of the problem. I suggest running a virus scan...
  19. descalzo

    PEAR Packages

    It should be get_include_path(), so //Set PEAR Directory set_include_path('/home/openforum/PEAR/PEAR' . PATH_SEPARATOR . get_include_path());
  20. descalzo

    mail() function not working - unable to create views in mysql DB

    A problem seems to arise when the "From" header does not match one of the email accounts for your domain. The script works for awhile, and then the system stops sending the mail. If you are using a gmail or hotmail account as the "From", try creating an email account in your domain and using...
Top