Search results

  1. descalzo

    PHP email functions doesn't work

    The PHP mail() function is working on your server, Chopin. I just tested it. Check spam folders in your "To" accounts and for returned messages in your "From" accounts. They have to keep tweaking the system because of all the people who come here and use their free accounts as spam vehicles...
  2. descalzo

    Cant access cpanel....

    Your site was found to have links to illegal downloads.
  3. descalzo

    redirect

    Did you add bawwchan.org as a parked domain via the cPanel?
  4. descalzo

    error displaying webpage

    I don't see an index.html when I go to your site. I see an Index of / page. I do get a 500 error when I try to open the cgi-bin page.
  5. descalzo

    Using mail()

    <?php /** * @author Kevin de Leeuw * @copyright 2010 */ function mailouders() { // ADJUST TO AN ACCOUNT THAT YOU HAVE ON YOUR DOMAIN $headers = 'From: kevin@kdl2010.x10.mx' . "\r\n" . 'Reply-To: kevin@kdl2010.x10.mx' . "\r\n" . 'X-Mailer: PHP/' . phpversion()...
  6. descalzo

    Using mail()

    Please show us the script/form involved. The mail system did have a recent problem due to spammers clogging the system, but it is working now.
  7. descalzo

    MYsql host address

    The address is localhost
  8. descalzo

    PHP mail() Function Is Not Working

    The PHP function mail() is working fine on Boru and Chopin. The usual problem on the servers is that it returns True and the mail is not sent. Perhaps it is your code. Did it ever work on your x10hosting account? If so, when did it stop working? Could you supply the code you are using.
  9. descalzo

    Dns?

    Sorry, it doesn't mean that at all. It is the standard error code for when access is denied for any reason (you misspelled the username, wrong password, etc).
  10. descalzo

    Dns?

    I meant for you to use your information (db name, db user, password) to try to connect.
  11. descalzo

    Dns?

    define('DB_NAME', 'doberman_wrdp1'); define('DB_USER', 'doberman_wrdp1'); define('DB_PASSWORD', '********'); define('DB_HOST', 'localhost'); $link = mysqli_connect( DB_HOST, DB_USER, DB_PASSWORD, DB_NAME ); if (!$link) { die('Connect Error (' . mysqli_connect_errno() . ') '...
  12. descalzo

    Simple image display with PHP using regex...

    1. The variable is ultimately inside double quotes, that is all that matters. The code works. 2. If all the images have the same width, fine. Your can hard code it. Otherwise you need more coding to find the width. For a 'simple display script', I did not think it was worth the time. As...
  13. descalzo

    limits

    When they went 'unmetered', it was 10G bandwidth and 1G disc space. While those are not the 'limits', I would consider them guidelines. More importantly, what kind of site are you hosting where you will significantly (say by a factor of 5) go beyond those limits? Remember, proxies, file...
  14. descalzo

    Simple image display with PHP using regex...

    <?php // split the path in two since I use the second half later $doc_root = '/home/cPanelUsername/public_html' ; $image_dir = '/images/goats/' ; $image_dir_path = $doc_root . $image_dir ; // open a handle to the directory $dir_handle = opendir( $image_dir_path ); // initialize counter...
  15. descalzo

    PHP Mail

    It seems to be working now. There was some issues with chopin, starka and stoli today. Massive mail spam. They suspended the accounts involved and cleared over 3,000 spam emails. They manually tried their best to send all the legit ones before they cleared the queue but some legit mail may...
  16. descalzo

    change in .htaccess file - 500 Internal Server Error

    I'm pretty sure that the 'php_value' directive is disabled in the current configuration, which would cause your 500 error. It normally would create an entry in the Error Log, but it didn't on the test site I tried.
  17. descalzo

    External Control of a Domain.

    Maybe if you drew a picture.... You have an x10hosting account and site ABCD.elementfx.com You have a Forumotion forum, EFGH.forumotion.net You registered a domain IJKL.com from Forumotion. It points to your forum. Right? Exactly what do you want to do? Does Forumotion allow you to set...
  18. descalzo

    Cron Jobs unable to run

    You are on the server Boru and it seems to have a problem with PHP cron jobs. Several others have reported problems and I have notified Staff about it. I will get back to you when I have more information.
  19. descalzo

    Security

    They haven't updated the SSL certificate for the server yet. That is why you are getting those warnings. Try using: http://chopin.x10hosting.com:2082/ It isn't "as secure as SSL", but you won't be getting the warnings.
  20. descalzo

    re Suspension

    It accepts most PHP files. It does not accept proxy scripts. x10hosting's TOS
Top