diff --git a/resources/views/docs/desktop/1/digging-deeper/child-processes.md b/resources/views/docs/desktop/1/digging-deeper/child-processes.md index a60a92af..f22d590c 100644 --- a/resources/views/docs/desktop/1/digging-deeper/child-processes.md +++ b/resources/views/docs/desktop/1/digging-deeper/child-processes.md @@ -189,7 +189,7 @@ ChildProcess::stop('tail'); This will attempt to stop the process gracefully. The [`ProcessExited`](#codeprocessexitedcode) event will be dispatched if the process exits. -Note that [persistent processes](/docs/desktop/1/digging-deeper/child-process#persistent-processes) will be permanently stopped and will only be restarted when the `start` method is called again. If you want to restart a persistent process, use the `restart` method instead. +Note that [persistent processes](/docs/digging-deeper/child-processes#persistent-processes) will be permanently stopped and will only be restarted when the `start` method is called again. If you want to restart a persistent process, use the `restart` method instead. ## Restarting a Child Process @@ -271,11 +271,11 @@ A Child Process may send output via any of the following interfaces: - A custom interface, e.g. a network socket. - Broadcasting a Custom Event -`STDOUT`, `STDERR` & [Custom Events](/docs/desktop/1/digging-deeper/broadcasting#custom-events) are dispatched using +`STDOUT`, `STDERR` & [Custom Events](/docs/digging-deeper/broadcasting#custom-events) are dispatched using Laravel's event system. You may listen to these events by registering a listener in your app service provider, or on the front end -using the [Native helper](/docs/desktop/1/digging-deeper/broadcasting#listening-with-javascript). +using the [Native helper](/docs/digging-deeper/broadcasting#listening-with-javascript). Please see the [Events](#events) section for a full list of events. diff --git a/resources/views/docs/desktop/1/getting-started/status.md b/resources/views/docs/desktop/1/getting-started/status.md index 4265c35a..01c7f4b8 100644 --- a/resources/views/docs/desktop/1/getting-started/status.md +++ b/resources/views/docs/desktop/1/getting-started/status.md @@ -22,7 +22,7 @@ your ideas and questions through the [forum](https://github.com/orgs/nativephp/d #### Can you sponsor? If you're building an app that you plan to sell, -[can you sponsor the development of NativePHP](/docs/desktop/1/getting-started/sponsoring)? This will help us to continue +[can you sponsor the development of NativePHP](/docs/getting-started/sponsoring)? This will help us to continue maintaining and supporting NativePHP. diff --git a/resources/views/docs/mobile/1/concepts/security.md b/resources/views/docs/mobile/1/concepts/security.md index 84e10a33..fcb2e777 100644 --- a/resources/views/docs/mobile/1/concepts/security.md +++ b/resources/views/docs/mobile/1/concepts/security.md @@ -32,7 +32,7 @@ care. If you choose to store them anywhere (either in a file or ## Secure Storage NativePHP provides access to your users' device's native Keystore/Keychain through the -[`SecureStorage`](/docs/mobile/1/apis/secure-storage) facade, which +[`SecureStorage`](/docs/apis/secure-storage) facade, which allow you to store small amounts of data in a secure way. The device's secure storage encrypts and decrypts data on the fly and that means you can safely rely on it to store diff --git a/resources/views/docs/mobile/1/getting-started/installation.md b/resources/views/docs/mobile/1/getting-started/installation.md index 0882ac69..3c8b847f 100644 --- a/resources/views/docs/mobile/1/getting-started/installation.md +++ b/resources/views/docs/mobile/1/getting-started/installation.md @@ -79,7 +79,7 @@ NATIVEPHP_APP_VERSION_CODE="1" ``` Find out more about these options in -[Configuration](/docs/mobile/1/getting-started/configuration#codenativephp-app-idcode). +[Configuration](/docs/getting-started/configuration#codenativephp-app-idcode).