Skip to content
Archive of posts tagged pixelpost

Pixelpost : Adobe Photoshop Lightroom Export Plugin

Pixelpost 에 사진을 올리기 위해서는 그동안 아래 절차를 따랐습니다.

RAW 로 찍은 사진 ==> Lightroom 에 import ==> 편집 ==> Export to JPG ==> Resize by photoWorks ==> Upload to PhotoBlog

Pixelpost addon 중에서 lightroom export plugin 이 있더군요. 이를 이용하면 아래와 같이 export menu 에 한 방에 photoBlog 로 upload 할 수 있네요. 캬 좋다…

RAW 로 찍은 사진 ==> Lightroom 에 import ==> 편집 ==> Export to PhotoBlog ( JPG ==> Resize ==> Upload to PhotoBlog)

http://www.pixelpost.org/extend/addons/adobe-photoshop-lightroom-export-plugin/

Installation Instructions:
1. Open the file ‘pp_upload.php’ and specify a Post Key.
2. Copy the file ‘pp_upload.php’ to the ‘admin’ folder in your Pixelpost installation.
3. Copy the file ‘admin_pp_upload.php’ to the ‘addons’ folder in your Pixelpost installation.
4. Copy the folder ‘pixelpost.lrdevplugin’ to the proper location:
MAC: ~/Library/Application Support/Adobe/Lightroom/Modules/
WINDOWS XP: C:\Documents and Settings\{your_username}\Application Data\Adobe\Lightroom\Modules\
WINDOWS VISTA: C:\Users\{your_username}\AppData\Roaming\Adobe\Lightroom\Modules\
If the ‘Modules’ folder doesn’t exist, you will need to create it manually.
5. Login to your Pixelpost Admin, and go to the ‘Addons’ Page.
6. Turn the Addon ‘External App Upload’ ON.
7. Copy the listed Upload URL & Post Key from the Addons page
8. Open up Lightroom, go to File > Export
9. Choose ‘Export to Pixelpost’ from the list on the left
10. Copy/paste the Post Key & Upload URL from the Addons page into the appropriate box.
Enjoy!
Plugin Features:

Pixelpost 에서 한글 깨지는 문제 수정

PhotoBlog 로 사용되는 pixelpost 설치를 하면서 DB 이전하면서 이전에는 한글문자처리가 정상적으로 잘 되다가, 갑자기 글자가 깨져서 보여서 찾아보니깐 해결책이 있네요.

이제 시작하는 사진 취미이지만 재미있게 해보려고 합니다. :)

http://bit.ly/6QMMV0

[Solution]
1.Open includes/functions.php
2. Search “function start_mysql”, then you will find it at about Line 492.
3. go to the end of this function, add the following line:
mysql_query(”SET CHARACTER SET ‘utf8′”); //added by QmQ
4. save,upload and overwrite the old function.php file.

[Solution]1.Open includes/functions.php2. Search “function start_mysql”, then you will find it at about Line 492.3. go to the end of this function, add the following line:mysql_query(”SET CHARACTER SET ‘utf8′”); //added by QmQ4. save,upload and overwrite the old function.php file.

function start_mysql($config_file,$request_uri)
{
	global $pixelpost_db_host, $pixelpost_db_user, $pixelpost_db_pass, $pixelpost_db_pixelpost;
	$dir = 'templates';
	if (!file_exists($dir ."/splash_page.html")) {
		$dir = '../templates';
	}

...

	if(!mysql_select_db($pixelpost_db_pixelpost)) {
		if($request_uri == 'admin') {
			header("Location: install.php?view=db_fix");
			exit;
		}else{
			show_splash("Select DB Error: ". mysql_error()." Cause #2",$dir);
		}
	}
	mysql_query("SET CHARACTER SET 'utf8'"); //added by QmQ <== Add this !!!
}