trleee」的全部文章

使用 Application Loader 上傳至 iTunes Connect

不知從什麼時候開始,我用 Xcode 上傳放了一整天一直無回應(進度條一直沒變化),只好使用 Application Loader 上傳。

Xcode → Product → Archive → 跑完之後會自動開啟 Organizer 的 Archives 分頁。

這時滑鼠右鍵該項目 → Show in Finder → 對 .xcarchive 這個檔案 → 顯示套件內容 → 把在 Products/Applications/ 目錄下的 xxx.app 壓縮 → 把壓縮檔移至桌面(方便上傳而已)

呼叫 Spotlight(上方工具列的放大鏡) → 搜尋 Application Loader 並執行。
接下來的步驟就不用我說了吧! 上傳時間大約等個30分鐘再回來看看~

Xcode 超級基礎常見問題

  1. 部分檔案禁用ARC
    選取專案的Target → Build Phases → Compile Sources → 把要禁用檔案選取按enter鍵填入

    -fno-objc-arc
  2. 加入ASIHTTPRequest出現libxml/HTMLparser.h file not found錯誤
    選取專案的Target → Build Phases → Search Paths → Header Search Paths 填入

    ${SDK_DIR}/usr/include/libxml2

mysql 尋找與取代某個欄位的資料

這些半形字元會影響到解析,所以用了以下方法。

UPDATE TWEVTCAL_ACTIVITY SET content=REPLACE(content, '"', '”');
UPDATE TWEVTCAL_ACTIVITY SET content=REPLACE(content, '&', '&');
UPDATE TWEVTCAL_ACTIVITY SET content=REPLACE(content, "'", "’");
UPDATE TWEVTCAL_ACTIVITY SET content=REPLACE(content, '<', '<');
UPDATE TWEVTCAL_ACTIVITY SET content=REPLACE(content, '>', '>');

安裝 APC (Alternative PHP Cache)

apt-get install php-pear php5-dev libpcre3-dev make
pear upgrade
pecl install apc

apc安裝時會問一些問題,我都按照它預設的回答。

 

vi /etc/php5/conf.d/apc.ini

新增 apc.ini

[apc]
extension=apc.so
; enable APC
apc.enabled=1
; The number of shared memory segments
apc.shm_segments=1
; The size of each shared memory segment
apc.shm_size=64M
; The number of seconds a cache entry is allowed to idle in a slot in case this
; cache entry slot is needed by another entry.
apc.ttl=7200

 

重新啟動載入新設定

service php5-fpm restart

 

寫個php來看看APC有沒有安裝成功

<?php
	phpinfo();
?>

有出現apc就代表成功了,詳細設定還沒研究。