Recent content by fortwienix

  1. F

    Close account

    thank you for your response. where should I place the (X)? Of course I know that all data is lost once the account is canceled, this is indeed my attempt. Best regards, Stephan
  2. F

    Close account

    Dear Ladies and Gentlemen, I would like to delete my account entirely from the x10hosting platform. Can you tell me how to proceed or even delete it? Thank you. Best regards, Stephan
  3. F

    Line break while writing txt file using php & form data

    A normal "\n" in double quotes should do the trick. $fp = fopen('your_file_name.txt', 'a+'); fputs($fp, $formfield_1."\n".$formfield_2."\n"); fclose($fp); "\r\n" is needed on Windows based systems.
  4. F

    Is there a way to enter command line mode?

    You can create a little script of your own and run it via the web server. Inside the script place someexec('som command', $output) calls and afterwards check the $output by using var_dump($output); or print_r($output, true);. Some mediawiki PHP scripts that must be executed from the command...
  5. F

    Cron trouble

    Each script that runs in a cron job must also run when you put the command directly at your console. If you don't have shell access then try to use the exec function of php. Try to capture all output of the script. In the exec call you would do something like: exec('/usr/local/bin/php...
  6. F

    Send Mail from Diffenet Account PHP

    try to do ini_set('sendmail_from', 'me@domain.com'); and optional: ini_set("SMTP","smtp.domain.com" ); before calling mail(). If that doesn't work, you can make an SMTP connect to the server where your mail account is hosted. That needs of course username and password in your script that is...
  7. F

    PHP mail() hiding recipients

    Another possibility would be to send an email to each user. Put the recipients in a list and then iterate over the list and fill the To: header with each recipient. The disadvantage is that you send an email for each recipient (creating more traffic). The other proposed solution sends one mail...
  8. F

    Signup email not received at gmail?

    Actually the mail was send all the times. I am using another freemail account which forwards then the mail to the account that i am currently using (gmail). For some reason I forgot to check the forwarding account which put the mail into the spam folder instead of forwarding it. I did so only...
  9. F

    Signup email not received at gmail?

    Hello, about an hour ago I signed up for the free hosting service but until now the signup email with the activation code has not been arrived in my email account yet. I went to the login site and send again the activation email. Nothing. I also checked the spam folder with no success. Are...
Top