Jump to content

jeffreyappel

Members
  • Posts

    70
  • Joined

  • Last visited

  • Days Won

    1

jeffreyappel last won the day on October 13 2014

jeffreyappel had the most liked content!

jeffreyappel's Achievements

Newbie

Newbie (1/5)

1

Reputation

  1. I have completed your survey.Its very slim i've ever seen.
  2. Javascript preprocessing tool allows you to create a label and then goto it using this syntax: [lbl] <label-name> goto <label-name>
  3. The way i solved : <form name="mycombo"> <p><select name="example" size="1"> <option value="#Link1">JavaScript Kit</option> <option value="#Link2">Coding Forums</option> <option> value="#Link3">Dynamic Drive</option> </select></p> <input type="button" name="test" value="Go!" onClick="go()"> <form/> function go(){ location= document.mycombo.example. options[document.mycombo.example.selectedIndex].value }
  4. can you paste here those scripts in a more specific way?
  5. you may find useful information here:eliw.com/presentations/2013/zend13/zend13.scaling.pdf
  6. This is an hardware issue and if the warranty period remain then contact samsung support immediately.
  7. MiniSUSE comes with all the great packages you might need. It offers you a Swiss army knife for all your Linux needs – still it is small enough to fit a CD/DVD or USB drive. You can use it to rescue systems, format drives, check sensors or hack whatever you want. If you are looking for a small, but extremely useful Linux distribution you can get up and running in seconds from the media of your choice, look no further.
  8. It is a known problem with the KDE clock gadget.Check the date command in terminal.If it returns correct time then you have to abide with UTC.
  9. There is a simple trick to get this to work though.Download sendmail.zip from http://glob.com.au/sendmail/ and install it.In the php.ini file edit [mail function] section as follows: [mail function] ; For Win32 only. ;SMTP = ; For Win32 only. ;sendmail_from = Open the sendmail.ini and modify the settings to: smtp_server=mail.yourdomain.com smtp_port=25 default_domain=yourdomain.com pop3_server=mail.yourdomain.com pop3_username=you@yourdomain.com pop3_password=mysecretpassword force_sender=you@yourdomain.com
  10. Remember To prevent abuse for sending spam, many email servers require that the client be authenticated as a legitimate user before relaying mail (forwarding it to the recipient's email server). You have specified credentials in IIS; however, PHP does not make use of them. Here are your options: Instead of the mail() function, use one of the existing PHP mailer libraries that supports SMTP authentication (PEAR Mail, phpmailer, Swift Mailer, etc.). Install and configure msmtp or one of the alternatives (here's how to make msmtp work with PHP). PHP will execute the program, which does support SMTP authentication, whenever it has to send a message if you set sendmail_path accordingly. Change the mail server's configuration to allow relaying mail from the web server's IP address.
  11. In the php.ini (you can find this under "c:\program files (x86)\php\{PHP Version}") change these settings: log_errors = On Then set error_log to syslog for the windows event log: error_log = syslog Or specify a location on disk such as: error_log = C:\Windows\temp\php_errors.log Make sure that the error_log or log_error values aren't being set elsewhere in the file.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.