Being able to view the developer console in the Postman Packaged App can be very helpful if you are trying to run tests or pre-request scripts. The process below explains how to enable and open the developer console for Postman Packaged App. First you need to put this in the url bar in Chrome: chrome://flags/#debug-packed-apps Then you need to click to “Enable” on this section “Enable debugging for packed apps”. After you enable that you will need to restart Chrome. Then enter this in the url bar of Chrome: chrome://inspect/#apps You will then see the Postman – REST Client (Packaged App) with the “inspect” link under it. Click that to open the developer console.
Read More
Amazon has a good explanation but you may run into some issues. The link below is the Amazon user guide for installing the all the packages necessary for running a WordPress or other application that uses PHP and MySQL. You can follow my process below as you may need to install a specific version of MySQL as I had to. http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html Linux Command Line Install MySQL The below commands will install MySQL version 6.5. sudo yum localinstall http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm -y sudo yum install mysql-community-server -y Install phpMyAdmin after you have MySQL installed sudo yum –enablerepo=epel install phpmyadmin sudo ln -s /usr/share/phpMyAdmin /var/www/html/phpmyadmin After phpMyAdmin is installed you will need to go the the phpMyAdmin config file and allow your IP address to be able to access it remotely. sudo nano /etc/httpd/conf.d/phpMyAdmin.conf Find the section below: <Directory/usr/share/phpMyAdmin/><IfModulemod_authz_core.c> # Apache 2.4 <RequireAny> Require ip 127.0.0.1 Require ip ::1 </RequireAny></IfModule><IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 </IfModule></Directory> Comment out the “Deny from All” line and change “Allow from 127.0.0.1” to your IP address. To find your IP Address go to http://www.whatsmyip.org Reference for phpMyAdmin install http://superuser.com/questions/291230/how-to-install-phpmyadmin-on-linux-ec2-instance If you have issues you can use the command below […]
Read More