I split your posting from the original thread to keep things better organized, hope you don't mind...

I've tried that version of amule on four different machines with different configurations now and can't reproduce your problem but let's go through two problem shooting strategies:
a) Trying to diagnose the problemIf you start amule via the Termial you get a lot more output about what is going on. Since you said you are relatively new to the Mac I'll try to explain step by step:

- start the application "Terminal" which is located in the "Utilities"-folder inside your "Applications" folder
- you start in your home folder and you want to change to your amule folder using the "cd" command: lets say you put amule in a folder "aMule" in your applications folder then you would enter "cd /Applications/aMule" (and hit return

)
- then you need to "cd aMule.app/Contents/MacOS" because this is where the amule executable is
- now you want to start amule with "./amule"
- amule should start now and you should see a lot of output about what amule is doing in the terminal window. if amule stalls again you can post the last two or three output lines here so we have a better idea about where the problem is located
b) Trying to fix itIn rare cases the existing amule configuration files can cause trouble when switching from one version to another. So what we wanna try now is to rename those files so that amule creates new ones upon the next start. (Make sure no version of amule is running before you proceed)
There are two locations for these files:
- inside the "Libray" folder of your home folder is a folder "Preferences", which contains two files: "com.amule.plist" and "eMule Preferences". You now want to rename those using the Finder into something like "com.amule.plist_org" and "eMule Preferences_org".
- the second location is a hidden folder named ".aMule" in your home folder. Since the folder is hidden you can't see it in the Finder, but we can use this as a great opportunity to practice our freshly acquired terminal skills. So switch to terminal again. Just enter "cd" to switch to your home folder. Now use "mv .aMule .aMule_org" to rename this folder so that amule won't use it
- now that we have hidden the old config files from amule we can try to start amule again and see if the problem persists
- in order to restore the old settings (again, while amule is not running) you can just delete the new files in "Preferences" and rename the old ones. To restore the old ".aMule" folder go to the Terminal, use "cd" to make sure you are in your home folder and use "rm -rf .aMule" to delete the new hidden folder. Then use "mv .aMule_org .aMule" to restore the original folder.
Hope this makes sense. Let me now how things work for you.