Skip to content

Commit 3089a74

Browse files
committed
Automated deployment: Sat Jun 7 04:21:23 UTC 2025 1.0.14
1 parent 6427e61 commit 3089a74

12 files changed

Lines changed: 223 additions & 866 deletions

File tree

Lines changed: 13 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313

1414

1515

16-
<meta name="docsearch:version" content="1.0.0,latest">
16+
<meta name="docsearch:version" content="AlmaLinux9.0.0,latest">
1717
<meta name="docsearch:language" content="en">
1818
<meta name="docsearch:component" content="development">
1919

2020

21-
<link rel="canonical" href="https://docs.dotkernel.org/development/v1/faq/">
21+
<link rel="canonical" href="https://docs.dotkernel.org/development/AlmaLinux9/faq/">
2222

2323
<link rel="shortcut icon" href="https://docs.dotkernel.org/img/dk_docs_favicon_white.svg">
2424

@@ -181,110 +181,8 @@ <h5 class="subnavigation__title">Table of Contents</h5>
181181

182182

183183

184-
185-
186-
<li class="subnavigation__list-item ">
187-
<a href="../introduction/" class="subnavigation__link">Introduction</a>
188-
</li>
189184

190185

191-
192-
193-
194-
195-
196-
197-
198-
199-
200-
201-
202-
203-
204-
205-
<li class="subnavigation__list-item">
206-
<a data-bs-toggle="collapse" href="#setup" role="button" aria-expanded="false" aria-controls="setup">
207-
<span class="subnavigation__headline">Setup</span>
208-
</a>
209-
<ul class="subnavigation__list collapse" id="setup">
210-
211-
212-
<li class="subnavigation__list-item ">
213-
<a href="../setup/system-requirements/" class="subnavigation__link">System Requirements</a>
214-
</li>
215-
216-
217-
218-
<li class="subnavigation__list-item ">
219-
<a href="../setup/installation/" class="subnavigation__link">Installation</a>
220-
</li>
221-
222-
223-
224-
<li class="subnavigation__list-item ">
225-
<a href="../setup/setup-packages/" class="subnavigation__link">Setup Packages</a>
226-
</li>
227-
228-
229-
</ul>
230-
</li>
231-
232-
233-
234-
235-
236-
237-
238-
239-
240-
241-
242-
243-
244-
245-
246-
247-
248-
249-
250-
251-
252-
253-
254-
255-
256-
257-
258-
259-
260-
261-
<li class="subnavigation__list-item">
262-
<a data-bs-toggle="collapse" href="#virtualhosts" role="button" aria-expanded="false" aria-controls="virtualhosts">
263-
<span class="subnavigation__headline">Virtualhosts</span>
264-
</a>
265-
<ul class="subnavigation__list collapse" id="virtualhosts">
266-
267-
268-
<li class="subnavigation__list-item ">
269-
<a href="../virtualhosts/overview/" class="subnavigation__link">Overview</a>
270-
</li>
271-
272-
273-
274-
<li class="subnavigation__list-item ">
275-
<a href="../virtualhosts/create-virtualhost/" class="subnavigation__link">Create virtualhost</a>
276-
</li>
277-
278-
279-
</ul>
280-
</li>
281-
282-
283-
284-
<li class="subnavigation__list-item subnavigation__list-item--active">
285-
<a href="./" class="subnavigation__link">FAQ</a>
286-
</li>
287-
288186

289187

290188

@@ -342,6 +240,13 @@ <h6 class="toc__headline">On this page</h6>
342240

343241

344242

243+
<div class="alert alert-danger alert-caution" role="alert">
244+
<p class="mb-0">
245+
The documentation you are viewing is for an older version of this component.<br>
246+
<a href="../..">Switch to the latest (AlmaLinux9) version.</a>
247+
</p>
248+
</div>
249+
345250

346251

347252

