1. WP Upgrade 2.1.3 –> 2.3
2. 도메인 추가 구입(bomnal.org) 및 셋팅 완료, 이전 중…
3. 여행 사진 정리(完)
1. WP Upgrade 2.1.3 –> 2.3
2. 도메인 추가 구입(bomnal.org) 및 셋팅 완료, 이전 중…
3. 여행 사진 정리(完)
원본출처 : http://www.nzeo.com/bbs/zboard.php?id=p_etc&no=1180
여기부터
흠냥 원래 공개안할려고 했는데ㅋ
이해안되는부분도 있겠지만 ★☆그냥 따라하세요☆★ 설명은 생략합니다 ★☆
1. 우선 플래시 파일을 만듭니다.
액션스크립트 GetURL 로 원하는 주소를 적습니다. (예를 들어서 http://yahoo.co.kr 로 했다고 합니다)
플래시 파일을 swf로 변환합니다. aa.swf로 만들었다면
이파일을 익스플로어상에서 실행하면 http://yahoo.co.kr 로 이동하겠죠. Continue reading »
블로그 셋팅을 마무리하고 오른쪽 사이드바에 배너를 달다가
@hof 블로그를 통해 Taylor McKnight의 배너 페이지를 알게 되었다.
가보니 블로그에서 많이 쓰이는 80 * 15 사이즈의 배너들이 잘 분류되어 있었다.
geography 범주에는 각 나라와 지역에 관련된 배너들이 있었는데
일본 것은 보이는데 아쉽게도 우리나라 것은 보이지 않는다. Continue reading »
출처: http://www.dhtmlnirvana.com/content/widgets/killautolink/index.html
Configuration
To configure this script follow these steps:
Step 1: Copy the following into the head section of the document
[script type="text/javascript"]
function handleLinks() {
for (i=0; i < document.links.length; i++) {
if (document.links[i].id.substring(0,5)==”_goog”) {
gl= document.links[i].parentTextEdit.createTextRange();
gl.moveToElementText(document.links[i]);
gl.execCommand(“Unlink”,false);
gl.execCommand(“Unselect”,false);
}
}
setTimeout(“handleLinks()”,500);
}
[/script]
Step 2: On the body tag of the html document change it so that the body tag looks like the following;
[body onload="handleLinks()"]
That’s all there is too it. Below is an example containing all the neccassary files in zip format. If you want use the Dreamweaver Extension you are encouraged to donate either by sending an amazon gift certificate to etraversa@dhtmlnirvana.com or by using the paypal dontate link below. It is not a requirement however.
출처: http://paradigma.pt/~vd/wlog/static.php?page=static050303-161253
I’ve added support to sphpblog for random quotes, in a text file, right bellow your blog’s name in header.
Here’s how-to:
- Create one text file named quote.txt, with a couple of lines within.
Put in any place in the sphpblog directory, we’re using themes dir.
- Open themes.php in your themes directory
(example: themes/default/themes.php)
- In the function theme_pagelayout add between:
$page_width = $content_width + $menu_width;
# Random Quote
$quoteFile = “themes/quote.txt”; //File holding quotes
$fp = fopen($quoteFile, “r”); //Opens file for read
$quotecontent = fread($fp, filesize($quoteFile)); // Read File
$quotes = explode(“\n”,trim($quotecontent)); //Put quotes into array
fclose($fp); //Close the file
$rquote = array_rand($quotes); // Random Number
// Begin Page Layout HTML
- In the same function, add between:
[div id="header"]
[ ?php echo($blog_config[ 'blog_title' ]); ?]
[/div]
[div id='rquote'][ ?php echo ($quotes[$rquote]); ?][/div]
[div id="pagebody"]
[table border="0" width="[?php echo( $page_width ); ?]” cellspacing=”0″ cellpadding=”0″ align=”left”]
- Open your’s style.css in your themes directory
(example: themes/default/style.css)
- If you want to have the quote were i have it,
change the #header style and add the bellow #rquote:
#header
{
color: #FFF;
margin: 0px;
padding: 8px 8px 0px 8px;
background-color: #996;
font-size: 17px;
font-weight: bold;
background-color: #996;
}
#rquote
{
margin: 0px;
padding-right: 8px;
text-align: right;
color: #FFF;
font-size: 9px;
font-weight: bold;
border-color: #666;
border-style: solid;
border-width: 0px 0px 1px 0px;
}[/table][/div]
Now you have random quotes, just have to add more lines to quote.txt now
출처: http://www.simplephpblog.com/index.php?entry=entry050319-134729
Good afternoon SimplePHPBloggers!
I have installed a demo version of the current 0.4.4c under development.
It has some important new features, optimizations, and fixings. Unfortunatelly, it has still some problems during installation, that we need to fix.
I want to hightlight:
- Auto parse URL contributed by diegocaro (diegocaro
- Block management enhacement, and theme/color preview by Fco Jesús Gil (ridgarou
You can visually configure which right menu blocks to show (system and custom), in what order, and in a near future, choose between right and left columns.
- Graphic capcha contributed by Oscar Cubo Medina (ocubo
Date: 18/02/2005. If PHP image extension is available, a graphic capcha is shown, else the old text one is used.
- And lots more!
Take a look to it at it!.
Updated on March 22, 2005 – Saturday 9:57 pm
I have updated to 0.4.4d, with some important addons by Jesús Gil, now blocks are successfully created with default values after installation.