Search results

  1. descalzo

    Unable to login to account

    I wonder about the index.html?post_login=29842510665500 It seems like the system is logging you in (it does not say your login attempt failed) but then kicking you out immediately because it does not think you are logged in. I don't get that post_login string on anything when I am in...
  2. descalzo

    PEAR Packages

    /usr/local/bin/php == `which php` PHP 5.2.10 (cli) (built: Jul 15 2009 21:06:27) On Chopin.
  3. descalzo

    sendmail question

    From reading some other posts, it seems that the "From" field might be the culprit. What are you using for the setting now? Maybe try with another email address.
  4. descalzo

    white box

    Maybe someone should look into what happened. We had someone here be the victim of an iframe injection virus awhile back. Also, does it make any sense that he would come here and ask for help to fix the problem?
  5. descalzo

    my account doesnt have a domain registered to it.

    Sorry, I go to his page clicking on his link and find "Domain Available" I just grabbed it via cURL from a script and it shows "Domain Available". Are you guys sure you see something other than a "Domain Available" page? To make it clear, I am going to http://honors291g.x10hosting.com/
  6. descalzo

    uploading issues

    Try clearing your browser's cache. That is usually the problem with seeing old content. Sometimes just adding a '?' to the end of the address, ie www.yadda.com/index.html? is enough to force the browser to grab an updated copy
  7. descalzo

    AJAX file upload system (PHP)

    You are making just a regular POST with your Ajax. Not a file upload. If you put in some debugging code, you might see that $_POST['uploaded'] is set to the proper value, but $_FILES['uploaded'] is empty, because it was not a file upload. I am not 100% sure, but I do no think you can do a...
  8. descalzo

    Perl error 500

    I usually run this on any new server... test.pl #! /usr/bin/perl use CGI::Carp qw(fatalsToBrowser); print "Content-type: text/html\n\n"; print "<HTML>\n"; print "<HEAD><TITLE>Hello World!</TITLE></HEAD>\n"; print "<BODY>\n"; print "<H2>Hello World!</H2> <br /> \n"; foreach $key (sort...
  9. descalzo

    Perl error 500

    In development, I always try to start my web based perl scripts with: #! /usr/bin/perl use CGI::Carp qw(fatalsToBrowser); print "Content-type: text/html\n\n"; The header must be the first output, and the Carp usually gives more info on errors. Also, if you uploaded the file...
  10. descalzo

    Happy birthday to Anna!

    34 ? Happy Birthday. (I just wished a dancing gerbil a happy birthday?)
  11. descalzo

    Word Association

    Fantastic
  12. descalzo

    Need simple ajax/php help

    Two problems..... The first, you are sending a request for a file but you are doing nothing with it. You have to include code to take the returned text and do something. clienthint.js var xmlhttp function sub(){ xmlhttp=GetXmlHttpObject(); var url="gethint.php"; #### MINOR ERROR...RUNS...
  13. descalzo

    pb PHP using mysql prepare statement

    1. session_start(); $ins = $dbh->prepare("INSERT INTO ayant-droit (utilisateur, upass, service, creation, limite, RV) VALUES(?, ?, ?, ?, ?, ?)"); ..... $con = mysql_connect("localhost", "user**", "pw**"); $db = "jyc_ayantdroit"; if (!$con) {die('Connection impossible : ' ...
  14. descalzo

    is x10hosting support rapidleech

    A no-no. Terms of Service. Read them and follow them. Just check this forum for the wailing and gnashing of teeth of those who have not and have lost all their files and databases.
  15. descalzo

    Word Association

    Beast
  16. descalzo

    PHP file upload problem

    Add debugging code to see what the server thinks certain values are ...... <?php if (($_FILES["file"]["type"] == "application/pdf") && ($_FILES["file"]["size"] < 200000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"...
  17. descalzo

    Is mysql down

    mySQL is working fine on my site on Chopin right now.
  18. descalzo

    Account supend due to maximum allowed cronjobs

    No. That would run it at 30 minutes past the hour every hour (works out to once every 60 minutes). What you need is either of: 0, 30 * * * * */30 * * * * This might result in two of his cron jobs (the other one being every 2 hours) going off at the same time. To avoid that, he...
  19. descalzo

    Custom 404.php?

    Not applicable.
  20. descalzo

    Site down

    For a few minutes my site could not be found (IE explorer message, not a x10 404 page). Now it is fine. Am on Chopin.
Top