<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Runwalsoft.com</title>
	<atom:link href="http://www.runwalsoft.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.runwalsoft.com/blog</link>
	<description>Its all about to get customer satisfaction</description>
	<pubDate>Tue, 27 Jul 2010 07:26:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Working with LDAP details.</title>
		<link>http://www.runwalsoft.com/blog/2010/07/working-with-ldap-details/</link>
		<comments>http://www.runwalsoft.com/blog/2010/07/working-with-ldap-details/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 08:30:01 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[ldap]]></category>

		<category><![CDATA[openldap]]></category>

		<category><![CDATA[slapd]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=145</guid>
		<description><![CDATA[Some people like to use website to be logged in with external people. Some people wants logged in for only in-house members. so they host their on server. such time of work generally to be used only Intranet. and they don&#8217;t want internet people to logged in for the application. In such case LDAP login [...]]]></description>
			<content:encoded><![CDATA[<p>Some people like to use website to be logged in with external people. Some people wants logged in for only in-house members. so they host their on server. such time of work generally to be used only Intranet. and they don&#8217;t want internet people to logged in for the application. In such case LDAP login will be one solution. most of the organization already have their ldap is configured. so web application need to use LDAP details.</p>
<p>Following are the thing which I am expecting to be installed on your machine.</p>
<ul>
<li>openldap</li>
<li>php-ldap module</li>
<li>phpldapadmin [just to cross check functionality]</li>
</ul>
<p>LDAP is having their own structure of managing and maintaining the hierarchy. each level of representation have their pre defined schemas. These schemas are written in /etc/openldap/ldap.conf &amp; /etc/openldap/slapd.conf both of these files are only accessible to root. Please note that I have made this development in linux operating system so all documentation written here are base of linux things. </p>
<p>Now As development point of view. if you want to make the working environment on your local machine you have to perform following details.</p>
<p>Now first step is to configure slapd.conf just login as root and open this file for edit and you will see first 4-5 lines which represent their schemas</p>
<p> <code>include /etc/openldap/schema/corba.schema <br />include /etc/openldap/schema/core.schema <br />include /etc/openldap/schema/cosine.schema <br />include /etc/openldap/schema/duaconf.schema </code></p>
<p>Please note that every ldap having different set have schemas. so depending upon their ldif file has to be written. Here I have considered default installation made in fedora 13. basically ldap stores in details in light weight database structure bdb (burckley DB) or ldbm. Here I have considering bdb.</p>
<p>in slapd.conf file you will find these lines.</p>
<p><code>database bdb</code><br /><code>suffix &quot;dc=runwalsoft&quot;</code> <br /><code>rootdn &quot;cn=root,dc=runwalsoft&quot;</code></p>
<p>Might be dc and cn will be different machine to machine. Note that dc is suppose to be domain name. let say if you have your server as <em>something.com </em>then dc will be dc=something,dc=com. There are few terminologies which you need to understand here.</p>
<p>dn = Distinguished Name, cn = common name, rdn = relative distinguish name, dit = directory information tree, slapd = standalone LDAP.</p>
<p>Now In the same file you will find &quot;rootpw&quot; this is main admin password for ldap. In *nix system admin is always called as root. so machine root and ldap root you can seperate it. and its password you can set with line as follow</p>
<p>rootpw {SSHA}sDH698lRKptqw6d1uFmAKifrgZnvlcGc</p>
<p>Here ssha is encryption which is used. for setting new password you can use <em>slappasswd </em>command. when you type this in terminal they will give you some encryption for it.</p>
<p>Few lines at bottom you will find word <em>directory </em>so this is directory path where the actually directory is stored. now last but not the least at the bottom you will have to give others to access this ldap. if you don&#8217;t give access to ldap rest of the things will not be possible to use it.</p>
<p><code>access to * by dn.exact=&quot;cn=root,dc=runwalsoft&quot; read by * none</code></p>
<p>With the above line we are allowing people(inhouse users) to use access ldap structure. Now this is all you have configured ldap configuration. Now its main part is to add users or information into ldap. but before that you need to be sure whether whether ldap is working properly or not.</p>
<p>on services make sure you have enabled slapd service. or you can from command prompt start slapd service</p>
<p>service slapd restart</p>
<p>Always make one thing sure that whatever you made changes in any conf file you have to restart that service.</p>
<h1 style='font-size:14px;text-align:left;color:black;margin-top:20px;padding:0;'>How to see whether ldap is properly configured or not ?</h1>
<p>Just open terminal(command prompt) and type following code</span></p>
<p><code>ldapsearch -x -b '' -s base '(objectclass=*)'</code></span></p>
<p>In that output if you see dc then it means that functionality is proper. and configuration is made proper. </span></p>
<p>Now next part is to add ldap details e.g. user and other information. Now you have to know that every information which we are going to save it has to work with schemas which is included in slapd.conf file.</span></p>
<p>Lets create one file &quot;working.ldif&quot; where we are going to add following set of code.</span></p>
<div style='padding:10px;background-color:#DCDCDC;width:350px;'># Entry 1: dc=runwalsoft <br />dn: dc=runwalsoft<br />dc: runwalsoft<br />description: This will be Hostname;<br />o: bowling<br />objectclass: dcObject<br />objectclass: organization</p>
<p># Entry 2: ou=people,dc=runwalsoft<br />dn: ou=people,dc=runwalsoft<br />description: These are peoples<br />objectclass: organizationalUnit<br />ou: people</p>
<p># Entry 3: cn=manish,ou=people,dc=runwalsoft<br />dn: cn=manish,ou=people,dc=runwalsoft<br />cn: manish<br />objectclass: inetOrgPerson<br />objectclass: top<br />ou: Developers<br />sn: manish<br />title: Manish Runwal<br />uid: manish<br />userpassword: fedora</p>
<p># Entry 4: cn=pravin,ou=people,dc=runwalsoft<br />dn: cn=pravin,ou=people,dc=runwalsoft<br />cn: pravin<br />mail: pravin@runwalsoft.com<br />objectclass: inetOrgPerson<br />objectclass: top<br />ou: Developers<br />sn: pravin<br />title: Pravin Nirmal<br />uid: pravin<br />userpassword: fedora</p>
<p># Entry 5: cn=user1,ou=people,dc=runwalsoft<br />dn: cn=user1,ou=people,dc=runwalsoft<br />cn: User1 Lastname<br />cn: user1<br />mail: user@runwalsoft.com<br />objectclass: inetOrgPerson<br />objectclass: top<br />ou: Human Resource<br />sn: user1<br />uid: ulast1<br />userpassword: user1</p>
<p></div>
<p>Now next part will be adding this working.ldif file to ldap structure for that you need to use following command.</span></p>
<p><code>ldapadd -x -D &quot;cn=root,dc=runwalsoft&quot; -w-f working.ldif </code></span></p>
<p>After that this will ask for root&#8217;s password. enter the password, and done. things are working. now&#8230;</span></p>
<p>how to see structure of our newly created ldap ?. </span></p>
<p>a) Either you can use php program or b) you can use phpldapadmin</span></p>
<p>before making the program. I hope you have installed phpldapadmin when you try to visit site http://localhost/phpldapadmin you will see it is asking for login dn and Password</span></p>
<p>Now dn is the thing which you have written in slapd.conf file so in dn box you have to write the following things.</span></p>
<p><span style=" font-family:'Dejavu Sans Mono'; color:#000000; background-color:#e9e9e8;">cn=root,dc=runwalsoft</span></p>
<p>and in password write down the password . I am expecting that this will allows you to connect and make it working. now let say if you don&#8217;t want to login with root then also you can properly use phpldapadmin. just in dn you have to write complete path.</span></p>
<p><span style=" font-family:'Dejavu Sans Mono'; color:#000000; background-color:#e9e9e8;">cn=user1,ou=people,dc=runwalsoft</span></p>
<p>and in pasword : user1 </span>
<p>this also allows you to connect to ldap. please note that phpldapadmin only allows you to view bottom childs of your hierarchy and not the parent. </span></p>
<p>Now you will notice that when we try to create child node for ldap structure we have to use their objectClass so these objectClass differs from schema to schema. Now in the next blog you will learn how to connect ldap using php. </span></p>
<p>If you have any question don&#8217;t hesitate to ask me. I will respond your comments. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2010/07/working-with-ldap-details/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with mysql foreign keys.</title>
		<link>http://www.runwalsoft.com/blog/2010/02/working-with-mysql-foreign-keys/</link>
		<comments>http://www.runwalsoft.com/blog/2010/02/working-with-mysql-foreign-keys/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 10:18:19 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[mysql drop foreign key]]></category>

		<category><![CDATA[mysql foreign key]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=139</guid>
		<description><![CDATA[We have seen that most of the time people write many lines of code. Might be the reason behind is that they either don&#8217;t know the capabilities of the each and every modules. Out of that different module one module is mysql.
As most of the websites having some kind of relational database. where their is [...]]]></description>
			<content:encoded><![CDATA[<p>We have seen that most of the time people write many lines of code. Might be the reason behind is that they either don&#8217;t know the capabilities of the each and every modules. Out of that different module one module is mysql.</p>
<p>As most of the websites having some kind of relational database. where their is one master table. and their keys are used in other tables. But if the programmer don&#8217;t know about the foreign keys then they write the code at the time of deleting the record e.g</p>
<p>Lets imagine that We have 2 tables</p>
<ol>
<li>Books</li>
<li>Purchasers</li>
</ol>
<p>people write following syntax.</p>
<pre>create table books ( id smallint primary key auto_increment , name varchar(100));
create table purchasers (id smallint primary key auto_increment , bookid smallint , pur_name varchar(100));</pre>
<p>While creating this, many programmer forgot major things. as they are creating these tables with storage engine as myISAM. but they forgot all transactional details need to be saved in InnoDB.  and current released version&#8217;s of <strong>mysql support foreign key for only innodb</strong>. and Now php is being concern they write code for 2 sql statement for deleting books and their purchasers. this is really bullship.</p>
<p>Now We have seen that when we got the work for existing websites. we seen similar things in many cases( almost all the cases). this really increases lots of efforts in programming as well as maintaining the codes. For owner of websites , they don&#8217;t bother(rather they don&#8217;t know) what other/older programmers written on it.  this increases our efforts even more. And now our database designer taking meetings with programmer and explaining the things was older database. so programmer have to find excessive work written on the code.  and replace with just simple modification made by our DB designer.</p>
<p>First Important thing needed is to first convert required tables into innodb</p>
<pre>alter table books engine = 'innodb';
alter table purchasers engine = 'innodb' ;</pre>
<p>Then Adding of foreign keys.</p>
<pre>alter table purchasers add foreign key (bookid) references books(id) on delete cascade on update cascade ;</pre>
<p>Doing This will add foreign key so that when we delete any book it will delete all their respective references given on purchasers table. which can be achieved with only single sql execute in php see the following line.</p>
<pre>delete from books where id = _NUMBER_</pre>
<p>some time we have seen that we have to drop foreign keys. and mysql manual says that use the following syntax.</p>
<pre>alter table <em>tableName</em> drop foreign key <em>keyName</em> ;</pre>
<p>But now the problem is that how to get that key name.  Then you need to use following way.</p>
<pre>show create table <em>tableName</em>;</pre>
<p>Doing this you will get name of foreign key. then delete the foreign key and index key.  Please note that when you want to add foreign key to any table try to make foreign key symbol name by your own rather than automated by mysql. This will easier for you manage and maintaining the all the keys. every foreign key comes with 2 kays one foreign key and one index key. if you just delete only foreign key then it will not be good way. as you are keeping garbage of index kay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2010/02/working-with-mysql-foreign-keys/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How much we charge for per hour per man rate ?</title>
		<link>http://www.runwalsoft.com/blog/2009/10/how-much-we-charge-for-per-hour-per-man-rate/</link>
		<comments>http://www.runwalsoft.com/blog/2009/10/how-much-we-charge-for-per-hour-per-man-rate/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:01:11 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Ourself]]></category>

		<category><![CDATA[charges for software]]></category>

		<category><![CDATA[Cost per man hour]]></category>

		<category><![CDATA[low cost software development]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=136</guid>
		<description><![CDATA[On October 17, Diwali we all friends gathered at our home. Lots of chat regarding new technologies and costing and future scope of all friends. One of my friend just come from US. As he is working their in some software company. Just for the curiosity , he asked me how much you charge for [...]]]></description>
			<content:encoded><![CDATA[<p>On October 17, Diwali we all friends gathered at our home. Lots of chat regarding new technologies and costing and future scope of all friends. One of my friend just come from US. As he is working their in some software company. Just for the curiosity , he asked me how much you charge for the project. Most of the time I generally prefer to work on fixed prized project. but now recently we have  seen that many customer like to change their requirement while seeing the progress of the work. so they doesn&#8217;t falled into fixed prize structure.</p>
<p>I told my friend that <strong>I generally charge 12 - 14$ per hour per man.</strong> He just shocked to hear my words. Saying me that this is one of the cheapest rate in US. As this charges are for unskilled labour over their. I said, I agree on this. but thats the reason you will save cost while transfering(outsouceing) work to us.</p>
<p>Many people thinks that if we are charging less means that we are not giving the quality. But Who told that quality having any relation with cost. Basically we keep our expenses very tight. We try to avoid extra cost which required for running business. As far as the quality is concern all our customers are satisfied with our quality. and they are still happy to give more work to us.</p>
<p>Its all depends how many work head your project requires. If something is giving less in cost then why to spend more money on expensive things.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/10/how-much-we-charge-for-per-hour-per-man-rate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use Site API to create short url?</title>
		<link>http://www.runwalsoft.com/blog/2009/04/how-to-use-site-api-to-create-short-url/</link>
		<comments>http://www.runwalsoft.com/blog/2009/04/how-to-use-site-api-to-create-short-url/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 13:30:33 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[bit.ly integration]]></category>

		<category><![CDATA[cli.gs]]></category>

		<category><![CDATA[cli.gs integration]]></category>

		<category><![CDATA[CURL Programming]]></category>

		<category><![CDATA[JSON]]></category>

		<category><![CDATA[shortening url]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=127</guid>
		<description><![CDATA[Recently there was one requirement for one customer.  where we have to post data to twitter application. but twitter when submitting comments on twittter, twitter having limitation that it has only 140 characters to be posted for status. out of that customer wants to post their blog&#8217;s url as well.
Now things started making complicated. I [...]]]></description>
			<content:encoded><![CDATA[<p>Recently there was one requirement for one customer.  where we have to post data to twitter application. but twitter when submitting comments on twittter, twitter having limitation that it has only 140 characters to be posted for status. out of that customer wants to post their blog&#8217;s url as well.</p>
<p>Now things started making complicated. I have suggested him to doc one short domain but later realize that he doesn&#8217;t have option to part domain for their hosting. so I have been told to use API for which will programmatically convert long url into short url.  so I have  added this blog so that people will understand how to create program which will dynamically covert long url into shorter one.</p>
<p>All the methods which I have suggested based on php programming.</p>
<p><strong>Requirement :</strong></p>
<p>I have used some of higher php function for that it needs you have 5.2.0+ and JSON is integrated. and Curl option is enable for your domain.</p>
<p>There has been 2 sites which we are working on <a href="http://cli.gs">http://cli.gs</a> and <a href="http://bit.ly">http://bit.ly</a> now you have registered their site. I hope they are still free and get <strong>Key</strong> as basically these are the keys which want while processing.</p>
<h3>cli.gs</h3>
<p>For This site you need to understand POST is not accepted by cligs. so you have to send data in get method.</p>
<pre>&lt;?php

$key = "abe34849f398d02b83abf64ed6690ef5a"; // This will be your key
$tobeShorten = "http://www.runwalsoft.com/blog/index.php";
// This will be url which you want to make it short
$url = "http://cli.gs/api/v1/cligs/create";
$param = "url=". urlencode($tobeShorten) ."&amp;title=This is testing&amp;key={$key}&amp;appid=RunBlog";
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url . "?" . $param);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);
// Look at the returned header
$resultArray = curl_getinfo($ch);
curl_close($ch);

if($resultArray['http_code'] == 200)
{
  // This means that key is correct and the url which you have given is also working.
  echo "Short url is &lt;b&gt;" . $result . "&lt;/b&gt;";
}
else
{
  echo "Error occured " . $resultArray['http_code'] ;
}

?&gt;</pre>
<p>Note : here key which I have written is dummy key. where you have to copy paste the key which you got from the site. and see you will get short url</p>
<h3>Bit.ly</h3>
<p>For Bit.ly there are few advantages and few are disadvantages. we can create 5 links concurently from same IP address. though that is really rare condition. advantage is that you can process multiple links at the same time. Means let say you want to convert 4 links in just one CURL call then it will be possible. and here you can use POST as well as GET mothod.</p>
<p>In both site you need to understand we have taken care of response from the server. if we got response header as 200 ( which means OK) then everything moving on is preety good. by default bit.ly provides response in JSON. I hope you know that thing. if you don&#8217;t know much just <a href="http://www.json.org/" target="_blank">visit here</a> its one of the simple method to process.</p>
<p>There is another option as well to process reponse as xml but I also still feel better to use JSON.</p>
<pre>&lt;?</pre>
<pre>$key = "R_c02b4ad85ccdsde92asdfe3951dfac08";
$username = "mrunwal" ;  // This is username when you register on their site.
$tobeShorten = "http://www.runwalsoft.com/blog/index.php";
$url = "http://api.bit.ly/shorten";

$param = "url=". urlencode($tobeShorten) ."&amp;title=This is testing&amp;key={$key}&amp;appid=RunBlog";
$param = "version=2.0.1&amp;longUrl=". urlencode($tobeShorten) ."&amp;login=". $username ."&amp;apiKey=" . $key ;

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url . "?" . $param);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);
// Look at the returned header
$resultArray = curl_getinfo($ch);
curl_close($ch);

//Following is the method to handle json output

//This function REQUIRES you should have php5.2.0 +
$result = json_decode($result,TRUE);</pre>
<pre>// This is the response which you gets from curl
<span style="color: #808000;">/* "errorCode": 0, "errorMessage": "", "results": { "http://www.runwalsoft.com/blog/index.php":
{ "hash": "ptlxO",<span style="color: #808000;"> </span></span><span style="color: #808000;">"shortKeywordUrl": "", "shortUrl": "http://bit.ly/11vL1X", "userHash": "11vL1X" } },
"statusCode": "OK" */</span>

if($resultArray['http_code'] == 200 &amp;&amp; $result['errorCode'] == 0 &amp;&amp; $result['statusCode'] == "OK")
{
  // This means that key is correct and the url which you have given is also working.
  echo "Short url is &lt;b&gt;" . $result['results'][$tobeShorten]['shortUrl'] . "&lt;/b&gt;";
}
else
{
  echo "Error occured " . $resultArray['http_code'] ;
}

?&gt;</pre>
<p>Using this way it will be easier for you to process all shortenning of url. I hope you will feel better to use Runwalsoft&#8217;s programming for your current project. don&#8217;t botter to contact us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/04/how-to-use-site-api-to-create-short-url/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multilevel Marketing Project</title>
		<link>http://www.runwalsoft.com/blog/2009/04/multilevel-marketing-project/</link>
		<comments>http://www.runwalsoft.com/blog/2009/04/multilevel-marketing-project/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 06:45:50 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[best admin design]]></category>

		<category><![CDATA[downline]]></category>

		<category><![CDATA[multilevel chaining]]></category>

		<category><![CDATA[multilevel marketting]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=121</guid>
		<description><![CDATA[One day phone rang. some one heard about my work. and he wants to meet me. I have given him address and few members just arrived in our office. and they have narrated their problem in managing in multilevel marketing work. I said that their work will even much easier if they go with websites. [...]]]></description>
			<content:encoded><![CDATA[<p>One day phone rang. some one heard about my work. and he wants to meet me. I have given him address and few members just arrived in our office. and they have narrated their problem in managing in multilevel marketing work. I said that their work will even much easier if they go with websites. and they can easily manage their down chain.</p>
<p><strong>Requirement : </strong>This is really Big in their requirement. I know most of the multilevel marketting peoples really like to see this work. or even like to purchase similar software.  Let say there are some 50 forms which will be dispatched by admin and so they don&#8217;t have any sponsor. and each form will given to 50 person. and Once payment is received then each person we will deliver 4 forms.  In short in long run each person will have only and only 4 forms.</p>
<p>For Every member you have there is specific time [we called expiry] they have to sold their 4 forms. and once their 4 forms is sold then some sort of commission + gift will be given by owner.</p>
<p>&#8230;there are even more detail&#8230; stay tuned. wann visit site <a href="http://www.parasmanisuitings.com" target="_blank">http://www.parasmanisuitings.com </a></p>
<p>if you want to create similar web site then we will arrage some demo of existing work so that you will get confidence and can able to see backend(back office work). This will helps you to manage your contents. Thats the benefits of Runwalsoft&#8217;s programming efforts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/04/multilevel-marketing-project/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AHVideoz.com&#8217;s new theme on move</title>
		<link>http://www.runwalsoft.com/blog/2009/03/ahvideozcoms-new-theme-on-move/</link>
		<comments>http://www.runwalsoft.com/blog/2009/03/ahvideozcoms-new-theme-on-move/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 05:38:27 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[ahvideoz]]></category>

		<category><![CDATA[memcache]]></category>

		<category><![CDATA[smarty example]]></category>

		<category><![CDATA[sprite work]]></category>

		<category><![CDATA[www.ahvideoz.com on line videoz]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=109</guid>
		<description><![CDATA[As this web site quite looks similar to albumhunt.com but there are many different things which was not in albumhunt or previous version of ahvideoz. as previous version of ahvideoz had problem of security which he wants to fix with new system. though system is already being ready 1 month ago. But there is drastic [...]]]></description>
			<content:encoded><![CDATA[<p>As this web site quite looks similar to <a href="http://www.albumhunt.com" target="_blank">albumhunt.com</a> but there are many different things which was not in albumhunt or previous version of ahvideoz. as previous version of ahvideoz had problem of security which he wants to fix with new system. though system is already being ready 1 month ago. But there is drastic efforts was taken on testing this web site. when system was on alpha stage then old version web site reported one more problem that search feature is blocking/locking all the tables.</p>
<p>As any how we need to support that customer. though this part is their major problem and never like my customer in trouble. I told them that we need to upgrade</p>
<ul>
<li>Mysql server</li>
<li>Installed Memcache module</li>
<li>Grant user for creating procedures, trigger, functions.</li>
</ul>
<p>As server company was belong to his friend. and he is quite friendly with me as well. so upgraded the module. thought memcache need to add some part in our programming. this make that site even super fast. and load on the server was drastically reduced. as most of queries(lots of sql statement) are being executed in cache parts so its very obvious that program will be move faster.</p>
<p>Previous version belongs table structure. and new version of the site itself tableless structure so html pages are moving even more faster. This is the work which I really happy to deliver bcz lots of things working as per my expection. There is another project &#8220;parasmani suiting&#8221; for that I had contacted <a href="http://hosting.indiatimes.com/" target="_blank">Indiatimes&#8217;s hosting panel</a> but their staff are one the fool peoples. They have upgraded mysql to mysql5.0 but doesn&#8217;t provided permission to user for creating procedures , trigger or function. so I unable to provide advance features to my customer. Here in this case, hosting guys are really smart enough to understand technologies and ready to move for advance versions.</p>
<p>In this project we have used sprits as well. to understand sprite keep in touch with this blog. This whole work is carried out in smarty template engines. It looks that I fall in love with smarty. <img src='http://www.runwalsoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is how their new site looks like.</p>
<div id="attachment_110" class="wp-caption alignnone" style="width: 560px"><img class="size-full wp-image-110" title="Ahvideoz.com's title" src="http://www.runwalsoft.com/blog/wp-content/uploads/2009/03/ahvideoz1.jpg" alt="New Theme for Ahvideoz" width="550" height="436" /><p class="wp-caption-text">New Theme for Ahvideoz</p></div>
<p>when <a href="http://www.ahvideoz.com" target="_blank">ahvideoz</a> saw this site then he is also happy to give his more work to <a href="http://runwalsoft.com">runwalsoft</a>.  and thats what I called goodwill for me. There are some minor changes on the site and then we will move another work for this customer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/03/ahvideozcoms-new-theme-on-move/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One more good site is live. www.printitindia.com</title>
		<link>http://www.runwalsoft.com/blog/2009/03/one-more-good-site-is-live-wwwprintitindiacom/</link>
		<comments>http://www.runwalsoft.com/blog/2009/03/one-more-good-site-is-live-wwwprintitindiacom/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 05:13:19 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Admin panel]]></category>

		<category><![CDATA[printitindia.com]]></category>

		<category><![CDATA[smarty example]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=105</guid>
		<description><![CDATA[As most of the time I never accept the work from local customer. reason for doing is that they never pay on time.  But one day I had one phone call from my friend saying that &#8216;Manish , we have to do one web site.&#8217; and he specifically looking for me to handle this work. [...]]]></description>
			<content:encoded><![CDATA[<p>As most of the time I never accept the work from local customer. reason for doing is that they never pay on time.  But one day I had one phone call from my friend saying that &#8216;Manish , we have to do one web site.&#8217; and he specifically looking for me to handle this work. But  schedule is so tight that I barely get time for this project. but he said he already commited that his site will be created by <a href="http://runwalsoft.com" target="_self">Runwalsoft</a> itsself. so finally I keep his words.</p>
<p>So first we have shown him 5 template.  from which he likes 2 different things. some part of  first theme and some part of another theme. and our best designer have make such a fabulous themes and logo for them. which customer hardly objected. Work is started with daily updation and chatting with him, and we decided to move forward with smarty tempalte system. though my friend don&#8217;t know about net technologies but he trust me so much and given me full authority on technologies.</p>
<p>When work is on completion he decided to add few more points which was not the part of theme. but I also thought that he is saying correct. as majority of theme looks little white color. so later added few more designing things and great flash created by designer. and finally site looks like this. <a href="http://www.printitindia.com" target="_blank">www.printitindia.com</a></p>
<div id="attachment_106" class="wp-caption alignnone" style="width: 560px"><img class="size-full wp-image-106" title="PrintItIndia's theme" src="http://www.runwalsoft.com/blog/wp-content/uploads/2009/03/printit1.jpg" alt="PrintItIndia's Theme" width="550" height="477" /><p class="wp-caption-text">PrintItIndia&#39;s Theme</p></div>
<p>when we tried to upload the site then found that there hosting was free hosting on godaddy. and godaddy having some extra code for free sites. They generally add extra Advertise on free site. but that advertise doesn&#8217;t look good on the site. which we really need to stop that. so we added one css coding which makes site really working good.</p>
<p>Customer also want that their product need to driven from admin panel. and they are displayed on index page with small scrolling between the product. so as per their expection we have finally deliver work in just 1 week. and he is so happy that I can not express in words.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/03/one-more-good-site-is-live-wwwprintitindiacom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make site super fast?</title>
		<link>http://www.runwalsoft.com/blog/2009/01/how-to-make-site-super-fast/</link>
		<comments>http://www.runwalsoft.com/blog/2009/01/how-to-make-site-super-fast/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 06:00:27 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[css optimization]]></category>

		<category><![CDATA[making site faster]]></category>

		<category><![CDATA[memcache]]></category>

		<category><![CDATA[optimization]]></category>

		<category><![CDATA[site optimization]]></category>

		<category><![CDATA[sprite]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=101</guid>
		<description><![CDATA[You might have seen that google, yahoo and many other sites are super fast. Though there are many thing which affect to make site super fast. But lets discuss some of the points which belongs to programming or programmer.
Most of the time what we design is much important. because if design is wrong then it [...]]]></description>
			<content:encoded><![CDATA[<p>You might have seen that google, yahoo and many other sites are super fast. Though there are many thing which affect to make site super fast. But lets discuss some of the points which belongs to programming or programmer.</p>
<p>Most of the time what we design is much important. because if design is wrong then it will affect the performance of the site. let see following points step by step.</p>
<ul>
<li>Database</li>
<li>Image Creation</li>
<li>HTML Pages</li>
<li>CSS Handling</li>
<li>Cache Utilization</li>
<li>Hardware related things [ This things belongs to hosting company so it will not be explain]</li>
</ul>
<p>I will explain each points with you in short time.  stay tune.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/01/how-to-make-site-super-fast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Steps for coverting mysql to mysqli</title>
		<link>http://www.runwalsoft.com/blog/2009/01/steps-for-coverting-mysql-to-mysqli/</link>
		<comments>http://www.runwalsoft.com/blog/2009/01/steps-for-coverting-mysql-to-mysqli/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 07:05:09 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Technologies]]></category>

		<category><![CDATA[mysql5.0]]></category>

		<category><![CDATA[mysqli]]></category>

		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=96</guid>
		<description><![CDATA[As mysql and mysqli both belongs to same mysql server. mysql and mysqli as just modules provided with php.
when we started working on php and mysql then only mysql module was provided and different hosting company even not updated their mysql for latest version. so specifically we had to use the old technique to access [...]]]></description>
			<content:encoded><![CDATA[<p>As mysql and mysqli both belongs to same mysql server. mysql and mysqli as just modules provided with php.</p>
<p>when we started working on php and mysql then only mysql module was provided and different hosting company even not updated their mysql for latest version. so specifically we had to use the old technique to access these things. now many things are changing.  People at the server company realize that they need to keep updated servers then only they will get more customer for their hostings. and now a days even customer are already known abt pros and cons of databases.</p>
<p>Now things begins here.  now you have old traditional web site which was created using old techniques and you want to make things more optimised and go with new cutting edge technologies. so there few things which you really need to keep in mind that now a days different layers are used for web sites. its not as easy as what traditional methods.  now on every front peoples are getting more advance. just for the sake of example. now for handling database there are dedicated peoples who knows clustering , memorycache ing for mysql. and in designing now advance flash version details are used with greate features. some templating used to keep site flexible to modify. and here we(Runwalsoft) have made all front details advance. each of our designer, programmer, database handlers are advance. they know how to tacles the hits. and how to mange more hits without losing their customers.</p>
<p>just for the sake of programmer. let say if you have used to open database connection you might have used.</p>
<pre>$cn = mysql_connect('localhost','root','password') or die ('Unable to connect' . mysql_error());</pre>
<p>which now you have to change like this.</p>
<pre>$cn = new MySQLi('localhost','root','password','DatabaseName') or die("Unable to connect");</pre>
<p>in the similar fashion you have to change queries as well previously we was using</p>
<pre>$rs = mysql_query($sql,$cn) or die("Unable to find sql statement&lt;br&gt;" . mysql_error());</pre>
<p>which is now</p>
<pre>$rs = $mysqli-&gt;query($cn, $sql) or die("Unable to find sql statement &lt;br&gt;" . $mysqli-&gt;error);</pre>
<p>I know that this is very very simple things but sometime people forgot how to use these.  so I am writting this for newbie. mysqli means that mysql improved. and it having my good features along with it. I will update few more lines after some time. lets have start atleast. <img src='http://www.runwalsoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2009/01/steps-for-coverting-mysql-to-mysqli/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EducationAndMore work is now ready and live.</title>
		<link>http://www.runwalsoft.com/blog/2008/12/educationandmore-work-is-now-ready-and-live/</link>
		<comments>http://www.runwalsoft.com/blog/2008/12/educationandmore-work-is-now-ready-and-live/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 05:22:08 +0000</pubDate>
		<dc:creator>Manish Runwal</dc:creator>
		
		<category><![CDATA[Projects]]></category>

		<category><![CDATA[educationandmore.com]]></category>

		<category><![CDATA[paypal]]></category>

		<category><![CDATA[puzzles creation]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://www.runwalsoft.com/blog/?p=90</guid>
		<description><![CDATA[This is another example that we have successfully transform old site with new design and some modification on logic.
Old Design
New Design
Major changes which we have delivered. we have given them paypal integration. with customized puzzles created for them. even admin can approve and disapprove puzzles created by customers.
As they already had admin panel so we [...]]]></description>
			<content:encoded><![CDATA[<p>This is another example that we have successfully transform old site with new design and some modification on logic.</p>
<p><strong>Old Design</strong></p>
<div id="attachment_91" class="wp-caption alignnone" style="width: 410px"><a href="http://www.runwalsoft.com/blog/wp-content/uploads/2008/12/educationold.jpg"><img class="size-full wp-image-91" title="educationold" src="http://www.runwalsoft.com/blog/wp-content/uploads/2008/12/educationold.jpg" alt="Education and More Site Old Design" width="400" height="297" /></a><p class="wp-caption-text">Education and More Site Old Design</p></div>
<p><strong>New Design</strong></p>
<div id="attachment_92" class="wp-caption alignleft" style="width: 411px"><a href="http://www.runwalsoft.com/blog/wp-content/uploads/2008/12/educationnew.jpg"><img class="size-full wp-image-92" title="educationnew" src="http://www.runwalsoft.com/blog/wp-content/uploads/2008/12/educationnew.jpg" alt="Education and more site with new design" width="401" height="382" /></a><p class="wp-caption-text">Education and more site with new design</p></div>
<p>Major changes which we have delivered. we have given them <a href="http://www.paypal.com" target="_blank">paypal integration. </a>with customized puzzles created for them. even admin can approve and disapprove puzzles created by customers.</p>
<p>As they already had admin panel so we have appended new things for them such as managing newletters. and setting letters to subscribers with html formats.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.runwalsoft.com/blog/2008/12/educationandmore-work-is-now-ready-and-live/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
