Add page on how to find the IP address of a Wii U

along with a modified wupclient.py we are also now using the latest release of Python (3.8)
pull/4/head
Elpunical 4 years ago
parent ada04ea967
commit a6c0b660aa
No known key found for this signature in database
GPG Key ID: A83AFC22339F8939

@ -0,0 +1,30 @@
# How To Find The IP Address of your Wii U
---
Quick guide on how to find the IP address of your Wii U console.
### What You Need
1. [FTPiiU](https://apps.fortheusers.org/wiiu/ftpiiu)
- Extract the `ftpiiu.zip` file to the root of your SD Card
### Instructions
1. Launch the Homebrew Launcher
1. Launch FTPiiU
1. The IP address of your Wii U will be displayed at the bottom of the screen
1. To exit FTPiiU, press the HOME button
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination@2/dist/docsify-pagination.min.js"></script>
<div class="docsify-pagination-container">
<div class="pagination-item pagination-item--previous">
<a href="#/troubleshooting/fix-errcode-112-1037">
<div class="pagination-item-label">
<svg class="icon" width="10" height="16" viewBox="0 0 10 16" xmlns="http://www.w3.org/2000/svg">
<polyline fill="none" vector-effect="non-scaling-stroke" points="8,2 2,8 8,14"></polyline>
</svg>
<span>PREVIOUS</span>
</div>
<div class="pagination-item-title">Fix Error Code 112-1037</div>
</a>
</div>
</div>

@ -5,12 +5,12 @@ 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/)
- [wupclient.py](https://raw.githubusercontent.com/Elpunical/mocha/master/ios_mcp/wupclient.py) **(right-click -> Save link as... -> Click OK)**
- The latest release of [Python](https://www.python.org/downloads/)
### Instructions
1. Install Python 2.7 on your computer
1. Install Python on your computer
### Fixing The Error Code
@ -21,11 +21,12 @@ This page will guide you through the process of fixing the error code 112-1037.
1. Power on your Wii U
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 <directory>`
- Example: <code>cd C:\Users\username<wbr>\Downloads</code>
1. Use the following command: `py -2 -i wupclient.py`
1. Use the following command: `py -3 -i wupclient.py`
1. Enter the IP address of your Wii U
- Don't know how to find it? Read [this](extras/find-wiiu-ip-address)
1. Use the appropriate command depending on the region of your console:
- JPN: <code>w.chmod("/vol<wbr>/storage_mlc01<wbr>/sys/title/00050030<wbr>/1001200a/content<wbr>/pages<wbr>/index.html", 0x644)</code>
- USA: <code>w.chmod("/vol<wbr>/storage_mlc01<wbr>/sys/title/00050030<wbr>/1001210a/content<wbr>/pages<wbr>/index.html", 0x644)</code>
@ -38,12 +39,13 @@ This page will guide you through the process of fixing the error code 112-1037.
1. Power on your Wii U
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 <directory>`
- On macOS, the most common place to find your downloaded files is <code>/Users/username<wbr>/Downloads</code>
- On Linux, the most common place to find your downloaded files is <code>/home/username<wbr>/Downloads</code>
1. Use the following command: `python2 -i wupclient.py`
1. Use the following command: `python3 -i wupclient.py`
1. Enter the IP address of your Wii U
- Don't know how to find it? Read [this](extras/find-wiiu-ip-address)
1. Use the appropriate command depending on the region of your console:
- JPN: <code>w.chmod("/vol<wbr>/storage_mlc01<wbr>/sys/title/00050030<wbr>/1001200a/content<wbr>/pages<wbr>/index.html", 0x644)</code>
- USA: <code>w.chmod("/vol<wbr>/storage_mlc01<wbr>/sys/title/00050030<wbr>/1001210a/content<wbr>/pages<wbr>/index.html", 0x644)</code>

Loading…
Cancel
Save