jeffreyappel
Members-
Posts
70 -
Joined
-
Last visited
-
Days Won
1
Everything posted by jeffreyappel
-
I have completed your survey.Its very slim i've ever seen.
-
Can an anchor jump to a scroll position rather than anchor element?
jeffreyappel replied to galvin's topic in HTML Help
Javascript preprocessing tool allows you to create a label and then goto it using this syntax: [lbl] <label-name> goto <label-name> -
How can i code dropbox with links and download button
jeffreyappel replied to adamsevera's topic in HTML Help
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 } -
Someone that can help me witch C#
jeffreyappel replied to tkzone's topic in Other Programming Languages
Why don't you use apache like local server? -
can you paste here those scripts in a more specific way?
-
Horizontal scaling (how to keep code identical?)
jeffreyappel replied to arbitrageur's topic in Apache HTTP Server
you may find useful information here:eliw.com/presentations/2013/zend13/zend13.scaling.pdf -
running smart in OpenSuse 13.2 - or on Gparted-Live DVD
jeffreyappel replied to Maze's topic in Linux
Use this command: smartctl -l selftest <device> -
notebook samsung q 210 has got no brightness - nvidia issue!?
jeffreyappel replied to Maze's topic in Linux
This is an hardware issue and if the warranty period remain then contact samsung support immediately. -
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.
-
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.
-
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 [email protected] pop3_password=mysecretpassword [email protected]
-
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.
-
Detecting malware in script which generate spam.
jeffreyappel replied to donkerg's topic in Microsoft IIS
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. -
.htaccess can't show my 503 custom error page
jeffreyappel replied to holly9's topic in Apache HTTP Server
can you mention which web server are you using? -
htaccess help with allow/disallow ip
jeffreyappel replied to benoit1980's topic in Apache HTTP Server
If everything is fine then what to do next? -
if ($this->validate_ip($ip)) return $ip; } } } if (!empty($_SERVER['HTTP_X_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_X_FORWARDED'])) return $_SERVER['HTTP_X_FORWARDED']; if (!empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && $this->validate_ip($_SERVER['HTTP_X_CLUSTER_CLIENT_IP'])) return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP']; if (!empty($_SERVER['HTTP_FORWARDED_FOR']) && $this->validate_ip($_SERVER['HTTP_FORWARDED_FOR'])) return $_SERVER['HTTP_FORWARDED_FOR']; if (!empty($_SERVER['HTTP_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_FORWARDED'])) return $_SERVER['HTTP_FORWARDED']; // Return unreliable IP address since all else failed return $_SERVER['REMOTE_ADDR']; } /** * Ensures an IP address is both a valid IP address and does not fall within * a private network range. * * @access public * @param string $ip */ public function validate_ip($ip) { if (filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6 | FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) === false) return false; self::$ip = $ip; return true; }
-
how to disable redirect html file on a folder with .htaccess
jeffreyappel replied to septiy23's topic in Apache HTTP Server
commented the redirection directive in httpd.conf file -
Use either 301 (Permanent) Redirect or 302 (Temporary) Redirect in the .htaccess file.This example may direct you: # This allows you to redirect your entire website to any other domain permanently. Redirect 301 / http://mt-example.com/ # This allows you to redirect your entire website to any other domain temporarily Redirect 302 / http://mt-example.com/
-
You may try GitHub's auto-changelog-hook
-
finding the passphrase in filezilla - with commandline
jeffreyappel replied to Maze's topic in Apache HTTP Server
Are you indicating SFTP? If so linux has an OS-wide standard location for stored SFTP host keys. -
Its look like you need to put some code here that could be an aid to explore the problems.