Skip to content

Commit dc750bb

Browse files
authored
Merge pull request #2134 from MAX-IT-Tech/feat/docs-links-clarity
Update external documentation links for clarity and accuracy
2 parents 7cf14a2 + e157003 commit dc750bb

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

basics/installation/system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ PrestaShop needs a few additions to `PHP` and `MySQL` in order to fully work. Ma
110110
| **OpenSSL** | The [OpenSSL extension](https://www.php.net/manual/en/book.openssl.php) is used to improve security.
111111
| **PDO** | The [PHP Data Objects extension](https://www.php.net/manual/en/book.pdo.php) is used to connect to databases.
112112
| **PDO (MySQL)** | The [PDO_MYSQL driver](https://www.php.net/manual/en/ref.pdo-mysql.php) is used to connect to MySQL databases.
113-
| **SimpleXML** | The [SimpleXML extension](https://www.php.net/manual/en/intro.simplexml.php) is used to manage XML files.
113+
| **SimpleXML** | The [SimpleXML extension](https://www.php.net/manual/en/book.simplexml.php) is used to manage XML files.
114114
| **Zip** | The [Zip extension](https://php.net/manual/en/book.zip.php) is used to expand compressed files such as modules and localization packages.
115115

116116
### Settings

basics/keeping-up-to-date/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ mysql> SHOW VARIABLES LIKE "secure_file_priv";
165165
#### Get changes between source and destination databases
166166
Now you have retrieved your data from the production shop, you have to adapt it to the new structure before inserting it on your new database.
167167

168-
An efficient way to get the changes is getting a database structure diff between the 2 running shops. MySQL provides another tool for this called [mysqldiff](https://docs.oracle.com/cd/E17952_01/mysql-utilities-1.5-en/mysqldiff.html).
168+
An efficient way to get the changes is getting a database structure diff between the 2 running shops. MySQL provides another tool for this called [mysqldiff](https://downloads.mysql.com/docs/mysql-utilities-1.5-en.pdf).
169169

170170
Note this utility may be not immediately available on your environment, even if you have the mysql client installed. For instance on Ubuntu, an additional package needs to be installed:
171171

contribute/contribute-pull-requests/contribute_using_localhost.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Installing any web-application locally requires that you first install the adequ
3232

3333
Here is a selection of free AMP installers:
3434

35-
* [XAMPP](https://www.apachefriends.org/en/xampp.html) (Windows, Mac OS X, Linux, Solaris)
36-
* [WampServer](http://www.wampserver.com/) (Windows)
35+
* [XAMPP](https://www.apachefriends.org/index.html) (Windows, Mac OS X, Linux, Solaris)
36+
* [WampServer](https://www.wampserver.com/en/) (Windows)
3737
* [EasyPHP](https://www.easyphp.org/) (Windows)
3838
* [MAMP](https://www.mamp.info/en/mamp/) (Windows, Mac OS X)
3939
* [Laragon](https://laragon.org/) (Windows)

contribute/contribution-guidelines/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For more information, see [Supported branches]({{< ref "supported-branches" >}})
5050
- Write [meaningful commit messages]({{< ref "writing-a-good-commit-message" >}}).
5151
- Use [interactive staging](https://git-scm.com/book/en/v2/Git-Tools-Interactive-Staging) when you have made several changes in the same file but not all those changes are meant to be in a single commit.
5252
- Consider [squashing your commits](https://www.atlassian.com/git/tutorials/rewriting-history#git-rebase-i) as necessary, especially when you have performed many changes following code review.
53-
- **Avoid merge commits in your Pull Request.** They make the commit history more difficult to understand, and they can lead to hidden changes which are not visible by reviewers. If you need to resolve conflicts with the base branch, [rebase your branch](https://anavarre.net/how-to-rebase-a-github-pull-request/) instead.
53+
- **Avoid merge commits in your Pull Request.** They make the commit history more difficult to understand, and they can lead to hidden changes which are not visible by reviewers. If you need to resolve conflicts with the base branch, [rebase your branch](https://github.com/spyder-ide/spyder/wiki/How-to-rebase-a-pull-request) instead.
5454

5555
## Pull Requests
5656

contribute/documentation/shortcodes/ref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ Rendered result:
3737
{{% notice info %}}
3838
**Internal links need to be "slugified" to work.**
3939

40-
If you feel lost, here's a [tool that will slugify your titles](https://you.tools/slugify/).
40+
If you feel lost, here's a [tool that will slugify your titles](https://you.tools/tool/slugify).
4141
{{% /notice %}}

modules/sample-modules/grid-and-identifiable-object-form-hooks-usage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ how to:
1616
- extend modern grids. [Grid component]({{< relref "/9/development/components/grid/" >}})
1717
- extend identifiable object form. [identifiable object form]({{< relref "/9/development/architecture/migration-guide/forms/CRUD-forms" >}})
1818

19-
The module created within this tutorial can be found [here](https://github.com/PrestaShop/demo-cqrs-hooks-usage-module)
19+
The module created within this tutorial can be found [here](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3)
2020

2121
## Prerequisites
2222

@@ -138,7 +138,7 @@ class CustomerReviewController extends FrameworkBundleAdminController
138138
{{% notice note %}}
139139
**This example has been simplified for practical reasons.**
140140

141-
You can find full implementation [here](https://github.com/PrestaShop/demo-cqrs-hooks-usage-module) which uses CQRS pattern to toggle the reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
141+
You can find full implementation [here](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3) which uses CQRS pattern to toggle the reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
142142
{{% /notice %}}
143143

144144
```php
@@ -251,7 +251,7 @@ about it can be found [here]({{< relref "/9/development/components/form/types-re
251251
{{% notice note %}}
252252
**This example has been simplified for practical reasons.**
253253

254-
You can find full implementation [here](https://github.com/PrestaShop/demo-cqrs-hooks-usage-module) which uses CQRS pattern to get reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
254+
You can find full implementation [here](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3) which uses CQRS pattern to get reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
255255
{{% /notice %}}
256256

257257
```php
@@ -310,7 +310,7 @@ dedicated to handle this topic - lets do that!
310310
{{% notice note %}}
311311
**This example has been simplified for practical reasons.**
312312

313-
You can find full implementation [here](https://github.com/PrestaShop/demo-cqrs-hooks-usage-module) which uses CQRS pattern to create or update reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
313+
You can find full implementation [here](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3) which uses CQRS pattern to create or update reviewer state. [More about it here]({{< relref "/9/development/architecture/domain/cqrs" >}}).
314314
{{% /notice %}}
315315

316316
```php

scale/benchmark/back-office.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ You could then write your own `batch.sh` to run multiple gatling benchmarks.
173173

174174
### Gatling installation
175175

176-
Download Gatling from **[here](https://gatling.io/download/)**, and in the same way have a look at **[the Gatling quickstart page](https://gatling.io/docs/current/quickstart/)**.
176+
Download Gatling from **[here](https://gatling.io/download-gatling-community-edition)**, and in the same way have a look at **[the Gatling quickstart page](https://docs.gatling.io/tutorials/)**.
177177

178178
Once unzipping the folder it will look like as shown below:
179179

0 commit comments

Comments
 (0)