영화 “슬품보다 더 슬픈이야기”를 구해서 보려고 했는데 역쉬 Mac에서는 않된다.
그래서 여기저기 뒤져보니까 DivX 설치하라고 해서 설치했다. 그런데 음성이 않나온다.
또 삽질… 해결했다.
http://www.macupdate.com/download.php/21875/get.php?name=a52codec.dmg 를 다운받아서 설치했다.
너무 행복하다. 영화를 볼 수 있어서….
사랑하는 사람한테 Mac에서 영화를 보여줄 수 있게 되서…..
Jul 17 2009
영화 “슬품보다 더 슬픈이야기”를 구해서 보려고 했는데 역쉬 Mac에서는 않된다.
그래서 여기저기 뒤져보니까 DivX 설치하라고 해서 설치했다. 그런데 음성이 않나온다.
또 삽질… 해결했다.
http://www.macupdate.com/download.php/21875/get.php?name=a52codec.dmg 를 다운받아서 설치했다.
너무 행복하다. 영화를 볼 수 있어서….
사랑하는 사람한테 Mac에서 영화를 보여줄 수 있게 되서…..
Jul 04 2009
httpd.conf 설정에 아래 내용을 원하는 형태로 추가하면 된다.
*아파치 버젼만 표시
ServerTokens Minimal
*아파치만 표시
ServerTokens ProductOnly
*아파치 버젼과 OS 표시
ServerTokens OS
*관련 정보 모두 표시
ServerToekns Full
Jul 04 2009
The above must be entered all on one line, with no linebreaks. The above will cause php scripts to search for a directory named “include”, and will look for it under the current directory of the running script in addition to the default, which is to first search the current directory and then search the /usr/local/lib/php directory (which is a system directory that is not writeable by you and is reserved for things like PEAR).
The format of the include_path variable is a list of directories separated with a colon. A “.” (a period) in the include path means the current directory, and allows for relative includes. More information is available here.
Use the function ini_set(). For example if you wanted to set your PHP include_path to “.:../:./include:../include” then you would do this in your PHP code:
ini_set(”include_path”, “.:../:./include:../include”);
You can also use ini_set() to affect other PHP settings like auto_prepend_file, auto_append_file, error_reporting, etc.