Search results

  1. descalzo

    FTP "remote info box" problems can't get "test" to work

    I use Filezilla Host: xo1.x10hosting.com -- Not my domain, the server that I am on User: igor -- my cPanel username Password: whatHump? -- my cPanel password. Just using the FTP account that came with the hosting account. _____________________________ Just added a FTP account via...
  2. descalzo

    LOAD DATA INFILE

    Are we able to use the LOAD DATA INFILE MySQL function? Someone seems to have gotten it to run...
  3. descalzo

    I need help please

    You can only access the mySQL database from inside your Free Hosting account (ie phpMyAdmin or a PHP script). No remote access is allowed. Period. No exceptions. If you are trying to create a Database on your server, go to regular cPanel -- not basic. There is an area where you can create...
  4. descalzo

    I need help please

    Adding it where? Exactly what are you trying to do?
  5. descalzo

    LOAD DATA INFILE

    I am not sure, but I would guess that the FILE privilege would be a huge security hole on a shared server and would therefore be disabled.
  6. descalzo

    Site Unavailable

    Works for me now. Didn't earlier. Think it might have had something to do with the domain registration being renewed today/yesterday (WHOIS shows a change today)
  7. descalzo

    Uploading Files to File Manager/ Getting Website Up

    1. Clear your browser cache and history. Close browser, open browser. 2. I can see an Index of / on your site 3. If you want http://YourSiteName.elementfx.com/ to automatically show a "homepage", name the file index.html 4. Best practice: use only lower case letters and numerals in file names...
  8. descalzo

    500 internal server error

    Some plugins might contact Facebook or Twitter to get and display information on your site. Or maybe a weather site to grab and display your local weather. If something happens during the attempt to contact the outside source, you can get a 500 error. Just trying to narrow down the...
  9. descalzo

    500 internal server error

    1. You are both on xo2 2. My test site on xo2 (Drupal, hence PHP and mySQL) is running fine. 3. What sort of sites are you running? Do they contact outside services?
  10. descalzo

    Signup Error

    What sort of issues? When asking for help: 1) Describe exactly what you are trying to do 2) Post any error messages. "Doesn't work" or "Having issues" is not an error message. 3) Describe any other things you have tried that have failed.
  11. descalzo

    Unable to set cookies from php code.

    In your test script, make sure there is nothing before the opening <?php Not a blank line. Not a space. Not a BOM (byte order mark, an unprintable character that some text editors add to the beginning of text documents). If there is anything, then it gets sent to output. Which automatically...
  12. descalzo

    Using own domain (for dummies..)

    Domains and Websites ... Advanced Domain Settings ........ DNS Once you get there, look for something like "Use my own nameservers"
  13. descalzo

    Need help - Addon a Separate Domain

    I do not see any difference. Clear your browser cache and history. Close the browser. Reopen and check the site.
  14. descalzo

    Cannot view my webpage

    It is because you just set up your account. It takes awhile for the system to reconfigure itself so it knows where to find your domain. Give it a couple of hours.
  15. descalzo

    Python MySQL support?

    Python is not supported, period. If your Python scripts run at all currently, there is no guarantee that they will run in the future.
  16. descalzo

    Cron Jobs stopped working since 20/07/14 at 21:10

    Hmmmmmm.... Warning: imagecreatefromjpeg(imagenes/cielomorado.jpg): failed to open stream: No such file or directory in /home/cPanelUserName/public_html/******/******.php on line 6 Did you move/delete the file cielomorado.jpg ?
  17. descalzo

    Cron Jobs stopped working since 20/07/14 at 21:10

    If your jobs don't seem to be doing what you want, you might be getting errors, which you never see because you are throwing away all the output (tail end of command): /home/cPanelUserName/public_html/****/****.php >/dev/null 2>&1 To see the errors that your script might be outputting, use...
  18. descalzo

    Help with MySQL

    From your Free Hosting account, the hostname is localhost If you are trying to connect from outside of your Free Hosting account, you cannot. Access is blocked. No exceptions.
  19. descalzo

    PHP optional query building

    A rough idea -- <!DOCTYPE html> <html> <head><title>Test</title> </head> <body> Hello. Please fill out some of the fields below<br/> <div> <form action="" method="POST"> <input type="text" name="name" /> Name<br /> <input type="text" name="occupation"/>Occupation<br /> <input type="text"...
  20. descalzo

    PHP optional query building

    Are you saying that you want to have a web based form that will query the database? That you will have a form with 50-75 fields? That you want the script to use just those fields filled out?
Top