@@ -359,7 +264,7 @@ <h2 id="how-do-i-switch-to-a-different-version-of-php">How do I switch to a diff
359264
<li><code>php81</code>: switch to PHP 8.1</li>
360265
<li><code>php82</code>: switch to PHP 8.2</li>
361266
<li><code>php83</code>: switch to PHP 8.3</li>
362-
<li><code>php83</code>: switch to PHP 8.4</li>
267+
<li><code>php84</code>: switch to PHP 8.4</li>
363268
</ul>
364269
<p>After switching to a different PHP version, test with the following command:</p>
365270
<pre class="highlight"><code class="language-shell">php -v</code></pre>
@@ -388,22 +293,19 @@ <h3 id="error">Error</h3>
388293
<blockquote>
389294
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/data" is not writable...</p>
390295
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/data/cache" is not writable...</p>
391-
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/data/cache/doctrine" is not
392-
writable...</p>
296+
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/data/cache/doctrine" is not writable...</p>
393297
</blockquote>
394298
<h3 id="solution">Solution</h3>
395299
<pre class="highlight"><code class="language-shell">chmod -R 777 data</code></pre>
396300
<h3 id="error_1">Error</h3>
397301
<blockquote>
398-
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/public/uploads" is not
399-
writable...</p>
302+
<p>PHP Fatal error: Uncaught InvalidArgumentException: The directory "<code>&lt;path-to-project&gt;</code>/public/uploads" is not writable...</p>
400303
</blockquote>
401304
<h3 id="solution_1">Solution</h3>
402305
<pre class="highlight"><code class="language-shell">chmod -R 777 public/uploads</code></pre>
403306
<h3 id="error_2">Error</h3>
404307
<blockquote>
405-
<p>PHP Fatal error: Uncaught ErrorException: fopen(<code>&lt;path-to-project&gt;</code>/log/error-log-yyyy-mm-dd.log): Failed to open
406-
stream: Permission denied...</p>
308+
<p>PHP Fatal error: Uncaught ErrorException: fopen(<code>&lt;path-to-project&gt;</code>/log/error-log-yyyy-mm-dd.log): Failed to open stream: Permission denied...</p>
407309
</blockquote>
408310
<h3 id="solution_2">Solution</h3>
409311
<pre class="highlight"><code class="language-shell">chmod -R 777 log</code></pre>
Lines changed: 18 additions & 113 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313

1414

1515

16-
<meta name="docsearch:version" content="1.0.0,latest">
16+
<meta name="docsearch:version" content="AlmaLinux9.0.0,latest">
1717
<meta name="docsearch:language" content="en">
1818
<meta name="docsearch:component" content="development">
1919

2020

21-
<link rel="canonical" href="https://docs.dotkernel.org/development/v1/introduction/">
21+
<link rel="canonical" href="https://docs.dotkernel.org/development/AlmaLinux9/introduction/">
2222

2323
<link rel="shortcut icon" href="https://docs.dotkernel.org/img/dk_docs_favicon_white.svg">
2424

@@ -181,110 +181,8 @@ <h5 class="subnavigation__title">Table of Contents</h5>
181181

182182

183183

184-
185-
186-
<li class="subnavigation__list-item subnavigation__list-item--active">
187-
<a href="./" class="subnavigation__link">Introduction</a>
188-
</li>
189184

190185

