Explore Docker wordpress nginx on Docker Windows

The purpose here: quick install and run all in one docker with nginx+php+mysql+wordpress eugeneware explore docker inside portable docker for windows Check here if you want to know how to make portable docker toolbox for windows. $ dockerstart installation docker images $ docker pull eugeneware/docker-wordpress-nginx Using default tag: latest latest: …

Portable nginx+php+mysql stack on windows msys

download nginx+php+mysql zip package and unzip without installation nginx-1.11.5.zip beta version on windows php-7.0.12-nts-Win32-VC14-x64.zip with php-cgi tool mysql-5.7.16-winx64.zip community server config nginx nginx.conf change doc root from html to www, create www folder under nginx place all app site in conf/conf.d folder and include them nginx.conf sample app site sample …

PHP memory limit

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 24 bytes). This just means php memory limit is not enough, by default is 32MB, can be increased to 100MB, the problem is you need to change php.ini in all sub site, lucky is some hosting like bluehost …

PHP Photo Album

Very good PHP photo album easyPhpAlbum http://www.mywebmymail.com/ just one index.php but with very good features, auto generated thumbnails at first time. amazing site including easyPhpAlbum http://www.fotoworkz.com customize: 1) main configuration.php 2) sub album configuration.php note: before try php image handling need to open php gd in php.ini

Install wordpress on opensuse

Assumed apache+php+mysql is ready on opensuse, otherwise check out here. WordPress is just pure php+mysql application, it’s easy to install on opensuse. 1) download wordpress 3.0 download from here. # mv //wordpress-3.0.zip /srv/www/htdocs # cd /srv/www/htdocs # unzip wordpress-3.0.zip # cd wordpress-3.0 # cp wp-config-sample.php wp-config.php fill up the database …

opensuse 11.3 apache+php+mysql setup

This is quick guide to setup web dev environment on opensuse 11.3. 1) install apache, php and mysql packages through Yast2 apache: apache2, apache2-mod_php5 php: php5, php5-mysql mysql: mysql-community-server, mysql-community-server-client 2) setup apache # rcapache2 status Checking for httpd2:                                          unused means apache installed but not started yet, # cd /srv/www/htdocs …