iPhone Hacking - Custom Ringtone and SMS Notification
Posted by Mr. IT Guy | Filed under Howto, IT in General, Mac OSX, Microsoft
Following up on the earlier iPhone hacks is customizing the most common audio: ringtone and SMS notification. Apple has locked down custom ringtones and profit from them. The biggest problem is, their selection is scarce and sucks. Here’s a simple guide on how to upload the Ringtones:
- Choose an MP3 file and trim it to 30 seconds or less - I use Audacity (download link) to do it
- Import that MP3 into iTunes
- Goto iTunes -> Preferences (for Mac) or Edit -> Preferences (for PC)
- Navigate to Advanced -> Importing tab and set the “Import Using:” to AAC
- Find the trimmed MP3 file inside iTunes, right click and choose “Convert Selection to AAC”
- Right click the AAC version of the file and choose “Get Info”
- Note the path to the file as indicated by the “Where” section under the “Summary” tab
- Navigate to the location of the file and copy it to desktop
- Change the extension of the copied file to “.m4r”
- Open the files in iTunes and it should be automatically inserted under Ringtones category, which then can be transferred to iPhone
NOTE: I have tried to use “SoundConverter” and set the file type to be m4a. This actually doesn’t work. When I did it that way, the file will be uploaded but won’t be able to be played. It might have something to do with the file size generated by “SoundConverter” being too large. Read the rest of this entry »
Tags: hacking, iphone, mac, ringtone, windows
HOWTO: Fix Apple’s WebKit and JavaScriptCore Framework Error
Posted by Mr. IT Guy | Filed under IT in General, Mac OSX, Operating System
The error message:
1 2 3 | Symbol not found: __ZN3KJS11Interpreter4markEv Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore |
The probable cause:
All fingers seems to point to the Safari and Security update. This happens mostly on Tiger system, but it happens on a brand new Macbook on the way being updated to the latest version after opening the box.
Resolution:
This error is solved by replacing the Webkit.framework and JavaScriptCore.framework; however there are not that many walkthrough on how to replace the frameworks. Here’s a guide on how to replace the framework:
- Download Pacifist
- Download Leopard 10.5.4 Combo Update or Tiger 10.4.11 (Intel) Combo Update or Tiger 10.4.11 (PPC) Combo Update
NOTE: This method has only been tested and confirmed on the Leopard version. The tiger version is only an educated guess - Open pacifist (trial version is okay) and use it to open the package (the .pkg file that is available after mounting the 10.5.4 combo update)
- Navigate to find the System/Library/Framework both in the Pacifist and Finder
- Drag and drop the Webkit.framework and JavaScriptCore.framework from the Pacifist to the Finder (admin password will be asked, confirm file replacement as needed)
- Restart your computer
Tags: Frameworks, Howto, JavaScriptCore, Mac OSX, webcore
SMTP Auth on Ubuntu with Postfix Problem
Posted by Mr. IT Guy | Filed under IT in General, Linux
Problem: postfix/smtpd[12563]: warning: unknown[192.168.1.126]: SASL PLAIN authentication failed: authentication failure
Solution: Change the line that says
MECHANISMS="pam"
in /etc/default/saslauthd to
MECHANISMS="shadow"
Problem: postfix/smtpd[16619]: warning: SASL authentication failure: Password verification failed
Solution: Change /etc/init.d/saslauthd line from
PIDFILE=$RUN_DIR/saslauthd.pid
to
PIDFILE="/var/spool/postfix/var/run/${NAME}/saslauthd.pid"
and set ownership to group sasl then put ther user postfix in group sasl




