mamp

MAMP Pro for Mac(PHP/MySQL开发环境)

£可爱£侵袭症+ 提交于 2020-02-26 21:37:29
[名称]:MAMP Pro for Mac [大小]: 11.14 MB [语言]:英文 [测试环境]: Mac OS 10.15.x [下载链接]:https://www.macdown.com/mac/1676.html 简介 一款包含Macintosh、Apache、MySQL和PHP四大开发环境的软件, ——MAMP Pro mac,使用MAMP Pro Mac破解版,用户可以使用现有的动态DNS提供商轻松地将本地服务器连接到互联网。还可以非常方便地通过互联网向客户和潜在客户提供您的工作。 mamp pro mac版软件特色 无限数量的主机 使用MAMP PRO,您可以根据需要创建任意数量的主机。每个主机都可以单独配置,因此可以完全适应目标系统。例如,选择是否需要Apache或NginX Web服务器,需要哪个PHP版本,或者是否使用了哪个缓存系统。这使您可以并行处理不同的项目,而不会忽视大局。 多PHP 在CGI模式下,您可以使用自己的PHP版本运行每个虚拟主机。这允许您使用不同的PHP版本测试项目 - 无需重新启动服务器。您可以从PHP 5.4.x到PHP 7.2.x的各种PHP版本中进行选择。 在模块模式下,您选择将在所有主机上自动运行的PHP版本。例如,如果要检查项目是否在某个PHP版本下运行,这很有用。 MAMP Cloud 使用云功能

Mamp/PHP: how to disable PHP warnings messages about deprecated functions

谁说胖子不能爱 提交于 2020-02-08 10:01:18
问题 In my web app my boss wants me to use msql_* php functions but I can't even login because of PHP messages about these deprecated functions. How can I disable them in MAMP? Looking in this forum I've found the following rules to write inside php.ini error_reporting = E_ALL & ~E_DEPRECATED display_errors = On disable_functions = "list of mysqli_* functions" but this doesn't work. I've written this to all file php.ini of each php version contained in MAMP. The only thing that works is to put

MAC 下 mamp环境开启php错误提醒

a 夏天 提交于 2020-02-03 14:47:38
1.第一步修改php.ini文件:打开 /Applications/MAMP/bin/php/{your PHP version}/conf/php.ini 文件 找到 display_errors = Off (大概在 277 行的位置),改成 display_errors = On和找到设成error_reporting = E_ALL(大概在 270 行的位置,值类型有3种,根据自己的需要去设置) 2.第二步设置mamp pro的Log errors选项: Main Window->php->Log errors选中to_screen,以便错误在浏览器上进行提示 设置完成,重启服务。 ———————————————— 版权声明:本文为CSDN博主「码农甲乙丙」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/u012852597/article/details/78479942 ini_set ( "display_errors" , "On" ) ; error_reporting ( E_ALL | E_STRICT ) ; 来源: https://www.cnblogs.com/gaogaoxingxing/p/12255305.html

make virtual host available through local network for iphone

会有一股神秘感。 提交于 2020-01-24 20:16:07
问题 I'm building a site on my localhost with a virtual host (mynewsite.com). Instead of uploading files to an actual server and I'd prefer to just test locally. I have the virtual host working on my desktop, I just want it to be available so I can see it on my iPhone or any computer on my network. So if I go to mynewsite.com on my iPhone it will display the site from my localhost. I think I need to do port forwarding but I'm having difficulty figuring it out. I'm on a Mac with MAMP. How do I make

mac mamp搭建php开发环境配置memcached

