Skip to content

有害部落格同好會

2011/02/28 / 手機相關

在電腦上管理和備份 SMS 簡訊

進入了 Windows Mobile (WM) 世界後,雖然一切都變得更方便、更智慧。但總缺一塊!SMS,Apple 稱為古時代產物的「簡訊」。

似乎只能以整機備份的方式來備份手機內的簡訊,而且在簡訊和電子郵件間的切換也很麻煩!

Microsoft 似乎也終於發現了這一點!宣佈在 Microsoft Exchange 2010 時,會加入手機 SMS 簡訊的管理整合(早就該做的了!竟然還拿此當新功能賣點!得昇級 2010 版本才能享用)。

來介紹目前直接可以使用的工具:Jeyo Mobile Extender v2.5,支援在 Outlook 中管理簡訊,就如同 e-mail 電子郵件一般。

Jeyo Mobile Extender for Outlook v.2.5.1254 產品官方網頁、直接下載

於 Windows Mobile 手機與個人電腦同步 (Activesync) 時,能同步將手機中的簡訊,一併複製到 Outlook 個人資料夾中。並和 Outlook 整合,擁有一致的操作界面,管理電子郵件、簡訊。

“快樂”方法:
If the old patch for version 2.5.1221 tells you “WRONG FILE SIZE or ALREADY PATCHED” then patch the “JME.dll” manually with a HEX-editor. Install the soft.

Open “JME.dll” in install directory with a HEX-editor.

Search for HEX-string “FF 0F 94 C0 8B D8 33 C0 5A 59 59 64 89 10 68”

Replace it with “FF BB 01 00 00 00 33 C0 5A 59 59 64 89 10 68”

Just to clearify: 0 = Zero!
You have to do it 3 times in the file.

Start Outlook.

Press button “About/Register”.
Register with the owner name of your WindowsMobile device (or push “Get from device” if its connected) and type any number you like under “Registration Code”.

2011/02/28 / 手機相關

WM6 取消簡訊自動備份

資料來源: mobile01

簡訊(寄件備份)︰

自己發的簡訊在收件夾及寄件備份預設自動會各留一份

用註冊表編輯器修改以下資料
在

HKEY_CURRENT_USERSoftwareMicrosoftInboxSettings

下面新增一個機碼”OEM”,
在OEM下面再新增一個DWORD值”SMSInboxThreadingDisabled”,數值為1

就不會在收件夾看
到自己寄出的簡訊了

2011/02/28 / 手機相關

HTC Diamond2 相關文章

最後更新日期: 2009/08/31
初版更新日期: 2009/06/28

資料來源: Mobile 01 / 傳說中的挨踢部門

(閱讀全文…)

Continue Reading
2011/02/28 / 手機相關

手動讓 Diamond2 應用程式可以打橫

資訊來源: Mobile01 討論串

HTC Diamond2 手機裡有個水平感測裝置 GSensor ,用來感測手機擺放方向

當手機橫置時,可自動改變應用軟體顯示方式

以下是手動修改方式
(閱讀全文…)

Continue Reading
2011/02/28 / 手機相關

WM6 系列手機鈴聲設定

1. 如何讓簡訊跟鬧鈴可以使用自己的鈴聲

把檔案丟到:檔案總管Windows裡即可

簡訊可支援 mp3 格式
鬧鈴只支援 WAV 格式

2. 鬧鐘只響一次的問題如何解決

設定所有設定系統時鐘與鬧鐘
點選鬧鐘旁邊的鈴鐺圖示,將「重複聲音」打勾即可

3. 使用記憶卡里的鈴聲

在儲存卡里設一個My Ducument資料夾
在My Ducument資料夾再設一個My
Ringtones資料夾
然後把mp3鈴聲丟進去,就可以使用記憶卡里的鈴聲
(儲存卡My DocumentsMy
Ringtones你的鈴聲檔案)

Notice: 目前測試要改成中文名稱,研究中~真怪啊

2011/02/28 / JavaScript, VBScript

用 javascript 抓本機 login AD 帳號

用 javascript 抓本機 login AD 帳號

前提: 本機已經登入 AD

(閱讀全文…)

Continue Reading
2011/02/28 / php

強制變更 mantis 預設 mysql 字元設定

mantis 從 1.1.0x releases 後,已將預設mysql字元改為 UTF8

若 www server 上有特殊設定, 例如將 UTF8 格式轉換成 latin 存入 mysql

可開啟 mantiscoredatabase_api.php
尋找

1
2
3
4
5
6
7
if( strtolower( lang_get( 'charset' ) ) === 'utf-8' ) {
db_query_bound( 'SET NAMES UTF8' );
}
修改為
if( strtolower( lang_get( 'charset' ) ) === 'utf-8' ) {
db_query_bound( 'SET NAMES latin1' );
}

if( strtolower( lang_get( 'charset' ) ) === 'utf-8' ) { db_query_bound( 'SET NAMES UTF8' ); } 修改為 if( strtolower( lang_get( 'charset' ) ) === 'utf-8' ) { db_query_bound( 'SET NAMES latin1' ); }

