<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Saavedrah&#039;s Blog</title>
	<atom:link href="http://saavedrah.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://saavedrah.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 13 Aug 2011 14:39:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='saavedrah.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Saavedrah&#039;s Blog</title>
		<link>http://saavedrah.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://saavedrah.wordpress.com/osd.xml" title="Saavedrah&#039;s Blog" />
	<atom:link rel='hub' href='http://saavedrah.wordpress.com/?pushpress=hub'/>
		<item>
		<title>jQuery DataTables Plug-in</title>
		<link>http://saavedrah.wordpress.com/2011/08/13/jquery-datatables-plug-in/</link>
		<comments>http://saavedrah.wordpress.com/2011/08/13/jquery-datatables-plug-in/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 14:39:30 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[DataTables]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=110</guid>
		<description><![CDATA[I just want to post an example of how to configure the DataTables jQuery plug-in. Let&#8217;s say that I have a tree and that every time a node in the tree is clicked a new request is sent to the server and the data in the DataTables plug-in should be updated. The HTML will look [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=110&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just want to post an example of how to configure the DataTables jQuery plug-in. Let&#8217;s say that I have a tree and that every time a node in the tree is clicked a new request is sent to the server and the data in the DataTables plug-in should be updated.</p>
<p>The HTML will look like this</p>
<pre>
<code>
&lt;html&gt;
...
&lt;script type="text/javascript" src="./js/datatables-1.8.1/js/jquery.dataTables.js"&gt;&lt;/script&gt;
...
&lt;div id="content-table"&gt;
  &lt;table id="class-table"&gt;
  &lt;/table&gt;
&lt;/div&gt;
...
&lt;/html&gt;

</code>
</pre>
<p>Now let&#039;s say that I have a JSON response from the server that looks like this:</p>
<pre>
<code>
body : {
  obj [ {
    col1 : &#034;valCol1&#034;,
    col2 : &#034;valCol2&#034;
  } ]
}
</code>
</pre>
<p>Now I need a JavaScript function that is going to create/update the data in the table every time that the response is obtained from the server.</p>
<pre>
<code>
loadDataTable = function(data) {
	var view = $('#class-table');
	var modelList = data.body.obj;

	if ($('#columnHeader').length) {
		var data = [];
		for ( var i = 0; i &lt; modelList.length; i++) {
			data[i] = [
					'&lt;input type="checkbox" name="row-selected" value="false" /&gt;',
					modelList[i].valCol1, modelList[i].valCol2 ];
		}

		view.dataTable().fnClearTable();
		view.dataTable().fnAddData(data);
	} else {
		var html = '';

		html += '&lt;thead id="columnHeader"&gt;';
		html += '&lt;tr&gt;';
		html += '&lt;th id="column-check"&gt;&lt;/th&gt;&#039;;
		html += &#039;&lt;th name=&quot;col1&quot;&gt;Column 1&lt;/th&gt;&#039;;
		html += &#039;&lt;th name=&quot;col2&quot;&gt;Column 2&lt;/th&gt;&#039;;
		html += &#039;&lt;/tr&gt;&#039;;
		html += &#039;&lt;/thead&gt;&#039;;

		html += &#039;&lt;tbody&gt;&#039;;

		for ( var i = 0, count = modelList.length; i &lt; count; i++) {
			html += &#039;&lt;tr&gt;&#039;;

			html += &#039;&lt;td&gt;&lt;input type=&quot;checkbox&quot; name=&quot;row-selected&quot; value=&quot;false&quot;&gt;&lt;/td&gt;&#039;;
			html += &#039;&lt;td&gt;&#039; + modelList[i].valCol1 + &#039;&lt;/td&gt;&#039;;
			html += &#039;&lt;td&gt;&#039; + modelList[i].valCol2 + &#039;&lt;/td&gt;&#039;;
			html += &#039;&lt;/tr&gt;&#039;;
		}
		html += &#039;&lt;/tbody&gt;&#039;;

		view.append(html);

		var oTable = view.dataTable({
			&quot;sScrollY&quot; : &quot;200px&quot;,
			&quot;bPaginate&quot; : false,
			&quot;bDestroy&quot; : true
		});

		/* Adjust the size of the Table */
		$(window).bind(&#039;resize&#039;, function() {
			oTable.fnAdjustColumnSizing();
		});
	}
};

</code>
</pre>
<p>References:</p>
<ul>
<li>
<a href="http://www.datatables.net/" title="DataTables jQuery plug-in" target="_blank">DataTables jQuery plug-in</a>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=110&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/08/13/jquery-datatables-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 11.04 Remote Desktop Keyboard</title>
		<link>http://saavedrah.wordpress.com/2011/06/29/ubuntu-11-04-remote-desktop-keyboard/</link>
		<comments>http://saavedrah.wordpress.com/2011/06/29/ubuntu-11-04-remote-desktop-keyboard/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 14:24:33 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=100</guid>
		<description><![CDATA[Problem When using Remote Desktop to access the Ubuntu server if the &#8216;D&#8217; key is pressed then all the windows are minimized. Solution Go to System-&#62;Preferences-&#62;Keyboard Shortcuts and change the shortcut for &#8216;Hide all normal windows and set focus to the desktop&#8217; References Ubuntu Forum<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=100&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
When using Remote Desktop to access the Ubuntu server if the &#8216;D&#8217; key is pressed then all the windows are minimized.</p>
<p><strong>Solution</strong><br />
Go to System-&gt;Preferences-&gt;Keyboard Shortcuts and change the shortcut for &#8216;Hide all normal windows and set focus to the desktop&#8217;</p>
<p><strong>References</strong></p>
<li><a href="http://ubuntuforums.org/archive/index.php/t-1618733.html" title="Ubuntu Forum" target="_blank">Ubuntu Forum</a></li>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=100&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/06/29/ubuntu-11-04-remote-desktop-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>phpAlbum v/s spgm</title>
		<link>http://saavedrah.wordpress.com/2011/06/09/phpalbum-vs-spgm/</link>
		<comments>http://saavedrah.wordpress.com/2011/06/09/phpalbum-vs-spgm/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 16:24:18 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=87</guid>
		<description><![CDATA[I have been looking for a program that could display my personal pictures on the web using my personal server. I found this two options: phpAlbum and spgm (Simple Picture Gallery Manager), I will try to resume the pro and cons of both options. Both of them do not use any kind of database so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=87&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been looking for a program that could display my personal pictures on the web using my personal server.<br />
I found this two options: phpAlbum and spgm (Simple Picture Gallery Manager), I will try to resume the pro and cons of both options.<br />
Both of them do not use any kind of database so it is easy to handle the folders as I please. Also, both are written in php so the modifications are kind of easy to do.</p>
<p><strong>1 &#8211; <a href="http://www.phpalbum.net/" title="phpAlbum" target="_blank">phpAlbum</a> </strong><br />
- Last version is 0.4.1-14_fix06 generated on July/2009<br />
- Patrik still working on it and the code is on code.google at <a href="http://code.google.com/p/phpalbum-net/source/checkout" title="phpAlbum-net">phpAlbum-net</a><br />
- It does not work very well with lots of pictures. It takes long time creating the cache.<br />
- Has a nice administration page to change the settings of the application.</p>
<p><strong>2 &#8211; <a href="http://spgm.sourceforge.net/" title="spgm" target="_blank">Simple Picture Gallery Manager</a> </strong><br />
- Release 1.4.7 was done in January of 2007<br />
- Source code is on SourceForge <a href="http://sourceforge.net/projects/spgm/" title="spgm" target="_blank"></a>.<br />
- It is very easy to modify and to understand the php logic.<br />
- It is really fast loading the pictures.<br />
- Has a module to integrate video <a href="http://spgm-vid.jhollin1138.com/" title="spgm-vid" target="_blank"></a><br />
- It requires to create thumbnails for each picture. <a href="http://www.xnview.com/" title="xnview" target="_blank">XnView</a> help with this task.<br />
- No too many flavors around. spgm home page gives a database error.<br />
- Under the new version of php the deprecated &#8216;eregi&#8217; has to be changed for preg_match.<br />
For instance:<br />
<code>if ( eregi($spgm_cfg['global']['supportedExtensions'][$i].'$', $strPictureFileName) ) {<br />
</code><br />
should be changed for<br />
<code><br />
if ( preg_match('@'.$spgm_cfg['global']['supportedExtensions'][$i].'$@i', $strPictureFileName) ) {<br />
</code></p>
<p>Ok, that&#8217;s it for tonight.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=87&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/06/09/phpalbum-vs-spgm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Jasper Report Server &#8211; Investigation</title>
		<link>http://saavedrah.wordpress.com/2011/05/19/jasper-report-server-investigation/</link>
		<comments>http://saavedrah.wordpress.com/2011/05/19/jasper-report-server-investigation/#comments</comments>
		<pubDate>Thu, 19 May 2011 15:22:48 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Jasper Report]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=76</guid>
		<description><![CDATA[Investigación sobre Jasper Report Server<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=76&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>El objectivo de este blog es describir como funciona Jasper Report Server.<strong></strong></p>
<p><strong>Creación de los formatos para los reportes</strong></p>
<p>En este caso se utilizará iReport ( otro software para generar formatos es Jasper Assistant ) para generar los formatos en XML, por convención los formatos para los reportes tienen la extensión .jrxml</p>
<p>Algo especial del .jrxml file es que contine el tag el cual define el SQL que se debe ejecutar para obtener la información que se va a incluir en el reporte.</p>
<p>Los valores que el SQL retorna son definidos por el tag<br />
El tag define los encabezados o titulos del reporte.<br />
El tag define la apariencia de los valores que aparecen en el reporte<br />
Los valores que se imprimen en el reporte se definen de le siguiente manera $F{PARAMETRO}</p>
<p><strong>Creación del Reporte (Java)</strong><br />
En java se crea una clase para abrir la conección con la base de datos.<br />
Se crea un objeto que contiene el reporte compilado JasperReport y un objecto que contiene el reporte generado JasperPrint.<br />
Las clases JasperCompileManager, JasperFillManager and JasperExportManager compilan el reporte, llenan el reporte con la información y generan el reporte en el formato requerido.</p>
<p><strong>Referencias</strong></p>
<ul>
<li><a href="http://java.dzone.com/articles/java-reporting-part-2" title="Ejemplo en java" target="_blank">http://java.dzone.com/articles/java-reporting-part-2</a>  : Describe como generar un reporte utilizando java.</li>
<li><a href="http://code.google.com/p/jasperapiclient/source/browse/#svn%2Ftrunk" title="jasper API Client" target="_blank">http://code.google.com/p/jasperapiclient/source/browse/#svn%2Ftrunk</a> :  Es el repositorio para las clases en php que generan los reportes</li>
<li><a href="http://jasperforge.org/espdocs/docsbrowse.php?id=74&amp;type=docs&amp;group_id=112&amp;fid=305" title="Jasper Report Server Manual" target="_blank">http://jasperforge.org/espdocs/docsbrowse.php?id=74&amp;type=docs&amp;group_id=112&amp;fid=305</a> : Es un documento en PDF con la información necesaria para utilizar Jasper Report Server.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=76&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/05/19/jasper-report-server-investigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Access Forbidden</title>
		<link>http://saavedrah.wordpress.com/2011/04/23/ubuntu-access-forbidden/</link>
		<comments>http://saavedrah.wordpress.com/2011/04/23/ubuntu-access-forbidden/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 14:40:36 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=65</guid>
		<description><![CDATA[Problem: Accessing a web page using Ubuntu and Apache the error 404 Forbidden is generated. When checking the error log, usually at /var/log/apache2/error.log, the error &#8220;(13)Permission denied: access to /XYZ/ denied&#8221; is displayed Solution: Make sure that the files and the directory have the right permissions: Permissions for the directory: sudo chmod 755 /var/www/xyz/other And [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=65&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<ol>
<li>Accessing a web page using Ubuntu and Apache the error 404 Forbidden is generated.</li>
<li>When checking the error log, usually at /var/log/apache2/error.log, the error &#8220;(13)Permission denied: access to /XYZ/ denied&#8221; is displayed</li>
</ol>
<p><strong>Solution:</strong><br />
Make sure that the files and the directory have the right permissions:<br />
Permissions for the directory:<em> sudo chmod 755 /var/www/xyz/other</em><br />
And permissions for the files:<em> sudo chmod 755 /var/www/xyz/other/*</em></p>
<p><strong>Note:</strong><br />
If the files to be accessed are in a FAT drive then the drive has to be mounted with the correct permissions.<br />
The /etc/fstab file has to be edited to mount the drive correctly<br />
<code><br />
/dev/sdd1 /mnt/hd3 vfat auto,user,sync,exec,uid=1000,gid=1000,dmask=002,fmask=113 0 0<br />
</code></p>
<p>Where<br />
/dev/sdd1/ is the FAT drive to be mounted<br />
/mnt/hd3 is the place to mount the drive<br />
dmask are the permissions for the directories in octal<br />
fmask are the permissions for the files in octal</p>
<p><strong>References</strong></p>
<li><a href="http://www.atoztoa.com/2009/06/mounting-fat32-partitions-with-full.html" title="Mounting Fat32">Mounting Fat32</a></li>
<li><a href="https://help.ubuntu.com/community/Fstab" title="fstab">fstab</a></li>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=65&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/04/23/ubuntu-access-forbidden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>USA Visa</title>
		<link>http://saavedrah.wordpress.com/2011/02/26/usa-visa/</link>
		<comments>http://saavedrah.wordpress.com/2011/02/26/usa-visa/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 07:03:32 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Visa]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=58</guid>
		<description><![CDATA[Tenía que renovar mi visa a los Estados Unidos y esta vez la renovación se realizó en Tokio. Estos son algunos pasos para la próxima oportunidad. Como la visa anterior fué generada antes del 2007 es necesaria la entrevista con el consul. Entonces hay que ir a esta página y seguir los pasos para pedir [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=58&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tenía que renovar mi visa a los Estados Unidos y esta vez la renovación se realizó en Tokio. Estos son algunos pasos para la próxima oportunidad.</p>
<ol>
<li>Como la visa anterior fué generada antes del 2007 es necesaria la entrevista con el consul. Entonces hay que ir a esta <a href="http://tokyo.usembassy.gov/e/visa/tvisa-niv-walkin1.html">página</a> y seguir los pasos para pedir la entrevista.</li>
<li>Lo primero es completar el formulario DS-160. Para llenar este formulario hay que tener una foto digitalizada, tomó cierto tiempo  subiendo la fotografía, pero finalmente se logró reduciendo el tamaño de la imagen (60Kb). Cuando el formulario esta completo hay que imprimir solo la página de confirmación. Sin embargo es recomendable imprimir cada una de las formas que se van completando para tener una historia. La opción de imprimir el formulario al final no funciona.</li>
<li>Después de llenar el formulario hay que hacer la cita para la entrevista. Teniendo la cita para la entrevista se genera la información para hacer el pago.</li>
<li>En mi caso el pago se hizo en el banco Mizuho en Shizuoka, una persona en el banco me ayudó a hacer la consignación porque no hay ni Español ni Inglés disponible. Esta <a href="http://www.ana.co.jp/dom/reservation/payment/p10mms/payg.html">página</a> es un ejemplo de ATM, está en Japones.</li>
<li>Lo siguiente es reunir los papeles necesarios para la día de la entrevista, hay que tomarse una foto 5cmx5cm, los pasaportes de mis familiares, fotocopia del libro del banco, confirmación del salario recivido, permiso de entrada al Japón, fotocopia de la terjeta de identificación japonesa.</li>
<li>Listos para la entrevista, la cita era a las 9AM pero yo llegé a las 8AM y ya estaban dejando pasar la gente. Reciben los papeles en el primer cubículo, toman las huellas dactilares en otros tres cubículos y hacen la entrevista, a las 11AM ya estaba la visa aprovada y listo para regresar a casa.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=58&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2011/02/26/usa-visa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu &amp; Apache</title>
		<link>http://saavedrah.wordpress.com/2010/12/01/ubuntu-apache/</link>
		<comments>http://saavedrah.wordpress.com/2010/12/01/ubuntu-apache/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 16:07:20 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=48</guid>
		<description><![CDATA[I just installed Ubuntu in my machine and the following page does a great job showing how to install Apache/php/MySql: Install Apache Some of the instructions are copied Install apache : sudo apt-get install apache2 apache2.2-common apache2-mpm-prefork apache2-utils ssl-cert Install php: sudo apt-get install php5 libapache2-mod-php5 Restart apache: sudo /etc/init.d/apache2 restart Install MySql sudo apt-get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=48&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just installed Ubuntu in my machine and the following page does a great job showing how to install Apache/php/MySql:</p>
<p><a href="http://www.hackourlives.com/install-apache-mysql-php-phpmyadmin-lamp-on-ubuntu-10-10/">Install Apache</a></p>
<p>Some of the instructions are copied</p>
<p>Install apache :</p>
<p>sudo apt-get install apache2 apache2.2-common apache2-mpm-prefork apache2-utils ssl-cert</p>
<p>Install php:</p>
<p>sudo apt-get install php5 libapache2-mod-php5</p>
<p>Restart apache:</p>
<p>sudo /etc/init.d/apache2 restart</p>
<p>Install MySql</p>
<pre>sudo apt-get install mysql-client mysql-server</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=48&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2010/12/01/ubuntu-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>VMWare Player Language change</title>
		<link>http://saavedrah.wordpress.com/2010/11/01/vmware-player-language-change/</link>
		<comments>http://saavedrah.wordpress.com/2010/11/01/vmware-player-language-change/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 00:30:23 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=44</guid>
		<description><![CDATA[Recently I installed VMWare Player in a machine that is running a Japanese Windows XP OS. I expected that I was going to be able to change the language to English from the tool bar, but it is not an option available. After checking the RegEdit I found that the application was looking for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=44&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I installed VMWare Player in a machine that is running a Japanese Windows XP OS. I expected that I was going to be able to change the language to English from the tool bar, but it is not an option available.<br />
After checking the RegEdit I found that the application was looking for the folder &#8220;.\Program Files\VMware Player\messages\ja&#8221; so I renamed the folder to &#8220;VMware Player\messages_&#8221; and restart the VMPlayer.<br />
Now the application is running in English, よかった。</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=44&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2010/11/01/vmware-player-language-change/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Win2008 Server &#8211; Local Security Policy disabled</title>
		<link>http://saavedrah.wordpress.com/2010/07/03/win2008-server-local-security-policy-disabled/</link>
		<comments>http://saavedrah.wordpress.com/2010/07/03/win2008-server-local-security-policy-disabled/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 14:26:28 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=40</guid>
		<description><![CDATA[Issue: In Windows Server 2008 the password complexity requirements are set on by default. I wanted to change my user password to something simpler since it is in my development environment. Troubleshoot: The first idea was to go to Administrative Tools &#62; Local Security Policy &#62; Account Policy &#62; Password Policies and change the value [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=40&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Issue:</strong></p>
<p>In Windows Server 2008 the password complexity requirements are set on by default. I wanted to change my user password to something simpler since it is in my development environment.</p>
<p><strong>Troubleshoot:</strong></p>
<p>The first idea was to go to Administrative Tools &gt; Local Security Policy &gt; Account Policy &gt; Password Policies and change the value for &#8220;Password must meet complete requirements&#8221; from Enabled to Disabled. However, it was not possible to change it since it was disabled.</p>
<p><strong>Solution:</strong></p>
<p>Open Group Policy Management (gpmc.msc), select Group Policy Objects &gt; Default Domain Policy, select the Default tab and change the GPO Status to &#8220;User configuration settings disabled&#8221;. After doing this I was able to edit the Password Policies and disable the complete requirements for the password, also changed the &#8220;Minimum Password Age&#8221; and the &#8220;Maximum Password Age&#8221; to zero.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=40&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2010/07/03/win2008-server-local-security-policy-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 Network</title>
		<link>http://saavedrah.wordpress.com/2010/06/22/windows-7-network/</link>
		<comments>http://saavedrah.wordpress.com/2010/06/22/windows-7-network/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 15:35:52 +0000</pubDate>
		<dc:creator>saavedrah</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Installation]]></category>

		<guid isPermaLink="false">http://saavedrah.wordpress.com/?p=34</guid>
		<description><![CDATA[Issue: The main server in my home network is running a XP SP3, this server is in a domain. A new computer running Windows 7 was added to the network using workgroup but it was not added to the domain. When trying to access the XP server from the Win 7 machine an error is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=34&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Issue:</strong></p>
<p>The main server in my home network is running a XP SP3, this server is in a domain. A new computer running Windows 7 was added to the network using workgroup but it was not added to the domain. When trying to access the XP server from the Win 7 machine an error is displayed saying that the access to the server is denied. No login window was displayed whenever the XP server is selected.</p>
<p><strong>Troubleshoot:</strong></p>
<p>The Win 7 Security Policy ( secpol.msc) was modified Local Policy -&gt; Security Options -&gt; Network Security &#8211; LAN Manager was changed to Send LM and LTLM ( Negotiate LTLMv2 ) however the behavior did not change.</p>
<p>In the Sharing Network Center the Recognize Network was enabled, File and Printer Sharing was enabled, in the Home group the User account and Password was enabled. However the access denied still showing up.</p>
<p><strong>Solution:</strong></p>
<p>The XP Server was removed from the domain and added to the Workgroup the same as the Win 7 machine. When selecting the XP machine the Login Window was showed and it was possible to add the shared printer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saavedrah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saavedrah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saavedrah.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saavedrah.wordpress.com&amp;blog=8117453&amp;post=34&amp;subd=saavedrah&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://saavedrah.wordpress.com/2010/06/22/windows-7-network/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cf7a6f32698d42050a604a7ec2d504f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">saavedrah</media:title>
		</media:content>
	</item>
	</channel>
</rss>
