adminer

Wampserver端口号占用,修改80端口至8080(其他端口号同理)

我们两清 提交于 2020-10-26 07:10:26
由于80端口有时候可能被占用,而我修改了好几次wampserver的端口号,wamp都变黄了,apache服务无法启动,所以记录一下 第一步 鼠标 单击 系统托盘下的wamp图标 找到httpd.conf 单击打开 第二步 利用Ctrl + F 搜索80 利用注释符 将原有Listen 80 注释掉 新加 Listen 8080 继续在httpd.conf 里面修改 Ctrl + F 搜索ServerName 将原有 ServerName localhost:80 注释 新加 ServerName localhost:8080 httpd.conf 已修改完毕 可以保存关闭了 第三步 找到wamp的安装目录下 例如本机的 E:\wamp64 打开wamp目录下的wampmanager.ini Ctrl + F 寻找到 Menu.Left 修改下面这三条的localhost端口号 Ctrl + F 找到 alias_dir 继续在本文件下修改 Type: submenu; Caption: “http://localhost:8080/adminer/”; SubMenu: alias_adminer; Glyph: 3 Type: submenu; Caption: “http://localhost:8080/phpmyadmin/”; SubMenu: alias

How to enter adminer without password?

若如初见. 提交于 2020-08-25 08:02:23
问题 Using adminer-4.7.2-mysql.php on my home laptop with Kubuntu 18 is there is a way to login to it without password entering? Or session time as long as possible ? Thanks! 回答1: Adminer doesn't allow connection without password for security reasons. If you want to login without password because you're working in local environment you must use the login-password-less plugin. 1. Install adminer default core file Download the adminer core file PHP: wget https://github.com/vrana/adminer/releases

How to enter adminer without password?

旧街凉风 提交于 2020-08-25 08:02:06
问题 Using adminer-4.7.2-mysql.php on my home laptop with Kubuntu 18 is there is a way to login to it without password entering? Or session time as long as possible ? Thanks! 回答1: Adminer doesn't allow connection without password for security reasons. If you want to login without password because you're working in local environment you must use the login-password-less plugin. 1. Install adminer default core file Download the adminer core file PHP: wget https://github.com/vrana/adminer/releases

Linux下部署开源版“禅道”项目管理系统

ぐ巨炮叔叔 提交于 2019-12-10 19:55:16
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 简介: 禅道 是第一款国产的优秀开源 项目管理软件 。先进的管理思想,合理的 软件架构 ,简洁实效的操作,优雅的代码实现,灵活的扩展机制,强大而易用的api调用机制,多语言支持,多风格支持,搜索功能,统计功能等,利用禅道可以很好的进行项目的管理。因此,这里为广大的项目管理人员介绍下它在Linux下的安装方式。 原文地址: http://www.jianshu.com/p/39beebc32b5e 1.开源版安装包下载 [root@iZbp ~]# wget http://dl.cnezsoft.com/zentao/9.0.1/ZenTaoPMS.9.0.1.zbox_64.tar.gz 2.直接解压安装包到/opt目录下 [root@iZbp ~]# tar -zxvf ZenTaoPMS.9.0.1.zbox_64.tar.gz -C /opt 3.修改禅道自带apache、mysql端口 为了不占用Server上默认的80、3306端口,我们修改禅道自带的apache、mysql端口 修改禅道自带apache端口: [root@iZbp logs]# /opt/zbox/zbox -ap 9000 修改禅道自带mysql端口: [root@iZbp logs]# /opt/zbox/zbox -mp

Too big POST data. Reduce the data or increase the “post_max_size”

╄→尐↘猪︶ㄣ 提交于 2019-12-07 16:23:14
问题 I'm trying to upload a gzipped Mysql backup (71,2mb) through Adminer and it throws me this error: Too big POST data. Reduce the data or increase the "post_max_size" configuration directive. Even though my post_max_size and other php.ini settings is like this: post_max_size = 1024M upload_max_filesize = 1024M Why do i keep getting this error? 回答1: Don't only check values in php.ini , as they can be overwritten by a .htaccess file or in PHP code. Run a phpinfo() and compare values in left &

How to export part of a table as SQL in Adminer?

若如初见. 提交于 2019-12-06 03:59:53
问题 In Adminer, I can export whole tables with the "Export" menu option. When I enter a query, I can export the results as .CSV or .TSV, but not as SQL. Is there any option to do so? A plugin or a config switch? 回答1: Adminer doesn't offer SQL export of a general SQL query because the query may join more tables which would be impossible to export to SQL. To export a subset of rows in a single table, go to the Select view of this table, filter the results as you wish and check the rows you want to

Too big POST data. Reduce the data or increase the “post_max_size”

左心房为你撑大大i 提交于 2019-12-05 21:49:39
I'm trying to upload a gzipped Mysql backup (71,2mb) through Adminer and it throws me this error: Too big POST data. Reduce the data or increase the "post_max_size" configuration directive. Even though my post_max_size and other php.ini settings is like this: post_max_size = 1024M upload_max_filesize = 1024M Why do i keep getting this error? Don't only check values in php.ini , as they can be overwritten by a .htaccess file or in PHP code. Run a phpinfo() and compare values in left & right column. The values in the right column are those actually in use. Also take the notes from the

How to export part of a table as SQL in Adminer?

非 Y 不嫁゛ 提交于 2019-12-04 07:55:39
In Adminer, I can export whole tables with the "Export" menu option. When I enter a query, I can export the results as .CSV or .TSV, but not as SQL. Is there any option to do so? A plugin or a config switch? Adminer doesn't offer SQL export of a general SQL query because the query may join more tables which would be impossible to export to SQL. To export a subset of rows in a single table, go to the Select view of this table, filter the results as you wish and check the rows you want to export (or check 'whole result' to export all rows in the result). Then use the Export button under the

Why error occurs when I send multiple queries into mysqli_query?

删除回忆录丶 提交于 2019-11-29 13:07:56
The same request in the Adminer has no errors, but in php is You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'SET @lastID = last_insert_id(); INSERT INTO p_messages(letter_id, user_id, messa' at line 1). PHP: $DB->query("INSERT INTO p_letters(user_1_id, user_1_name, create_date) VALUES ('".htmlspecialchars($accountId)."', '".htmlspecialchars($username)."', now()); SET @lastID = LAST_INSERT_ID(); INSERT INTO p_messages(letter_id, user_id, message) VALUES (@lastID, '".htmlspecialchars($accountId)."', '"

Why error occurs when I send multiple queries into mysqli_query?

家住魔仙堡 提交于 2019-11-28 06:41:39
问题 The same request in the Adminer has no errors, but in php is You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'SET @lastID = last_insert_id(); INSERT INTO p_messages(letter_id, user_id, messa' at line 1). PHP: $DB->query("INSERT INTO p_letters(user_1_id, user_1_name, create_date) VALUES ('".htmlspecialchars($accountId)."', '".htmlspecialchars($username)."', now()); SET @lastID = LAST_INSERT_ID(); INSERT