設置 | 登錄 | 註冊

目前共有5篇帖子。

phpPgAdmin 7.13.0支持PHP8

1樓 巨大八爪鱼 2025-4-1 19:34
--- a/all_db.php        2020-11-07 09:09:12.000000000 +0300
+++ b/all_db.php        2021-03-08 17:44:57.760262808 +0300
@@ -199,7 +199,7 @@
                echo "\t\t<td class=\"data1\">\n";
                echo "\t\t\t<select name=\"formEncoding\">\n";
                echo "\t\t\t\t<option value=\"\"></option>\n";
-               while (list ($key) = each ($data->codemap)) {
+               foreach ($data->codemap as $key => $value) {
                    echo "\t\t\t\t<option value=\"", htmlspecialchars($key), "\"",
                                ($key == $_POST['formEncoding']) ? ' selected="selected"' : '', ">",
                                $misc->printVal($key), "</option>\n";
--- a/libraries/adodb/drivers/adodb-postgres64.inc.php  2020-11-07 09:09:12.000000000 +0300
+++ b/libraries/adodb/drivers/adodb-postgres64.inc.php  2021-03-08 08:08:31.886314599 +0300
@@ -122,6 +122,11 @@
        // changes the metaColumnsSQL, adds columns: attnum[6]
        }

+       function __construct()
+       {
+       // changes the metaColumnsSQL, adds columns: attnum[6]
+       }
+
        function ServerInfo()
        {
                if (isset($this->version)) return $this->version;

https://github.com/phppgadmin/phppgadmin/issues/119
2樓 巨大八爪鱼 2025-4-1 19:44
旧版本的PostgreSQL不被支持。 请更新到版本 或更高版本。
vim classes/database/Connection.php
       switch (substr($version,0,2)) {
添加case '16':
3樓 巨大八爪鱼 2025-4-1 19:45
登录失败的解决办法:
sudo vim /var/lib/pgsql/data/pg_hba.conf
# "local" is for Unix domain socket connections only
local   all             all                                     md5 #peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5 #ident
# IPv6 local connections:
host    all             all             ::1/128                 md5 #ident
全部改md5。
4樓 巨大八爪鱼 2025-4-1 19:46
设置postgres用户密码的SQL语句:
ALTER USER postgres PASSWORD '密码';
5樓 巨大八爪鱼 2025-4-1 19:48

內容轉換:

回覆帖子
內容:
用戶名: 您目前是匿名發表。
驗證碼:
看不清?換一張
©2010-2025 Purasbar Ver3.0 [手機版] [桌面版]
除非另有聲明,本站採用知識共享署名-相同方式共享 3.0 Unported許可協議進行許可。