Search results

  1. descalzo

    Cron don't work

    On Chopin, Using the Cron Jobs link from cPanel, Unix settings, set to mail to my hotmail account, Timing: */5 * * * 0,1,2,3,4,5 Command: wget -q -O - http://mysite.x10hosting.com/mycronjob.php >> /home/myusername/etc/cronout.txt works fine. Some ideas. 1. Make sure that...
  2. descalzo

    I cant send mails with the function mail()

    It never sends the mail and prints 'El email ha sido enviado con éxito.'? It just redisplays the form? Are you clicking the Enviar button or just pressing 'Enter'? Some browsers submit the form but do not send the button value if 'Enter' is pressed. I usually have a hidden field (named...
  3. descalzo

    Help redirecting bad links.

    Close FileManager Bottom of cPanel page find and click on link that says "reset all interface settings" Click on FileManager icon You should get a File Manager Directory Selection Dialog Click on "Show Hidden Files (dotfiles)" checkbox --and if you want, the "Skip this question" box too...
  4. descalzo

    Help redirecting bad links.

    In .htaccess in public_html add : RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ / [R=301,L] This will redirect them to the new homepage and put yoursite.com/ in the address bar. You can use /newhomepage.php (or...
  5. descalzo

    Word Association

    Houses
  6. descalzo

    I cant send mails with the function mail()

    <?php // Contact subject $subject ="$subject"; // Details $message="$detail"; // Mail of sender $mail_from="$customer_mail"; // From $header="from: $name <$mail_from>"; // Enter your email address $to ='alejandro@tudisenas.com'; $send_contact=mail($to,$subject,$message,$header); //...
  7. descalzo

    15,000 posts!

    How did zen-r get it back if he hasn't made a post since 09-12-2009, 04:49 PM ? Courier New, Size 2
  8. descalzo

    cURL , how to scrape multiple page ?

    And the error message was.........? Did you call curl_close($curlHandle); at the bottom of the loop? Were you using the curl_multi_xxx family of functions?
  9. descalzo

    JS menu won't show but shows

    As a first step, I would remove the stylesheet from the middle of the HTML and either put it in the <HEAD> or in a .css file. Secondly, it seems that the menu is being created before the whole page loads, and when other pieces load, it throws off the location of the menu. The menu should be...
  10. descalzo

    15,000 posts!

  11. descalzo

    cURL , how to scrape multiple page ?

    Do you use cURL to get the base page (the one with the links)? Scrape the links, put them in an array Loop through the array, using cURL to grab the secondary pages. Scrape each of those pages, put the info into the DB. How much code do you have already? Which part of the above is the...
  12. descalzo

    Fantasico Deluxe link not working on C Panel

    Same problem on Chopin
  13. descalzo

    JS menu won't show but shows

    You are talking about the sliding menu on the left that says 'Archive', right?
  14. descalzo

    PHP SQL Output

    If you just want to dump the values, you can use something like require_once( '/path/to/your/mysqlconnection.ini.php') ; # the above connects to the DB and sets $link as the connection handle $export_sql = "INSERT INTO `five` (`id`, `word`) VALUES " ; $sql = "SELECT id, word FROM...
  15. descalzo

    mySQL max packet allowed

    1. The current setting for max_allowed_packet on my account on Chopin is 16777216. Not 8M.
  16. descalzo

    Game: Team A Vs. Team B

    350
  17. descalzo

    E-mail problems

    Admin Fedlerner's Post about the backlog.
  18. descalzo

    Game: Team A Vs. Team B

    345
  19. descalzo

    Game: Team A Vs. Team B

    345
  20. descalzo

    My domain still not pointing to your server.

    I see your x10 site when I type nelsonfnascimento.com into the address bar. But, it seems to point to your public_html directory because it shows a listing of: Index of / cgi-bin/ images/ nelsonfnascimento.com/ postinfo.html (it is x10 because...
Top