View Single Post
  #4   (View Single Post)  
Old 29th May 2022
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,984
Default

Quote:
Originally Posted by gordon.f View Post
Well, excuse my illiteracy on OpenBSD.
This isn't an OpenBSD-ism. It's a telecommunications-ism. Specifically, the Internet Protocol, the "IP" of TCP/IP.
Quote:
I just found that working, so continued with that. If you can provide a code block in order to substitute it, that'd be great.
Here's a unified diff with my recommendation to call it `$loopback` rather than `$ext_ip`.
Code:
--- yours       Sun May 29 06:17:25 2022
+++ mine        Sun May 29 06:18:25 2022
@@ -1,9 +1,9 @@
 #[ MACROS ]
-ext_ip = "127.0.0.1"
+loopback = "127.0.0.1"
 
 # [ SERVERS ]
 server "default" {
-    listen on $ext_ip port 80
+    listen on $loopback port 80
     root "htdocs/my_website"
     directory index "index.php"
Quote:
mysqli is actually installed....and as you pointed out I did this:
Code:
ln -sf /etc/php-8.0.sample/mysqli.ini /etc/php-8.0/
The result is same as the former one....
My assumption, based on your reported error message, was a missing or incorrectly provisioned extension. Since you claim now that this is not the case, and that the extension is installed and correctly provisioned, do you have a working MariaDB server installed, provisioned, tested, and confirmed to be running?
Reply With Quote