diff --git a/docs/sidebar.md b/docs/sidebar.md index 770424103..fb552c531 100644 --- a/docs/sidebar.md +++ b/docs/sidebar.md @@ -7,6 +7,7 @@ - [Recovering Mii Channel](troubleshooting/recover-mii-channel) - [Recover a Corrupted IOS](troubleshooting/recover-ios) - [Common Issues & Fixes](troubleshooting/common-issues-fixes) +- [Fix Error Code 112-1037](troubleshooting/fix-errcode-112-1037) - **Extras** - [Blocking Updates](extras/block-updates) - [Dumping Wii U Discs](extras/dump-games) diff --git a/docs/troubleshooting/fix-errcode-112-1037.md b/docs/troubleshooting/fix-errcode-112-1037.md new file mode 100644 index 000000000..6483c439d --- /dev/null +++ b/docs/troubleshooting/fix-errcode-112-1037.md @@ -0,0 +1,54 @@ +# How To Fix The Error Code 112-1037 + +This page will guide you through the process of fixing the error code 112-1037. + +### What You Need + +- A working [Homebrew Installation](user-guide/introduction) +- [wupclient.py](https://raw.githubusercontent.com/dimok789/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click OK)** +- The 2.7 release of [Python](https://www.python.org/download/releases/2.7/) + +### Instructions + +1. Install Python 2.7 on your computer + +### Fixing The Error Code + + + +#### **Windows** + +1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC) +1. Launch the Homebrew Launcher and launch Mocha +1. Go back to the Wii U Menu +1. On your computer, open the wupclient.py file with a text editor and change the IP address at line 29 with your console's then save it +1. Open up a command prompt window +1. Use the following command: `cd ` + - Example: cd C:\Users\username\Downloads +1. Use the following command: `py -2 -i wupclient.py` +1. Use the appropriate command depending on the region of your console: + - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644) + - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644) + - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644) +1. If the command worked, you will get the following response: `chmod returned 0x0` +1. The error code should now be gone + +#### **macOS & Linux** + +1. Power on your Wii U and launch the CFW of your choice (Mocha, Haxchi or CBHC) +1. Launch the Homebrew Launcher and launch Mocha +1. Go back to the Wii U Menu +1. On your computer, open the wupclient.py file with a text editor and change the IP address at line 29 with your console's then save it +1. Open up a Terminal window +1. Use the following command: `cd ` + - On macOS, the most common place to find your downloaded files is /Users/username/Downloads + - On Linux, the most common place to find your downloaded files is /home/username/Downloads +1. Use the following command: `python2 -i wupclient.py` +1. Use the appropriate command depending on the region of your console: + - JPN: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001200a/content/pages/index.html", 0x644) + - USA: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001210a/content/pages/index.html", 0x644) + - EUR: w.chmod("/vol/storage_mlc01/sys/title/00050030/1001220a/content/pages/index.html", 0x644) +1. If the command worked, you will get the following response: `chmod returned 0x0` +1. The error code should now be gone + + \ No newline at end of file diff --git a/docs/user-guide/mocha/indexiine/browser-modding.md b/docs/user-guide/mocha/indexiine/browser-modding.md index 57b1f3d33..89b8dc3b7 100644 --- a/docs/user-guide/mocha/indexiine/browser-modding.md +++ b/docs/user-guide/mocha/indexiine/browser-modding.md @@ -42,6 +42,8 @@ Now that you have your NAND backup in case anything goes wrong later, you can in The Homebrew Launcher will now be launched every time you launch the Internet Browser even without an Internet connection. +?> If you're getting the error code 112-1037, please see [this page](troubleshooting/fix-errcode-112-1037). +