• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » Heroku Cloud With PHP : Advanced Commands for Perfect Setup

By Abhishek Ghosh December 3, 2012 9:43 am Updated on December 3, 2012

Heroku Cloud With PHP : Advanced Commands for Perfect Setup

Advertisement

Heroku Cloud is an excellent cloud PaaS for free of cost for the developers to test or even run serious instances. Here is some extra shining tips for Heroku. We have quite number of articles on Heroku Cloud; you can simply search with the the phrase Heroku Cloud in the search box of this website to get the list as search result. At minimum, read this one article view the Video Guide on Installing WordPress on Heroku Cloud. That guide was done on Ubuntu, for installing Heroku Tool Belt on Mac OS X, follow this guide.

 

Heroku Cloud With PHP : Fix All the Missing Parts

 

It is unfortunate that OS X 10.8 has been bit different than the older our ‘normal’ UNIX like OS from command line. So, if you have not ‘calibrated’ your command line tool, first fix them. You will need to install the minimum things, which are actually covered in that article.

On the Heroku Cloud Server side, the definite issue of Heroku Cloud is – missing PHP zlib extension. For ‘forgetting’ this thing, we basically can not update the plugins of WordPress (on Heroku Cloud) from WordPress Admin. Other missing things, most developers cum bloggers has fixed are – cache, a webroot etc. We will however point out two basic things people get stuck – first time login, creating a SSH key pair and then fixing the missing PHP zlib extension by installing it.

Advertisement

---

 

Installing PHP zlib extension on Heroku Cloud

 

The steps are almost same for Ubuntu and Windows too, but specifically this is for full OS X Server administration (read Mac OS X 10.8). First change directory to .ssh :

 

Vim
1
cd ~/.ssh

 

This is very nice command, you will get a 1024 bit key pair (public and private keys) with no password prompts and many extra things :

 

Vim
1
ssh-keygen -b 1024 -t dsa -f id_dsa -P ''

 

Heroku Cloud With PHP

Then :

 

Vim
1
touch authorized_keys2

 

Next :

 

Vim
1
cat id_dsa.pub >> authorized_keys2

 

Set the permission rightly for it :

 

Vim
1
chmod 400 id_dsa

 

Add the public key :

 

Vim
1
heroku keys:add

 

Installing PHP zlib extension on Heroku Cloud

If your App™s name is afternoon-autumn-6095 ; then clone it you need to run :

 

Vim
1
git clone git@heroku.com:afternoon-autumn-6095.git -o heroku

 

Else create a new app :

 

Vim
1
heroku create --stack cedar

 

The next steps of adding git are already written in the previous guide. In short, change directory to that cloned app folder, change app as you need and push it. Now the important steps and commands are :

 

Vim
1
heroku run bash

 

It is practically indicating you do have the shell access with root permission. I have not discovered the way, its two people worked quite nicely. Run the commands one by one, please understand WHAT you need to change (do not copy paste blindly):

 

Vim
1
export PS1="u@h w> "

Vim
1
mkdir tmp

Vim
1
cd tmp

Vim
1
git clone https://github.com/php/php-src.git -b PHP-5.3

Vim
1
cd php-src

Vim
1
cd ext/zlib

Vim
1
/app/php/bin/phpize

Vim
1
./configure “with-php-config=/app/php/bin/php-config

Vim
1
make

Vim
1
cd modules

Vim
1
scp zlib.so user@host:~/destination

Vim
1
mkdir -p lib/php

Vim
1
mv zlib.so lib/php

Vim
1
echo "extension = /app/www/lib/php/zlib.so" > php.ini

Vim
1
mkdir src/app/cache

Vim
1
touch src/app/cache/.placeholder

Vim
1
git add php.ini lib/ src/app/cache/

Vim
1
git commit -m "Write whatever you want"

Vim
1
git push heroku heroku:master

 

This the part of installing PHP zlib extension on Heroku Cloud. Basically, you add a web root, use it with all features just like a webserver with root access.

 
Abhishek-Ghosh

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Heroku Cloud With PHP : Advanced Commands for Perfect Setup

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • OpenShift OctoPress Auto install Script

    OpenShift OctoPress Auto install Script is an Advanced Script to Run OctoPress on Free OpenShift PaaS Practically Without Any Knowing Ruby or Git.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

  • Heroku Cloud Guide : Create An Easily Customizable Archive For Your Tweets

    Heroku Cloud Guide to Create An Easily Customizable Archive For Your Tweets. It is a step by step guide that will enable any level of use to work and build.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Market Segmentation in BriefSeptember 20, 2023
  • What is Booting?September 18, 2023
  • What is ncurses?September 16, 2023
  • What is JTAG in Electronics?September 15, 2023
  • iPhone 15 Pro Max Vs Samsung Galaxy S22/S23 UltraSeptember 14, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy