Total Pageviews

Showing posts with label php. Show all posts
Showing posts with label php. Show all posts

Thursday, August 16, 2012

error : RPC failed; result=55 HTTP code = 0

hello ,
 i was working on a repo then i got that error and couldn't push my changes and after along search i find that i am tring to push a big amount of space


to fix this problem you have to increase the buffer size :


git config http.postBuffer 524288000

then every thing going to work sparky !!!

Friday, February 3, 2012

How to align a div to the bottom with css?

Hello ,

Too much time i tried to algin divs to bottom them i find that you can do that throw this.



<style type="text/css">
  #warapper { position: relative; }
  #ooter { position: absolute; bottom: 0; left: 0; }
</style>
<div id=" warapper  ">
  <h1>Title</h1>
  <div id=" ooter  ">Here you will see the footer which will be always at bottom</div>
</div>

Tuesday, January 17, 2012

PHP script to Find out IP address

You can get the IP address of any visitor by using PHP.

$ip=$_SERVER['REMOTE_ADDR'];
echo "<b>IP Address= $ip</b>";