<?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"
	>

<channel>
	<title>yalamber.com</title>
	<atom:link href="http://yalamber.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://yalamber.com</link>
	<description>About me, my learnings and more..</description>
	<pubDate>Sat, 06 Sep 2008 08:41:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>buddypress for socialnetworking site</title>
		<link>http://yalamber.com/2008/09/06/buddypress-for-socialnetworking-site/</link>
		<comments>http://yalamber.com/2008/09/06/buddypress-for-socialnetworking-site/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 08:41:02 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[php]]></category>

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

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

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

		<guid isPermaLink="false">http://yalamber.com/?p=67</guid>
		<description><![CDATA[Hello, I was trying to setup the wordpress mu for my site www.mundhu.com. I successfully set it up. Now i wanted to make it more social and found out about buddypress. According to the site buddypress will transform a vanilla installation of wordpress mu in to the socialnetwork platform. So I thought to give it [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, I was trying to setup the wordpress mu for my site www.mundhu.com. I successfully set it up. Now i wanted to make it more social and found out about <a href="http://www.buddypress.org/" target="_blank">buddypress</a>. According to the site buddypress will transform a vanilla installation of wordpress mu in to the socialnetwork platform. So I thought to give it a try. I was glad I did give a try to it. It was awesome. I am still playing with it. See a demo at <a href="http://www.mundhum.com" target="_blank">www.mundhum.com</a>. If you guys need any help regarding the installation of buddypress you can contact me. WIll try to help you..</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/09/06/buddypress-for-socialnetworking-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting stock information from yahoo.</title>
		<link>http://yalamber.com/2008/09/04/getting-stock-information-from-yahoo/</link>
		<comments>http://yalamber.com/2008/09/04/getting-stock-information-from-yahoo/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 11:24:55 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

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

		<guid isPermaLink="false">http://yalamber.com/?p=63</guid>
		<description><![CDATA[Here is a function to get stock quote information from yahoo:


function getquote($symbol)
{
if (empty($symbol)) {
$symbol = &#039;^dji&#039;;
}
$fields = &#039;sl1d1t1c1ohgv&#039;;
// we use yahoo to get the quotes
//http://download.finance.yahoo.com/d/quotes.csv?s=%5EDJI&#38;f=sl1d1t1c1ohgv&#38;e=.csv
$host = &#039;http://download.finance.yahoo.com&#039;;
// construct the url
$url = $host . &#039;/d/quotes.csv?s=&#039;. urlencode($symbol) .&#039;&#38;f=&#039;.$fields.&#039;&#38;e=.csv&#039;;
// ask yahoo for the .csv file
$csv = fopen($url, &#34;r&#34;);
$data = fgetcsv($csv,10000,&#34;,&#34;);
return $data;
}

How to use the above function:
Forst of all [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a function to get stock quote information from yahoo:</p>
<pre class="syntax-highlight:php">

function getquote($symbol)
{
if (empty($symbol)) {
$symbol = &#039;^dji&#039;;
}
$fields = &#039;sl1d1t1c1ohgv&#039;;
// we use yahoo to get the quotes
//http://download.finance.yahoo.com/d/quotes.csv?s=%5EDJI&amp;f=sl1d1t1c1ohgv&amp;e=.csv
$host = &#039;http://download.finance.yahoo.com&#039;;
// construct the url
$url = $host . &#039;/d/quotes.csv?s=&#039;. urlencode($symbol) .&#039;&amp;f=&#039;.$fields.&#039;&amp;e=.csv&#039;;
// ask yahoo for the .csv file
$csv = fopen($url, &quot;r&quot;);
$data = fgetcsv($csv,10000,&quot;,&quot;);
return $data;
}
</pre>
<p>How to use the above function:</p>
<p>Forst of all include the above function in your script then for the symbol you want to watch the stock information use it:</p>
<p>for ex:</p>
<p>for symbol ^DJI:</p>
<pre class="syntax-highlight:php">

$data = getquote(&quot;^DJI&quot;);
</pre>
<p>It will return an array of data in below form:</p>
<p>$data[0]= symbol.</p>
<p>$data[1]= lastprice</p>
<p>$data[2]= date</p>
<p>$data[3]= time</p>
<p>$data[4]= change</p>
<p>$data[5]= open</p>
<p>$datat[6]= high</p>
<p>$data[7]= low</p>
<p>$data[8]= volume</p>
<p>So you can now echo them to get the desired information.</p>
<p>I hopw it will be useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/09/04/getting-stock-information-from-yahoo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Changing unpk/pk function to database based in phpizabi</title>
		<link>http://yalamber.com/2008/09/04/form-unpk-pk-to-db-based/</link>
		<comments>http://yalamber.com/2008/09/04/form-unpk-pk-to-db-based/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 10:42:58 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[php]]></category>

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

		<guid isPermaLink="false">http://yalamber.com/?p=51</guid>
		<description><![CDATA[ok here is some ideas to do it. I have done it. But i don&#8217;t use phpizabi any more. I have developed my own script. And i had transferred the users, contacts, user gallery to my new script using this method so it can be used by you to convert the phpizabi contact, gallery system [...]]]></description>
			<content:encoded><![CDATA[<p>ok here is some ideas to do it. I have done it. But i don&#8217;t use phpizabi any more. I have developed my own script. And i had transferred the users, contacts, user gallery to my new script using this method so it can be used by you to convert the phpizabi contact, gallery system to database based.<br />
Below is how databse structure will be like for contact and gallery system:</p>
<pre class="syntax-highlight:sql">
CREATE TABLE IF NOT EXISTS `phpizabi_contact` (
`id` int(9) NOT NULL auto_increment,
`user` int(9) NOT NULL,
`friend` int(9) NOT NULL,
`date` int(32) NOT NULL,
`is_blocked` tinyint(1) NOT NULL default &#039;0&#039;,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM ;

CREATE TABLE IF NOT EXISTS `phpizabi_contact_request` (
`id` int(9) NOT NULL auto_increment,
`for_user` int(9) NOT NULL,
`from_user` int(9) NOT NULL,
`date` int(32) NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM ;

-- --------------------------------------------------------

--
-- Table structure for table `phpizabi_gallery`
--

CREATE TABLE IF NOT EXISTS `phpizabi_gallery` (
`id` int(11) NOT NULL auto_increment,
`user` int(10) NOT NULL default &#039;0&#039;,
`img` varchar(100) NOT NULL default &#039;0&#039;,
`date` int(32) NOT NULL,
`album_id` int(32) NOT NULL default &#039;0&#039;,
`title` varchar(250) NOT NULL default &#039;&#039;,
`description` longtext NOT NULL,
`views` int(10) NOT NULL default &#039;0&#039;,
`comments` int(10) NOT NULL default &#039;0&#039;,
`rating` float NOT NULL default &#039;0&#039;,
`votes` int(11) NOT NULL default &#039;0&#039;,
`is_mainpicture` tinyint(1) NOT NULL default &#039;0&#039;,
PRIMARY KEY `id` (`id`),
FULLTEXT KEY `title` (`title`,`description`)
) ENGINE=MyISAM ;

CREATE TABLE IF NOT EXISTS `phpizabi_gallery_album` (
`id` int(11) NOT NULL auto_increment,
`user` int(10) NOT NULL default &#039;0&#039;,
`date` int(64) NOT NULL default &#039;0&#039;,
`cover_img` varchar(64) NOT NULL,
`album_name` varchar(20) NOT NULL default &#039;&#039;,
`album_description` text NOT NULL,
PRIMARY KEY `id` (`id`),
FULLTEXT KEY `album_name` (`album_name`,`album_description`)
) ENGINE=MyISAM ;
</pre>
<p>Now to load the contents of the users from the old phpizabi database to new tables we can use the following script.<br />
Inserting pictures to new gallery table.</p>
<pre class="syntax-highlight:php">
$sql = myQ(&quot;SELECT `id`,`pictures`, `username` FROM `[x]users`&quot;);
while($row = myF($sql)){
$pictures = unpk($row[&quot;pictures&quot;]);
if (!is_array($pictures)) $pictures = array();

foreach ($pictures as $pic) {
myQ(&quot;
INSERT INTO `[x]gallery` (`user`,`img`,`date`,`title`,`description`,`is_mainpicture`)
VALUES
(&#039;{$row[&quot;id&quot;]}&#039;,&#039;{$pic[&quot;FILE&quot;]}&#039;,&#039;&quot;.time().&quot;&#039;,&#039;{$pic[&quot;NAME&quot;]}&#039;,&#039;{$pic[&quot;DESCRIPTION&quot;]}&#039;,&#039;{$pic[&quot;MAIN&quot;]}&#039;)
&quot;);
}
}
</pre>
<p>Inserting contacts to new table:</p>
<pre class="syntax-highlight:php">
$sql = myQ(&quot;SELECT `id`,`contacts` FROM `[x]users`&quot;);
while($row = myF($sql)){
$contacts = unpk($row[&quot;contacts&quot;]);
if (!is_array($contacts)) $contacts = array();

foreach ($contacts as $groupName =&amp;amp;amp;gt; $usersArray) {

if (is_array($usersArray)) foreach ($usersArray as $userArrayKey =&amp;amp;amp;gt; $userEntity) {
myQ(&quot;
INSERT INTO `[x]contact` (`user`,`friend`,`date`)
VALUES
(&#039;{$row[&quot;id&quot;]}&#039;,&#039;{$userEntity}&#039;,&#039;&quot;.time().&quot;&#039;)
&quot;);

}
}
</pre>
<p>This should now transfer all the contacts and gallery pictures to the new table. I think i have covered the main part where you were confused about. After you get the informations in a table. You can code php to function with contact and gallery system. i hope it will be helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/09/04/form-unpk-pk-to-db-based/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Modrewrite.com</title>
		<link>http://yalamber.com/2008/09/02/modrewritecom/</link>
		<comments>http://yalamber.com/2008/09/02/modrewritecom/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 16:12:41 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[site review]]></category>

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

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

		<guid isPermaLink="false">http://yalamber.com/?p=47</guid>
		<description><![CDATA[If you are in need of any help regarding mod-rewrite problems. I strongly recommend you to go to the site www.modrewrite.com There you can get a detailed instructions and informations on modrewrite and also they have a forum where you can ask for your problem. I have successfully learned modrewrite from there. It&#8217;s 100% recommended [...]]]></description>
			<content:encoded><![CDATA[<p>If you are in need of any help regarding mod-rewrite problems. I strongly recommend you to go to the site <a href="http://www.modrewrite.com" target="_blank">www.modrewrite.com</a> There you can get a detailed instructions and informations on modrewrite and also they have a forum where you can ask for your problem. I have successfully learned modrewrite from there. It&#8217;s 100% recommended site for solving your modrewrite problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/09/02/modrewritecom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Storing your session to database in php</title>
		<link>http://yalamber.com/2008/08/29/storing-your-session-to-database-in-php/</link>
		<comments>http://yalamber.com/2008/08/29/storing-your-session-to-database-in-php/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 19:19:20 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

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

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

		<guid isPermaLink="false">http://yalamber.com/?p=45</guid>
		<description><![CDATA[I am developing a custom solutions for my projects. I was finding solution to secure my php applications.  As security is top concerned when I develop my applications. I had to develop a solution for  a shared hosting environment and found out that the session hijacking was a big problem while on shared [...]]]></description>
			<content:encoded><![CDATA[<p>I am developing a custom solutions for my projects. I was finding solution to secure my php applications.  As security is top concerned when I develop my applications. I had to develop a solution for  a shared hosting environment and found out that the session hijacking was a big problem while on shared server. The best solution was to store the session in some where secured place. I Researched about it and fund out that there was already a solution in php to do it. we could actually use session_set_save_handler() function to do it. And for the location to store session database was the suitable place. As database has it&#8217;s own authentication layer. So i decided to use it for my applications.</p>
<p>First create a databse table with following sql in you application datatbase:</p>
<pre class="syntax-highlight:sql">

CREATE TABLE IF NOT EXISTS `yourAppPrefix_sessions` (
`id` varchar(32) NOT NULL,
`access` int(10) unsigned default NULL,
`data` text,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM;
</pre>
<p>Below i wil provide you the code to use it on your own application:</p>
<pre class="syntax-highlight:php">

session_set_save_handler(&#039;_open&#039;,
&#039;_close&#039;,
&#039;_read&#039;,
&#039;_write&#039;,
&#039;_destroy&#039;,
&#039;_clean&#039;);

function _open()
{
return true;
}

function _close()
{

return true;
}

function _read($id)
{

$id = mysql_real_escape_string($id);

$sql = &quot;SELECT data
FROM   `[p]sessions`
WHERE  id = &#039;$id&#039;&quot;;

if ($result = mysql_query($sql))
{
if (mysql_num_rows($result))
{
$record = mysql_fetch_array($result);

return $record[&#039;data&#039;];
}
}

return &#039;&#039;;
}

function _write($id, $data)
{

$access = time();

$id = mysql_real_escape_string($id);
$access = mysql_real_escape_string($access);
$data = mysql_real_escape_string($data);

$sql = &quot;REPLACE
INTO    `[p]sessions`
VALUES  (&#039;$id&#039;, &#039;$access&#039;, &#039;$data&#039;)&quot;;

return mysql_query($sql);
}

function _destroy($id)
{

$id = mysql_real_escape_string($id);

$sql = &quot;DELETE
FROM   `[p]sessions`
WHERE id = &#039;$id&#039;&quot;;

return mysql_query($sql);
}

function _clean($max)
{

$old = time() - $max;
$old = mysql_real_escape_string($old);

$sql = &quot;DELETE
FROM   `[p]sessions`
WHERE  access &amp;amp;lt; &#039;$old&#039;&quot;;

return mysql_query($sql);
}
</pre>
<p>Save the above code and name it session.php or anything you want.</p>
<p>After this where you want to use session in your application. just add following to start session:</p>
<pre class="syntax-highlight:php">

//Store session to database
require_once(&quot;path_to/session.php&quot;);
session_start();
</pre>
<p>Also be sure you have already connected your database before the above code in your applicaiton as it uses database to store session.</p>
<p>Now after this is done you can use session as usual. This just changes the place where your session is stored i.e in database. Other things are as same as you would store session in the local machine. I hope it will make you clear about what I am talking about.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/08/29/storing-your-session-to-database-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>kiratisaathi.com on beta testing</title>
		<link>http://yalamber.com/2008/08/26/kiratisaathicom-on-beta-testing/</link>
		<comments>http://yalamber.com/2008/08/26/kiratisaathicom-on-beta-testing/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 18:59:02 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[portfolio]]></category>

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

		<guid isPermaLink="false">http://yalamber.com/?p=42</guid>
		<description><![CDATA[Hello friends,
I have completed my first custom script. The site is at  www.kiratisaathi.com/index.php Please comeon for the beta testing.
thank you.
]]></description>
			<content:encoded><![CDATA[<p>Hello friends,</p>
<p>I have completed my first custom script. The site is at  <a href="http://www.kiratisaathi.com/index.php" target="_blank">www.kiratisaathi.com/index.php</a> Please comeon for the beta testing.</p>
<p>thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/08/26/kiratisaathicom-on-beta-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>is phpizabi back??</title>
		<link>http://yalamber.com/2008/07/13/is-phpizabi-back/</link>
		<comments>http://yalamber.com/2008/07/13/is-phpizabi-back/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 09:58:30 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[phpizabi]]></category>

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

		<guid isPermaLink="false">http://yalamber.com/?p=39</guid>
		<description><![CDATA[I just saw an security fix update at www.phpizabi.net posted on july,9th. What it does is provide security against the attack used in comment form to reveal other user sensitive informations. The below code protects you from that attack at line 75:


// SQL INJECTIONS / XSS HACKS PROTECTION //////////////////////////////////////////////
$entities = array(&#34;;&#34;=&#62;&#34;&#38;amp;#059;&#34;, &#34;\&#34;&#34;=&#62;&#34;&#38;amp;quot;&#34;, &#34;&#039;&#34;=&#62;&#34;&#38;amp;#039;&#34;, &#34;&#60;&#34;=&#62;&#34;&#38;amp;lt;&#34;, &#34;&#62;&#34;=&#62;&#34;&#38;amp;gt;&#34;, [...]]]></description>
			<content:encoded><![CDATA[<p>I just saw an security fix update at www.phpizabi.net posted on july,9th. What it does is provide security against the attack used in comment form to reveal other user sensitive informations. The below code protects you from that attack at line 75:</p>
<pre class="syntax-highlight:php">

// SQL INJECTIONS / XSS HACKS PROTECTION //////////////////////////////////////////////
$entities = array(&quot;;&quot;=&gt;&quot;&amp;amp;#059;&quot;, &quot;\&quot;&quot;=&gt;&quot;&amp;amp;quot;&quot;, &quot;&#039;&quot;=&gt;&quot;&amp;amp;#039;&quot;, &quot;&lt;&quot;=&gt;&quot;&amp;amp;lt;&quot;, &quot;&gt;&quot;=&gt;&quot;&amp;amp;gt;&quot;, &quot;\\&quot;=&gt;&quot;&amp;amp;#092;&quot;, &quot;^&quot;=&gt;&quot;&amp;amp;#094;&quot;, &quot;{&quot;=&gt;&quot;&amp;amp;#123;&quot;, &quot;}&quot;=&gt;&quot;&amp;amp;#125;&quot;);

if (isset($_POST)) foreach($_POST as $var =&gt; $val)
if (!is_array($val) and substr($var, 0, 1) != &quot;_&quot;)
$_POST[$var] = trim(strtr(stripslashes($val), $entities));

if (isset($_GET)) foreach($_GET as $var =&gt; $val)
if (!is_array($val) and substr($var, 0, 1) != &quot;_&quot;)
$_GET[$var] = trim(strtr(stripslashes($val), $entities));

unset ($var, $val, $entities);
</pre>
<p>I hope phpizabi will be back soon and become stronger. Let&#8217;s hope for it as it was the best script i have ever used.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/07/13/is-phpizabi-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Best freelancing site</title>
		<link>http://yalamber.com/2008/07/13/best-freelancing-site/</link>
		<comments>http://yalamber.com/2008/07/13/best-freelancing-site/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 02:34:55 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[freelance]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=38</guid>
		<description><![CDATA[
There are many freelancing sites which help providers and buyers to interact and find each other.  Many have different system to make the experience better for each of them. Below are some of the best i have found.
1. www.elance.com (just joined it. Loks better)
2. www.guru.com (it looks good)
3. www.getafreelancer.com (Easiest of all)
Try these sevices.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.getafreelancer.com/affiliates/mundhum/"><img src="http://www.getafreelancer.com/img/affiliates/afbanner.gif" border="0" alt="Get custom programming done at GetAFreelancer.com!" width="468" height="60" /></a></p>
<p>There are many freelancing sites which help providers and buyers to interact and find each other.  Many have different system to make the experience better for each of them. Below are some of the best i have found.</p>
<p>1. <a href="http://www.elance.com">www.elance.com</a> (just joined it. Loks better)</p>
<p>2. <a href="http://www.guru.com">www.guru.com</a> (it looks good)</p>
<p>3. <a title="getafreelancer" href="http://www.getafreelancer.com/affiliates/mundhum/" target="_blank">www.getafreelancer.com</a> (Easiest of all)</p>
<p>Try these sevices.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/07/13/best-freelancing-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Exams are over..Time to work..From phpizabi to custom</title>
		<link>http://yalamber.com/2008/07/13/from-phpizabi-to-custom/</link>
		<comments>http://yalamber.com/2008/07/13/from-phpizabi-to-custom/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 02:03:45 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[php]]></category>

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

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

		<guid isPermaLink="false">http://yalamber.com/?p=37</guid>
		<description><![CDATA[Hello everybody, My exams are over and it&#8217;s time to work now. Currently I am working on www.kiratisaathi.com, I am working on it to completely change the site from phpizabi to a custom script I am building. The new script will be completely new but will use the same userbase as the site has more [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everybody, My exams are over and it&#8217;s time to work now. Currently I am working on www.kiratisaathi.com, I am working on it to completely change the site from phpizabi to a custom script I am building. The new script will be completely new but will use the same userbase as the site has more than 700 members registered and many blogs and forum posts. So I need to utilize the database. I hope to complete the work soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/07/13/from-phpizabi-to-custom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sound problem with lenovo y410 series</title>
		<link>http://yalamber.com/2008/06/24/sound-problem-with-lenovo-y410/</link>
		<comments>http://yalamber.com/2008/06/24/sound-problem-with-lenovo-y410/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 14:44:52 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
		
		<category><![CDATA[linux]]></category>

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

		<guid isPermaLink="false">http://yalamber.com/?p=33</guid>
		<description><![CDATA[I installed the ubuntu 8.04 yesterday. After installation i tried to play a video but was unable and told to download some drivers from the net. As suggested i got some drivers installed and the video worked but the sound was not available. I didn&#8217;t cared about it then and just started playing around. After [...]]]></description>
			<content:encoded><![CDATA[<p>I installed the ubuntu 8.04 yesterday. After installation i tried to play a video but was unable and told to download some drivers from the net. As suggested i got some drivers installed and the video worked but the sound was not available. I didn&#8217;t cared about it then and just started playing around. After a while I suspended the system as i had to take my meal. After i again started the system I again tried to play a song. And hurray that worked. I thought the problem was solved. But after I again did a restart. The sound was again lost. So the sound worked only when I suspend and again start. It was a bug with the sound driver. I did a search on net and found out i was not only the one with that problem and several posts were made about it. I can provide you some links if you are having same problem.</p>
<p><a href="http://jaux.net/2008/04/27/solution-to-lenovo-y410-sound-problem-ubuntu-804/">http://jaux.net/2008/04/27/solution-to-lenovo-y410-sound-problem-ubuntu-804/</a></p>
<p>Follow the instructions there and you can get your sound working on lenovo y410.But the sound again doesn&#8217;t work on headphone. It works on speakers only.</p>
]]></content:encoded>
			<wfw:commentRss>http://yalamber.com/2008/06/24/sound-problem-with-lenovo-y410/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