2011/02/28 / php

mantis AD與DB密碼雙重認證

有兩個 AD 的情況下,分別去兩台不同的 LDAP 主機讀取資料

多此一舉的行為,沒事別這麼搞

====AD與DB密碼雙重認證====

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
修改檔案 core/authentication_api.php 如下:
在  function auth_does_password_match 裡
將
  if ( LDAP == $t_configured_login_method ) {
至
                       return true;
                     }
               }
 
改以以下程式碼取代
      $t_password         = user_get_field( $p_user_id, 'password' );
      $t_login_methods   = Array(MD5, CRYPT, PLAIN);
      foreach ( $t_login_methods as $t_login_method ) {
 
         # pass the stored password in as the salt
         if ( auth_process_plain_password( $p_test_password, $t_password, $t_login_method ) == $t_password ) {
            # Check for migration to another login method and test whether the password was encrypted
            # with our previously insecure implemention of the CRYPT method
            if ( ( $t_login_method != $t_configured_login_method ) ||
               ( ( CRYPT == $t_configured_login_method ) && substr( $t_password, 0, 2 ) == substr( $p_test_password, 0, 2 ) ) ) {
               user_set_password( $p_user_id, $p_test_password, true );
            }
 
            return true;
         }
      }
 
      if ( LDAP == $t_configured_login_method ) {
         return ldap_authenticate( $p_user_id, $p_test_password );
      }
在 function auth_process_plain_password 裡
在 case MD5: 前新增一行程式碼如下
       case LDAP:
在 mantis 目錄底下新增 custom_functions_inc.php,讓使用者可以修改自己的密碼
內容如下
 <?php
 function custom_function_override_auth_can_change_password() {
   return true;
 }
 ?>

修改檔案 core/authentication_api.php 如下: 在 function auth_does_password_match 裡 將 if ( LDAP == $t_configured_login_method ) { 至 return true; } } 改以以下程式碼取代 $t_password = user_get_field( $p_user_id, 'password' ); $t_login_methods = Array(MD5, CRYPT, PLAIN); foreach ( $t_login_methods as $t_login_method ) { # pass the stored password in as the salt if ( auth_process_plain_password( $p_test_password, $t_password, $t_login_method ) == $t_password ) { # Check for migration to another login method and test whether the password was encrypted # with our previously insecure implemention of the CRYPT method if ( ( $t_login_method != $t_configured_login_method ) || ( ( CRYPT == $t_configured_login_method ) && substr( $t_password, 0, 2 ) == substr( $p_test_password, 0, 2 ) ) ) { user_set_password( $p_user_id, $p_test_password, true ); } return true; } } if ( LDAP == $t_configured_login_method ) { return ldap_authenticate( $p_user_id, $p_test_password ); } 在 function auth_process_plain_password 裡 在 case MD5: 前新增一行程式碼如下 case LDAP: 在 mantis 目錄底下新增 custom_functions_inc.php,讓使用者可以修改自己的密碼 內容如下 <?php function custom_function_override_auth_can_change_password() { return true; } ?>

2018/02/19 / Oracle EBS

Oracle form 裡開啟網頁

用途 : 從 web 開啟 oracle form 時, 透過 button 來開啟新的網頁

(閱讀全文…)

Continue Reading
2011/02/28 / Oracle EBS

Oracle Forms Trigger 執行順序

資料來源:https://metalink.oracle.com/

內容下載: Oracle form trigger

文章分頁

  • Previous
  • 1
  • ...
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • ...
  • 20
  • Next

分類

  • 新奇有趣の搶先報導
    • Raspberry Pi
    • 手機相關
    • 推薦軟體
    • 新鮮有趣
    • 生活資訊
  • 想破腦袋の程式技巧
    • Oracle EBS
    • Database
    • Excel, VBA
    • php
    • JavaScript, VBScript
    • VS.NET
    • Others
    • Windows
    • SAP
  • 撩動心弦の短文小品
  • 聚沙成塔の理財守則
  • 不可不知の職場實錄
  • 剎那永恆の生活翦影

近期文章

  • 受保護的內容: 如何透過Personalize功能呼叫另一form來回傳值
  • Win10 / 8 / 7 無法安裝 SSD
  • 受保護的內容: 樹梅派+遠端連線
  • EBS R12 取得客戶的phone, email, URL資料
  • 受保護的內容: 管控Workflow Administrator Role

友站

  • Masaya396's 協奏曲
  • 老塗的咁仔店

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

Tag Cloud

你目前使用的瀏覽器不支援 HTML5 的 CANVAS 標籤。

  • LDAP
  • SAP
  • javascript
  • VB6
  • excel
  • 感情
  • Win7
  • 管理
  • MySql
  • WinXP
  • Oracle DB
  • SQL
  • VBA
  • CSS
  • php
  • VB.Net
  • HTC
  • Oracle EBS
  • EBS 11.5.10
  • EBS 12.1.3
© 2025 有害部落格同好會 - Powered by SimplyNews