191-
192-
193-
194-
195-
196-
197-
198-
199-
200-
201-
202-
203-
204-
205-
<li class="subnavigation__list-item">
206-
<a data-bs-toggle="collapse" href="#setup" role="button" aria-expanded="false" aria-controls="setup">
207-
<span class="subnavigation__headline">Setup</span>
208-
</a>
209-
<ul class="subnavigation__list collapse" id="setup">
210-
211-
212-
<li class="subnavigation__list-item ">
213-
<a href="../setup/system-requirements/" class="subnavigation__link">System Requirements</a>
214-
</li>
215-
216-
217-
218-
<li class="subnavigation__list-item ">
219-
<a href="../setup/installation/" class="subnavigation__link">Installation</a>
220-
</li>
221-
222-
223-
224-
<li class="subnavigation__list-item ">
225-
<a href="../setup/setup-packages/" class="subnavigation__link">Setup Packages</a>
226-
</li>
227-
228-
229-
</ul>
230-
</li>
231-
232-
233-
234-
235-
236-
237-
238-
239-
240-
241-
242-
243-
244-
245-
246-
247-
248-
249-
250-
251-
252-
253-
254-
255-
256-
257-
258-
259-
260-
261-
<li class="subnavigation__list-item">
262-
<a data-bs-toggle="collapse" href="#virtualhosts" role="button" aria-expanded="false" aria-controls="virtualhosts">
263-
<span class="subnavigation__headline">Virtualhosts</span>
264-
</a>
265-
<ul class="subnavigation__list collapse" id="virtualhosts">
266-
267-
268-
<li class="subnavigation__list-item ">
269-
<a href="../virtualhosts/overview/" class="subnavigation__link">Overview</a>
270-
</li>
271-
272-
273-
274-
<li class="subnavigation__list-item ">
275-
<a href="../virtualhosts/create-virtualhost/" class="subnavigation__link">Create virtualhost</a>
276-
</li>
277-
278-
279-
</ul>
280-
</li>
281-
282-
283-
284-
<li class="subnavigation__list-item ">
285-
<a href="../faq/" class="subnavigation__link">FAQ</a>
286-
</li>
287-
288186

289187

290188

@@ -307,6 +205,13 @@ <h5 class="subnavigation__title">Table of Contents</h5>
307205

308206

309207

208+
<div class="alert alert-danger alert-caution" role="alert">
209+
<p class="mb-0">
210+
The documentation you are viewing is for an older version of this component.<br>
211+
<a href="../..">Switch to the latest (AlmaLinux9) version.</a>
212+
</p>
213+
</div>
214+
310215

311216

312217

@@ -316,15 +221,15 @@ <h5 class="subnavigation__title">Table of Contents</h5>
316221
<h1 id="introduction">Introduction</h1>
317222
<p><code>dotkernel/development</code> is a tool that helps you prepare your development environment with the following components:</p>
318223
<ul>
319-
<li><strong>WSL2</strong> - Windows Subsystem for Linux</li>
320-
<li><strong>AlmaLinux9</strong> - free and open source Linux distribution</li>
321-
<li><strong>PHP</strong> - general-purpose scripting language geared towards web development</li>
322-
<li><strong>Apache</strong> - free and open-source cross-platform web server software</li>
323-
<li><strong>MariaDB</strong> - community-developed, commercially supported fork of the MySQL relational database management system</li>
324-
<li><strong>Git</strong> - distributed version control system</li>
325-
<li><strong>Composer</strong> - application-level dependency manager for the PHP</li>
326-
<li><strong>Node.js</strong> - JavaScript runtime environment</li>
327-
<li><strong>PhpMyAdmin</strong> - open source administration tool for MySQL and MariaDB</li>
224+
<li><strong>WSL2</strong>: Windows Subsystem for Linux</li>
225+
<li><strong>AlmaLinux9</strong>: free and open source Linux distribution</li>
226+
<li><strong>PHP</strong>: general-purpose scripting language geared towards web development</li>
227+
<li><strong>Apache</strong>: free and open-source cross-platform web server software</li>
228+
<li><strong>MariaDB</strong>: community-developed, commercially supported fork of the MySQL relational database management system</li>
229+
<li><strong>Git</strong>: distributed version control system</li>
230+
<li><strong>Composer</strong>: application-level dependency manager for the PHP</li>
231+
<li><strong>Node.js</strong>: JavaScript runtime environment</li>
232+
<li><strong>PhpMyAdmin</strong>: open source administration tool for MySQL and MariaDB</li>
328233
</ul>
329234

330235

0 commit comments

Comments
 (0)