一曲冷凌霜 提交于 2020-01-24 05:50:52
1,解压下载好的memcached压缩包,并且进入所在的下载包目录 tar -zxvf memcached-2.2.0.tgz cd memcached-2.2.0 1,解压下载好的memcached压缩包 2,brew search memche 命令查看已经安装的memcache文件 brew search memche 命令查看已经安装的memcache文件 3,给php安装memecached扩展,步骤一为已下载的安装包, 先执行命令 phpize 先执行命令 phpize 4,执行命令 编辑后就会在相应的文件生成 memcached.so文件 5,生成 .so 文件,安装完成后也有类似memcache的提示 在 /xxxxxx/xxxxxx/xxxx/no-debug-non-zts-xxxxxx/ 路径下会出现memcached.so 生成 .so 文件 6,编辑 php.ini添加打开扩展 extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/memcached 重启php-fpm查看 phpinfo() 是否支持了memcached 重启php这一步我这边里还没有实现~~~ 未完待续~~~ 这里有个坑~ 因为我用的是 mamp 集成环境, php -m有memcached模块

PHP Gnupg is not showing up as an extension in phpinfo() and I can't use it in php

别等时光非礼了梦想. 提交于 2020-01-24 00:45:09
问题 I have gnupg and gpgme installed using homebrew. I also linked both and made sure they are installed and linked by running brew gnupg install and brew gpgme install and got the message confirming the installation and the version. I have placed the gnupg.so file in the extension path and also added extension=gnupg.so into the php.ini file. I got the extension path and the specific php.ini's path from the infophp page. After restarting mamp, I still don't see gnupg or gpgme as extensions on

MAMP Mysql Error - Failed to open log

痞子三分冷 提交于 2020-01-22 18:47:13
问题 I've been working with a MAMP installation for several weeks now, and when I started it up today it would not start. No mysql process was running so I checked the error log which shows the following when I start the server: 130826 14:19:55 mysqld_safe Starting mysqld daemon with databases from /Applications/MAMP/db/mysql 130826 14:19:55 [Warning] You have forced lower_case_table_names to 0 through a command-line option, even though your file system '/Applications/MAMP/db/mysql/' is case

MAMP Config help, display PHP errors

主宰稳场 提交于 2020-01-21 03:15:20
问题 I am running the latest version of MAMP on Snow Leopard. My php.ini file has been configured to display errors. display_errors = on. The phpinfo(); page displays the status of error reporting, it is on. I have restarted my web server several times. I've searched through Google, and I cannot find any similar problem. Everyone just says to do exactly what I have done, but it is not working. The pages will just remain blank, (with no reporting), if I intentionally place errors. Any thoughts as

MAMP Config help, display PHP errors

佐手、 提交于 2020-01-21 03:15:11
问题 I am running the latest version of MAMP on Snow Leopard. My php.ini file has been configured to display errors. display_errors = on. The phpinfo(); page displays the status of error reporting, it is on. I have restarted my web server several times. I've searched through Google, and I cannot find any similar problem. Everyone just says to do exactly what I have done, but it is not working. The pages will just remain blank, (with no reporting), if I intentionally place errors. Any thoughts as

mac mamp搭建php开发环境配置memcached ---【博文迁移】

南笙酒味 提交于 2020-01-19 19:49:15
1,brew search memche 命令查看已经安装的memcache文件 ####2,解压下载好的memcached压缩包,并且进入所在的下载包目录,我将下载好的压缩包放在/usr/local目录下 tar -zxvf memcached-2.2.0.tgz cd memcached-2.2.0 3,给php安装memecached扩展,步骤一为已下载的安装包, 先执行命令 phpize sudo /Applications/MAMP/bin/php/php5.5.38/bin/phpize 4,执行命令 编辑后就会在相应的文件生成 memcached.so文件 sudo ./configure --enable-memcached --with-php-config=/Applications/MAMP/bin/php/php5.5.38/bin/php-config &&sudo make &&sudo make install 5,生成 .so 文件,安装完成后也有类似memcache的提示 在 /xxxxxx/xxxxxx/xxxx/no-debug-non-zts-xxxxxx/ 路径下会出现memcached.so 6,编辑 php.ini添加打开扩展 extension = /usr/local/php/lib/php/extensions/no-debug