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

<channel>
	<title>Submit Suite Blog &#187; Marius Mailat</title>
	<atom:link href="http://www.submitsuite.com/blog/author/mmariusel/feed" rel="self" type="application/rss+xml" />
	<link>http://www.submitsuite.com/blog</link>
	<description>Submit Suite blog with SEO products and services</description>
	<lastBuildDate>Tue, 24 Nov 2009 10:08:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Webmaster manual for a root server</title>
		<link>http://www.submitsuite.com/blog/webmaster-manual-for-a-root-server-283</link>
		<comments>http://www.submitsuite.com/blog/webmaster-manual-for-a-root-server-283#comments</comments>
		<pubDate>Mon, 16 Nov 2009 14:09:54 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[root server]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/?p=283</guid>
		<description><![CDATA[I receive quite often questions about server and server problems. Most of the webmasters have a root server or at least a vhosting and usually these servers comes with administration &#8220;duties&#8221;. Here is bellow my list with commands I am using for my servers: What I do in case nothing is working and I want [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/webmaster-manual-for-a-root-server-283">Webmaster manual for a root server</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I receive quite often questions about server and server problems. Most of the webmasters have a root server or at least a vhosting and usually these servers comes with administration &#8220;duties&#8221;. Here is bellow my list with commands I am using for my servers:<img title="More..." src="http://www.submitsuite.ro/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-283"></span></p>
<h3>What I do in case nothing is working and I want to repair my system?</h3>
<p>/etc/init.d/psa stopall<br />
umount -a<br />
xfs_check /dev/md1<br />
xfs_repair /dev/md1<br />
xfs_check /dev/md5<br />
xfs_repair /dev/md5<br />
xfs_check /dev/md6<br />
xfs_repair /dev/md6<br />
xfs_check /dev/md7<br />
xfs_repair /dev/md7<br />
xfs_check /dev/md8<br />
xfs_repair /dev/md8<br />
mount /dev/md1 /mnt<br />
mount /dev/md6 /mnt/var<br />
mount /dev/md5 /mnt/usr<br />
mount /dev/md7 /mnt/home<br />
mount /dev/md8 /mnt/srv<br />
chroot /mnt<br />
/etc/init.d/psa start</p>
<p>Obviously, the above commands must match the existing partitioning on your root server.</p>
<h3>How to see the last commands in the system for the current user (or any user)?</h3>
<p>less ~/.bash_history</p>
<p>or</p>
<p>history</p>
<p>Note: These two will work ONLY is history hasn&#8217;t be set to 0 (like for instance issuing a &gt;.bash_history or export HISTSIZE=0</p>
<h3>How can I allow ftp upload resume?</h3>
<p>vi /etc/proftpd.conf<br />
/etc/init.d/xinetd restart</p>
<h3>Who is using the memory?</h3>
<p>top</p>
<h3>Where to tune Apache?</h3>
<p>/etc/apache/httpd.conf<br />
/etc/apache/server-tunning.conf</p>
<h3>Where are Apache logs?</h3>
<p>/var/log/apache2</p>
<h3>How can I show IPs in case of the bot attack?</h3>
<p>netstat -nt</p>
<h3>Show unique ips TCP</h3>
<p>netstat -anp |grep &#8216;tcp&#8217; | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n</p>
<h3>Show unique ips UDP</h3>
<p>netstat -anp |grep &#8216;udp&#8217; | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n</p>
<h3>How can I ban an IP in IP tables?</h3>
<p>iptables -I INPUT -s 217.218.36.11 -j DROP</p>
<h3>How can I backup the MySql database?</h3>
<p>mysqldump &#8211;user=admin &#8211;password=SSSS &#8211;create-options database_name &gt; /tmp/database_name.sql<br />
or<br />
mysqldump -user=admin &#8211;password= SSSS &#8211;all-databases -p &#8211;create-options | bzip2 -c &gt; databasebackup.sql.bz2<br />
or<br />
mysqldump -uadmin -pSSSS &#8211;all-databases &#8211;create-options | bzip2 -c &gt; databasebackup2.sql.bz2</p>
<p>Note: It is strongly recommended to stop MySQL prior to launch the commands above.</p>
<h3>How can I import the MySql database?</h3>
<p>mysql -uadmin -pSSSS database_name &lt; /tmp/database_name.sql</p>
<p>Note: If the &#8211;create-options parameter has been given when the databases were dumped, databases will be automatically imported when importing</p>
<h3>How can I rebuild the Webalizer stats?</h3>
<p>rm -f /usr/local/psa/var/lib/webalizer/webalizer.cache<br />
touch /usr/local/psa/var/lib/webalizer/webalizer.cache<br />
chown root:root /usr/local/psa/var/lib/webalizer/webalizer.cache<br />
chmod 644 /usr/local/psa/var/lib/webalizer/webalizer.cache<br />
stat -f /usr/local/psa/var/lib/webalizer/webalizer.cache<br />
cd /usr/local/psa/admin/sbin/<br />
/usr/local/psa/admin/sbin/statistics</p>
<h3>How can I restart the MySql?</h3>
<p>/etc/init.d/mysql restart</p>
<h3>How can I do remote backup?</h3>
<p>/usr/local/psa/bin/pleskbackup all ftp://username:password@backup.onlinehome-server.info/httpdocs/backup.file</p>
<h3>What about a complete big backup?</h3>
<p>/usr/local/psa/bin/pleskbackup all allbackup.file<br />
tar czf /srv/www/vhosts backup</p>
<h3>How to tar a folder (with all sub-folders and files)?</h3>
<p>tar czf /volumes/myexternaldrive/backup01.tgz myfolder</p>
<h3>How do I extract a file?</h3>
<p>tar -xzvf MyArchive.tgz Source_file<br />
or<br />
tar &#8211;extract &#8211;gunzip &#8211;verbose &#8211;file=MyArchive.tgz Source_file<br />
tar xzvf /volumes/myexternaldrive/backup01.tgz myfolder/subfolder/thefiletorestore</p>
<h3>How to install SOAP extension for php 5?</h3>
<p>rpm -Uvh ftp://fr2.rpmfind.net/linux/SuSE-Linux/i386/update/10.2/rpm/x86_64/php5-soap-5.2.0-12.x86_64.rpm</p>
<h3>How to launch an sql against the database?</h3>
<p>mysql -uadmin -pparola baza_date &lt; /srv/www/vhosts/domeniu.com/httpdocs/clean.sql</p>
<h3>What version of Linux I am using?</h3>
<p>cat /proc/version<br />
cat /etc/issue</p>
<p>or version specifc:</p>
<p>cat /etc/redhat-release<br />
cat /etc/debian_version</p>
<h3>Root viruses check &#8211; Rhunter</h3>
<p>wget http://superb-east.dl.sourceforge.net/sourceforge/rkhunter/rkhunter-1.3.4.tar.gz<br />
tar -xzvf rkhunter-1.3.4.tar.gz<br />
cd rkhunter-1.3.0.tar.gz<br />
./installer.sh &#8211;layout /usr/local &#8211;install</p>
<p>add RHunter in cronjob<br />
vi /etc/cron.daily/rkhunter.sh<br />
and add<br />
#!/bin/bash<br />
/usr/local/bin/rkhunter -c | mail -s &#8220;RKhunter Scan Details&#8221; email@domain.com<br />
exit 0</p>
<h3>Root viruses check &#8211; chkrootkit</h3>
<p>wget &#8211;passive-ftp ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz<br />
tar xvfz chkrootkit.tar.gz<br />
cd chkrootkit-/<br />
./chkrootkit</p>
<p>netstat -an |grep &#8220;[.:]${465}[^0-9.]&#8221;<br />
netstat -e -p<br />
netstat -a |grep 4000</p>
<p>netstat -e -p -n -a | grep 465<br />
ps ax | grep 3456</p>
<h3>How to change the SSH port?</h3>
<p>vi /etc/ssh/sshd_config (change to the port 8993)<br />
/etc/rc.d/sshd restart</p>
<h3>How to limit the wrong longins (3 mins SSHD)?</h3>
<p>iptables -A INPUT -m tcp -p tcp &#8211;dport 8993 -m state &#8211;state ESTABLISHED,RELATED -j ACCEPT<br />
iptables -A INPUT -m tcp -p tcp &#8211;dport 8993 -m state &#8211;state NEW -m limit &#8211;limit 2/min &#8211;limit-burst 2 -j ACCEPT<br />
iptables -A INPUT -m tcp -p tcp &#8211;dport 8993 -j DROP</p>
<h3>How to list applications connected to Internet and the ports used?</h3>
<p>netstat -lptu</p>
<h3>How to search a file?</h3>
<p>find / -name pleskbackup</p>
<p>or faster if you&#8217;ve created an indexed database of files. First run updatedb (and have it scheduled to run from time to time, daily if there aren&#8217;t many files or weekly if there are many files) and once the database has been created (and updated) you can simply type: locate filename</p>
<p>For full paths of commands in your path you can use: which filename</p>
<h3>How to find the biggest files in the HDD?</h3>
<p>du -a /var | sort -n -r | head -n 10<br />
find . -type f -size +500000k -exec ls -lh {} \; | awk &#8216;{ print $9 &#8220;: &#8221; $5 }&#8217;<br />
rm -rf /fisier</p>
<h3>How to deactivate ZMD?</h3>
<p>/var/lib/zmd/zmd.db<br />
ps -axfu | grep parse-metadata<br />
kill -9 32323<br />
rm /var/lib/zmd/zmd.db<br />
/etc/init.d/novell-zmd start</p>
<h3>How to find the users with rights to log into the system?</h3>
<p>cat /etc/passwd |grep -v nologin | cut -d: -f1</p>
<h3>Who is logged in the system?</h3>
<p>w<br />
who -a<br />
users<br />
last (includes also users that have logged since the last time the database has been initialized)<br />
grep sshd /var/log/messages</p>
<h3>Bad cases, harddisk is crashed, no boot (needs physical access to the server)</h3>
<p>fsck -fCV /dev/md1<br />
mount /dev/md1 /mnt<br />
chroot /mnt<br />
lilo (kinda obsoleted, grub is the standard bootloader nowadays)<br />
exit<br />
umount /mnt</p>
<h3>How to check the harddisk partitions?</h3>
<p>fdisk -l</p>
<h3>How can I see errors in logs?</h3>
<p>tail -n 500 /var/log/messages<br />
tail -f /var/log/messages<br />
tail -f /var/log/mail.info<br />
tail -f /var/log/warn<br />
tail -f /var/log/mail.err<br />
tail -f /var/log/mail.warn<br />
tail -f /var/log/apache2/access_log<br />
tail -f /var/log/apache2/error_log</p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/webmaster-manual-for-a-root-server-283">Webmaster manual for a root server</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/webmaster-manual-for-a-root-server-283/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ESWC 2009 &#8211; European Software Conference 2009</title>
		<link>http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270</link>
		<comments>http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270#comments</comments>
		<pubDate>Wed, 11 Nov 2009 10:54:24 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[ESWC]]></category>
		<category><![CDATA[eswc 2009]]></category>
		<category><![CDATA[European Software Conference]]></category>
		<category><![CDATA[European Software Conference 2009]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/?p=270</guid>
		<description><![CDATA[For the third time, lat week I participated at the ESWC (European Software Conference) 2009 in Kempinsky Bristol Hotel, Berlin. As I expected this year the number of visitors and sponsors was strike by the crisis. But still, the presentations saved the conference. I hope in the next year we can go back at the [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270">ESWC 2009 &#8211; European Software Conference 2009</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For the third time, lat week I participated at the <a href="http://www.euroconference.org/">ESWC</a> (European Software Conference) 2009 in Kempinsky Bristol Hotel, Berlin. As I expected this year the number of visitors and sponsors was strike by the crisis. But still, the presentations saved the conference. I hope in the next year we can go back at the 250 visitors, btw Wien is going to be the host of the next conference in 2010.<span id="more-270"></span><strong> </strong></p>
<h3>Pros:</h3>
<ol>
<li>I talked with <a title="andy brice" href="http://successfulsoftware.net/2009/11/04/off-to-eswc-2009/">Andy Brice</a> and some other guys I already knew: Tarek, Jean Francoise and also new guys from RU, CR, Malta</li>
<li>I am thinking on going on Russian and Chinese market and Olga si Vladislav from <a href="http://www.softkey.ru/">SoftKey.ru</a> will help me in this effort</li>
<li>I hat a surprise in the end to see that <a title="Press Release Submitter" href="http://www.submitsuite.com/products/press-release-submitter.htm">Press Release Submitter</a> was suggested for the Epsilon Award</li>
</ol>
<h3>Cons:</h3>
<ol>
<li>Less iSVs comparing with the last years</li>
<li>Track-ul 2 was hard to find</li>
<li>The number of sponsors decreased, I would like next time to see also Embarcadero</li>
</ol>
<p>Here are the presentation I saw, as soon I have a link or a download I will update this blog:</p>
<ul>
<li>Alwin Hoogerdijk &#8211; <a href="http://www.submitsuite.com/download/presentations/Alwin_Hoogerdijk-ArtOfIgnoring.pdf">The Art of Ignoring</a></li>
<li>Gilles Pardon, Softdatabase &#8211; Developing successful business in China</li>
<li>Andy Brice, successfulsoftware.net &#8211; <a href="http://successfulsoftware.net/2009/11/23/marketing-for-microisvs/">Marketing for microISVs &#8211; embracing the &#8220;dark&#8221; side?</a></li>
<li>Laurentiu Ghenciu, Avangate &#8211; 5 Tried and tested ways to increase conversion rates</li>
<li>Adriana Iordan, Avangate &#8211; How to Monitor and Protect Your Reputation Online</li>
<li>Dave Collins, SharewarePromotions &#8211; Advanced Google AdWords</li>
<li>Johanna Buckentin Senior Director, DR globalDirect &#8211; Site Testing: How to Optimize Your Site to Increase Your Sales</li>
<li>Robert Martin, Infacta &#8211; Email Marketing &#8211; Engaging with your Audience</li>
<li>Alwin Hoogerdijk &#8211; Web-Apps: The End for Software Downloads?</li>
<li>Tetyana Franke &#8211; Share-it! &#8211; How and Why Does an Email Campaign Work? &#8211; Top tips to effective email campaign</li>
<li>Raj Barman, Acutrack Incorporated &#8211; Increase Revenue By Implementing a Backup CD/DVD Solution</li>
<li>Dave Collins, SharewarePromotions &#8211; An A to Z of online marketing</li>
<li>Peter Kirchner, Microsoft Deutschland GmbH &#8211; Seamless integration in Windows 7 &#8211; the path towards application compatibility</li>
<li>Dmitry Starostenkov, Perpetuum Software &#8211; Merging of ISV and custom development companies: benefits of cross-selling</li>
<li>Olga Blazhevich &amp; Vladislav Elizarov, Softkey &#8211; The Russian Software market</li>
</ul>
<p>Thank you Dave and Cristian for the photos bellow.</p>
<p><img class="alignnone size-full wp-image-273" title="eswc_tarek" src="http://www.submitsuite.com/blog/wp-content/uploads/eswc_tarek.jpg" alt="eswc_tarek" width="640" height="425" /></p>
<p><img class="alignnone size-full wp-image-275" title="eswc_bristol_bar" src="http://www.submitsuite.com/blog/wp-content/uploads/eswc_bristol_bar.jpg" alt="eswc_bristol_bar" width="640" height="425" /></p>
<p><img class="alignnone size-full wp-image-276" title="eswc_prezentare_seo" src="http://www.submitsuite.com/blog/wp-content/uploads/eswc_prezentare_seo.jpg" alt="eswc_prezentare_seo" width="640" height="427" /></p>
<p>My presentation &#8220;100 SEO methods to optimize your software site&#8221; was based on a &#8220;blog carnival&#8221; named <a title="100 metode link building" href="http://www.submitsuite.ro/blog/100-de-metode-de-a-obtine-linkuri" target="_blank">100 methods to obtain links</a> (Romanian). Here is bellow the English version adapted for the conference:</p>
<div id="__ss_2449639" style="width: 425px; text-align: left;"><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="455" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=100seomethodstooptimizeyoursoftwaresite-091108061347-phpapp01&amp;rel=0&amp;stripped_title=100-seo-methods-to-optimize-your-software-site" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="525" height="455" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=100seomethodstooptimizeyoursoftwaresite-091108061347-phpapp01&amp;rel=0&amp;stripped_title=100-seo-methods-to-optimize-your-software-site" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270">ESWC 2009 &#8211; European Software Conference 2009</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google SEO starter guide</title>
		<link>http://www.submitsuite.com/blog/google-seo-starter-guide-107</link>
		<comments>http://www.submitsuite.com/blog/google-seo-starter-guide-107#comments</comments>
		<pubDate>Tue, 18 Nov 2008 23:40:34 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[google seo]]></category>
		<category><![CDATA[seo guide Google]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/google-seo-starter-guide-107</guid>
		<description><![CDATA[Google has released a few days ago in an official post a 22 page PDF document outlining recommendations for web site optimization rules. The basic guide is touching a number of basic elements, such as titles, meta descriptions, no follow link attributes, hyphen etc. You can download and read the Google SEO starte guider PDF. [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/google-seo-starter-guide-107">Google SEO starter guide</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/lesson-4-title-and-meta-tag-creation-32' rel='bookmark' title='Permanent Link: Lesson 4 &#8211; Title and META tag creation'>Lesson 4 &#8211; Title and META tag creation</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-10-common-mistakes-that-webmasters-make-38' rel='bookmark' title='Permanent Link: Lesson 10 &#8211; Common mistakes that webmasters make'>Lesson 10 &#8211; Common mistakes that webmasters make</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-2-google-page-rank-and-alexa-rank-33' rel='bookmark' title='Permanent Link: Lesson 2 &#8211; Google Page Rank and Alexa Rank'>Lesson 2 &#8211; Google Page Rank and Alexa Rank</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img id="image106" src="http://www.submitsuite.com/blog/wp-content/uploads/google.jpg" alt="Google" align="left" /></p>
<p>Google has released a few days ago in an <a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html">official post</a> a 22 page PDF document outlining recommendations for web site optimization rules.  The basic guide is touching a number of basic elements, such as titles, meta descriptions, no follow link attributes, hyphen etc.</p>
<p>You can download and read the <a href="http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf">Google SEO starte guider PDF</a>. The document is a great proof of what all SEO-s are doing, a chance to validate the value of your techniques and it validates the SEO practice overall.<span id="more-107"></span></p>
<p><strong>The main chapters in the starter guide are:</strong></p>
<p>- Create unique, accurate page titles<br />
- Good practices for page title tags<br />
- Make use of the &#8220;description&#8221; meta tag<br />
- Good practices for description meta tags<br />
- Improve the structure of your URLs<br />
- Good practices for URL structure<br />
- Make your site easier to navigate<br />
- Good practices for site navigation<br />
- Offer quality content and services<br />
- Good practices for content<br />
- Write better anchor text<br />
- Good practices for anchor text<br />
- Use heading tags appropriately<br />
- Good practices for heading tags<br />
- Optimize your use of images<br />
- Good practices for images<br />
- Make effective use of robots.txt<br />
- Good practices for robots.txt<br />
- Be aware of rel=&#8221;nofollow&#8221; for links<br />
- Promote your website in the right ways<br />
- Good practices for promoting your website<br />
- Make use of free webmaster tools<br />
- Take advantage of web analytics services</p>
<blockquote><p>Our Search Engine Optimization Starter Guide covers around a dozen common areas that webmasters might consider optimizing. We felt that these areas (like improving title and description meta tags, URL structure, site navigation, content creation, anchor text, and more) would apply to webmasters of all experience levels and sites of all sizes and types. Throughout the guide, we also worked in many illustrations, pitfalls to avoid, and links to other resources that help expand our explanation of the topics. We plan on updating the guide at regular intervals with new optimization suggestions and to keep the technical advice current. So, the next time we get the question, &#8220;I&#8217;m new to SEO, how do I improve my site?&#8221;, we can say, &#8220;Well, here&#8217;s a list of best practices that we use inside Google that you might want to check out.&#8221;</p></blockquote>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/google-seo-starter-guide-107">Google SEO starter guide</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/lesson-4-title-and-meta-tag-creation-32' rel='bookmark' title='Permanent Link: Lesson 4 &#8211; Title and META tag creation'>Lesson 4 &#8211; Title and META tag creation</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-10-common-mistakes-that-webmasters-make-38' rel='bookmark' title='Permanent Link: Lesson 10 &#8211; Common mistakes that webmasters make'>Lesson 10 &#8211; Common mistakes that webmasters make</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-2-google-page-rank-and-alexa-rank-33' rel='bookmark' title='Permanent Link: Lesson 2 &#8211; Google Page Rank and Alexa Rank'>Lesson 2 &#8211; Google Page Rank and Alexa Rank</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/google-seo-starter-guide-107/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SEO and Firefox</title>
		<link>http://www.submitsuite.com/blog/seo-and-firefox-105</link>
		<comments>http://www.submitsuite.com/blog/seo-and-firefox-105#comments</comments>
		<pubDate>Sun, 16 Nov 2008 23:47:02 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[firefox addons]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo with firefox]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/seo-and-firefox-105</guid>
		<description><![CDATA[Firefox is for a SEO researcher not only a simple browser. It is a SEO tool which is making your optimization work easier, your browsing will be enriched with small SEO options like watching your competitors. If you want to use a desktop application to watch parameters of a website optimization you can useWebsite Popularity [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/seo-and-firefox-105">SEO and Firefox</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img id="image121" src="http://www.submitsuite.ro/blog/wp-content/uploads/sigla-firefox.jpg" alt="Firefox Logo" align="left" /><a href="http://www.firefox.com">Firefox</a> is for a <a href="http://www.submitsuite.com/">SEO</a> researcher not only a simple browser. It is a SEO tool which is making your optimization work easier, your browsing will be enriched with small SEO options like watching your competitors. If you want to use a desktop application to watch parameters of a website optimization you can use<a href="http://www.submitsuite.com/products/website-submitter.htm">Website Popularity</a> or you can use your Firefox browser:</p>
<p>Here is bellow my list of Firefox plugins which are helping me on the SEO work or on checking some parameters for a website, for bloging etc:<span id="more-105"></span></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a></p>
<p>Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1146">ScreenGrab</a></p>
<p>Screengrab! is an extension for Firefox that makes it easy to save a web-page as an image. With it, you can save anything that you can see in a browser window &#8211; from a small selection, to a complete page.</p>
<p><a href="http://yoast.com/seo-tools/disable-personalized-search-plugin/">Google UnPersonalized</a></p>
<p>This plugin prevents you from seeing personalized search results, when searching from your browser&#8217;s search box. In Firefox, this plugin also adds suggest functionality.</p>
<p><a href="http://informenter.mozdev.org/">InFormEnter</a></p>
<p>InFormEnter adds a small, clickable icon next to every input field in a web form, from where you can select the item to be inserted &#8211; no typing required. You can configure it to display your frequently used information such as name, email, address&#8230;</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher</a></p>
<p>Adds a menu and a toolbar button to switch the user agent of the browser.</p>
<p><a href="http://www.quirk.biz/searchstatus/">Search Status</a></p>
<p>SearchStatus is a toolbar extension for Firefox hat allows you to see how any and every website in the world is performing. Designed for the highly specialised needs of search engine marketers, this toolbar provides extensive search-related information about a site, all conveniently displayed in one discreet and compact toolbar.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/7631">TwitBin</a></p>
<p>TwitBin is an extension for firefox that brings the power of twitter right in your browser.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3036">Seo Quake</a></p>
<p>Seoquake is a powerful tool, aimed at helping web masters who deal with search engine optimization and internet promotion of web sites. Seoquake allows user to obtain and investigate many important SEO parameters of the internet project under study on the fly.</p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/seo-and-firefox-105">SEO and Firefox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/seo-and-firefox-105/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft BizSpark is offering free licenses</title>
		<link>http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104</link>
		<comments>http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104#comments</comments>
		<pubDate>Thu, 13 Nov 2008 23:48:05 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Promotion services]]></category>
		<category><![CDATA[SEO news]]></category>
		<category><![CDATA[BizSpark]]></category>
		<category><![CDATA[ESWC]]></category>
		<category><![CDATA[free program]]></category>
		<category><![CDATA[ISV]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104</guid>
		<description><![CDATA[Hard to belive, but if you are a ISV or microISV, Microsoft is offering in BizSpark (a program launched towards ISV and microISV at European Software Conference 2008). If you are a small company Microsoft will offer you the tools, database and even hosting for developing your applications for FREE. Is such an offer possible? [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104">Microsoft BizSpark is offering free licenses</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99' rel='bookmark' title='Permanent Link: ESWC 2008 &#8211; Free SEO Audit and advices'>ESWC 2008 &#8211; Free SEO Audit and advices</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-7-make-your-software-known-with-software-submission-41' rel='bookmark' title='Permanent Link: Lesson 7 &#8211; Make your software known with software submission'>Lesson 7 &#8211; Make your software known with software submission</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-releases-spanish-and-romanian-versions-of-its-seo-software-50' rel='bookmark' title='Permanent Link: Submit Suite Releases Spanish and Romanian Versions of its SEO Software'>Submit Suite Releases Spanish and Romanian Versions of its SEO Software</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/bizspark/FindNetworkPartner.aspx"><img id="image102" src="http://www.submitsuite.com/blog/wp-content/uploads/microsoft-bizspark.jpg" border="0" alt="Microsoft Bizspark" /></a></p>
<p>Hard to belive, but if you are a ISV or microISV, Microsoft is offering in <strong>BizSpark</strong> (a program launched towards ISV and microISV at <a href="http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101">European Software Conference 2008</a>). If you are a small company Microsoft will offer you the tools, database and even hosting for developing your applications <strong>for FREE</strong>. Is such an offer possible?<span id="more-104"></span></p>
<h3>The conditions are simple:</h3>
<ul>
<li> Actively engaged in development of a software-based product or service that will form a core piece of its current or intended business1</li>
<li>Privately held</li>
<li>In business for less than 3 years, and</li>
<li>Less than US $1 million in annual revenue.</li>
<li>To be eligible to use the software for production and deployment of hosted solutions, startups must also be developing a new software as a service solution (on any platform) to be delivered over the Internet</li>
</ul>
<h3>What is Microsoft going to offer you:</h3>
<p>Design, development, testing and demonstrations rights with regard to:</p>
<ul>
<li>All the software included in the Visual Studio Team System Team Suite (VSTS) with MSDN Premium subscription</li>
<li>Expression Studio (Version 2)</li>
<li>VSTS Team Foundation Server (Standard Edition)</li>
<li>Production Use rights to host a â€œsoftware as a serviceâ€ solution (developed by the startup during their participation, on any platform) over the Internet, with regard to products including: Windows Server (all versions up to and including Enterprise); SQL Server (all versions); Office SharePoint Server; Systems Center, and BizTalk Server and all these for your whole <strong>development team</strong></li>
</ul>
<p>Above all these, the support will be free. Hard to believe such an program exists. There is catch you will ask? A <strong>100$</strong> program offering fee is due when the Startup exits the Program. As part of Microsoft&#8217;s commitment to Startup success, there are no initial costs for Startups to join BizSpark.</p>
<p>More information can be found in this <a href="http://download.microsoft.com/download/1/7/7/17789046-8e14-4e63-a879-5be6eda97645/BizSpark%20Network%20Partner%20Program%20Guide.pdf">pdf</a>.</p>
<p><img id="image103" src="http://www.submitsuite.com/blog/wp-content/uploads/microsoft-bizspark-concept.jpg" alt="Microsoft Bizspark Concept" /></p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104">Microsoft BizSpark is offering free licenses</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99' rel='bookmark' title='Permanent Link: ESWC 2008 &#8211; Free SEO Audit and advices'>ESWC 2008 &#8211; Free SEO Audit and advices</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-7-make-your-software-known-with-software-submission-41' rel='bookmark' title='Permanent Link: Lesson 7 &#8211; Make your software known with software submission'>Lesson 7 &#8211; Make your software known with software submission</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-releases-spanish-and-romanian-versions-of-its-seo-software-50' rel='bookmark' title='Permanent Link: Submit Suite Releases Spanish and Romanian Versions of its SEO Software'>Submit Suite Releases Spanish and Romanian Versions of its SEO Software</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European Software Conference 2008 (ESWC 2008)</title>
		<link>http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101</link>
		<comments>http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101#comments</comments>
		<pubDate>Mon, 10 Nov 2008 11:18:47 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[ESWC 2008]]></category>
		<category><![CDATA[European Software Conference 2008]]></category>
		<category><![CDATA[mISV]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101</guid>
		<description><![CDATA[Second year in a row I was able to participate at European Software Conference ESWC (the last year ESWC 2007 took place in Germany, in Cologne). This time the location was Berlin, Germany, exactly in the middle of the Berlin at Maritim Proarte (my mistake, I booked at Maritim Hotel(without proarte) at 5-6 km, the [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101">European Software Conference 2008 (ESWC 2008)</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; European Software Conference 2009'>ESWC 2009 &#8211; European Software Conference 2009</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Second year in a row I was able to participate at <a href="http://www.euroconference.org/">European Software Conference ESWC</a> (the last year <a href="http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64">ESWC 2007</a> took place in Germany, in Cologne). This time the location was Berlin, Germany, exactly in  the middle of the Berlin at Maritim Proarte (my mistake, I booked at Maritim Hotel(without proarte) at 5-6 km, the good thing I was not the only one <img src='http://www.submitsuite.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  doing this mistake).<span id="more-101"></span></p>
<p>The conference was a surprise for me, the quality in the presentations is increased from the last year, a lot of information available. The whole concept of the ESWC was based this time on 2 Tracks (2 presentations in the same time). Usually the ISV-s are shy guys/gals, but this time the audience really was open on questions and on debate on different topics.</p>
<p>I will do a pros/cons of the conference ( I do not have photos at all, but I hope the &#8220;Avangate guys&#8221; will let me use some of their photos):</p>
<h3>Pros:</h3>
<ol>
<li>Is good to have a conference in Europe, and not only the SIC for USA, ISDEF for Rusia.</li>
<li> The orientation in the conference is towards ISV and microISV and should remain like this.</li>
<li>The panels are most of the time formed of entrepreneurs+isv+marketers and you have because of this the possibility to hear all the sides of the developing, support, sale process for a software product of online service/product</li>
<li>A lot of known people ASP (Mike), Tucows (Greg), Avangate (Adriana and Florin &#8211; thank you for the bear and the clever text on the t-shirt), ShareIt (Tatyana), and a lot of developers I knew from ASP (Oliver) or from the last year. A good opportunity to discuss your techniques and to compare them with the other used techniques, the ESWC is no place for self promotion but more trying to share and gather information and to do networking.</li>
</ol>
<h3>Cons:</h3>
<ol>
<li>If the last year there were 7 Romanian speakers now only 3 (is the recession?!)</li>
<li> Too much discussions about AdWords (that is why my jokes were around this theme)</li>
<li>Too bad I reserved in the other Maritim hotel, I had to take a taxi 3-4 times between the hotels</li>
<li>I will make a note for the next time &#8220;do not talk business on launch otherwise you will have no time for eating&#8221;</li>
<li>Next time 3 times more promotional CD-s with me</li>
<li> The wireless in the hotel was 8 euros for 60 minutes</li>
</ol>
<p>In the seond day of the conference I took part in a panel: <strong>ISV business &#8211; how to make it effective</strong> together wit Alwin Hoogerdijk &#8211; Collectorz.com (Moderator), Tetyana Franke &#8211; sales Manager share-it! and Florin &#8211; e-commerce Consultant Avangate. An open discussion with the audience, with questions regarding bug tracking options, payment processors, support, promotion etc.</p>
<p>The audience was interested in the subject (as far I have seen), I tried to keep a my responses in the humor/serious side, the audience was really willing to have more information from us and more willing to ask questions (comparing with the last year). Again a lot of interest in how you promote your busiones, and how you do it cheap.</p>
<p>I will start to present slowly some of the new things presented and the ways these can be integrated, probably I will start with the solution from deal united.</p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101">European Software Conference 2008 (ESWC 2008)</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; European Software Conference 2009'>ESWC 2009 &#8211; European Software Conference 2009</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ESWC 2008 &#8211; Free SEO Audit and advices</title>
		<link>http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99</link>
		<comments>http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99#comments</comments>
		<pubDate>Thu, 23 Oct 2008 10:32:19 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Promotion services]]></category>
		<category><![CDATA[SEO news]]></category>
		<category><![CDATA[ESWC 2008]]></category>
		<category><![CDATA[free seo]]></category>
		<category><![CDATA[seo advices]]></category>
		<category><![CDATA[seo audit]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99</guid>
		<description><![CDATA[I am going to be at European Software Conference 2008 between 8-9th November and I am going to offer a Free SEO Audit and advices for ISV-s and microISV-s on the website they own. I will offer an 1 hr from my time for the SEO Audit (once I receive the forms completed) and 1 [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99">ESWC 2008 &#8211; Free SEO Audit and advices</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104' rel='bookmark' title='Permanent Link: Microsoft BizSpark is offering free licenses'>Microsoft BizSpark is offering free licenses</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img id="image100" src="http://www.submitsuite.com/blog/wp-content/uploads/free-seo.jpg" border="0" alt="Free SEO Audit" align="left" />I am going to be at <a href="http://www.euroconference.org/">European Software Conference 2008</a> between 8-9th November and I am going to offer a <strong>Free SEO Audit</strong> and advices for ISV-s and microISV-s on the website they own. I will offer an 1 hr from my time for the SEO Audit (once I receive the forms completed) and 1 hr of my time for analyze and advices of your websites search optimization options you can implement. I will be at the ESWC on a table to offer the results of my research and my suggestions.</p>
<p>So if you are willing to take this offer send me some details about your website on the form on our <a href="http://www.submitsuite.com/services/search-engine-optimization.htm">search optimization</a> service page. Also add the note for ESWC 2008 and I will make sure we will find time to analyze it until there.</p>
<p>I will take a maximum 5 websites for which I am going to suggest improvements.</p>
<p><strong>Update:</strong> 4 places left</p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99">ESWC 2008 &#8211; Free SEO Audit and advices</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/microsoft-bizspark-is-offering-free-licenses-104' rel='bookmark' title='Permanent Link: Microsoft BizSpark is offering free licenses'>Microsoft BizSpark is offering free licenses</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64' rel='bookmark' title='Permanent Link: ESWC (European Software Conference) 2007'>ESWC (European Software Conference) 2007</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/eswc-2008-free-seo-audit-and-advices-99/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 SEO and web marketing magazines</title>
		<link>http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78</link>
		<comments>http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78#comments</comments>
		<pubDate>Mon, 28 Jan 2008 00:06:41 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO books]]></category>
		<category><![CDATA[SEO news]]></category>
		<category><![CDATA[seo magazines]]></category>
		<category><![CDATA[seo print magazines]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78</guid>
		<description><![CDATA[Why in the world is so hard to find a SEO Magazine? If you are at all interested in SEO or if you are a Search Engine Optimization Professional then you read probably plenty of SEO forums and SEO blogs. What can a SEO magazine bring more? For a start reading a SEO Magazine would [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78">Top 10 SEO and web marketing magazines</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/beyond-buzz-the-next-generation-of-word-of-mouth-marketing-93' rel='bookmark' title='Permanent Link: Beyond Buzz-The Next Generation of Word-of-Mouth Marketing'>Beyond Buzz-The Next Generation of Word-of-Mouth Marketing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img id="image79" src="http://www.submitsuite.com/blog/wp-content/uploads/top_10_seo_and_web_marketing_magazines.jpg" alt="Top 10 SEO and web marketing magazines" /><span id="more-78"></span></p>
<h3>Why in the world is so hard to find a SEO Magazine?</h3>
<p>If you are at all interested in SEO or if you are a Search Engine Optimization Professional then you read probably plenty of SEO forums and SEO blogs. <strong>What can a SEO magazine bring more?</strong> For a start reading a SEO Magazine would be the best thing you could do to get you away from your computer for more than 10 minutes.</p>
<p>Usually magazines comes with a spicy price. I have made my own list of 10 SEO and web marketing magazines. One of the magazines is totally free and for one of them I have manage to obtain a <a title="SEO Coupon" href="http://www.searchmarketingstandard.com/partner/idevaffiliate.php?id=189" target="_blank">15% coupon</a> (  <strong>Coupon: SAVE15</strong> ) for you. Here is my short web marketing and SEO magazines review:</p>
<h3><strong>01.</strong> <a title="Search Marketing Standard Magazine" href="http://www.searchmarketingstandard.com/partner/idevaffiliate.php?id=189" target="_blank">Search Marketing Standard Magazine</a> &#8211; use for subscription the COUPON <strong>SAVE15</strong></h3>
<p>I found 1 year ago Search Marketing Standard Magazine, using a banner in a blog and I got a 25% discount at the purchase. The subscription price is $30.60 for 2 years ( using the SAVE15 coupon ). It is the only pure SEO magazine printed, which kind of a web 2.0 flavor design. A lot of quality articles. What I love in this magazine is the fact that I can read it when I am not in front of my display, so heck if I am on the way to something I will have this magazine in my hand.</p>
<p>I have sent some of the past issues to one of my friend in Romania, I will ask him to post some words in the comments.<strong><br />
<img id="image80" src="http://www.submitsuite.com/blog/wp-content/uploads/01_search_marketing_standard.jpg" alt="Search Marketing Standard" /></strong></p>
<h3><strong>2.</strong> <a title="Domainers magazine" href="http://www.domainersmagazine.com/" target="_blank">Domainers Magazine</a></h3>
<p><em>&#8220;Domainer&#8217;s Magazine was designed to provide valuable insight and thought leadership into the Domaining world. Our goal is to create a world class publication that becomes the eyes and ears of the &#8220;Domainer&#8221;. Our magazine will focus on the value of Pay Per Click Management, SEO, Domain Legal Expertise, Domain acquisition and Selling, Domain monetization and any other topic that focuses on emerging technologies and services that provides value to you.&#8221;<br />
<img id="image81" src="http://www.submitsuite.com/blog/wp-content/uploads/02_domainers_magazine.jpg" alt="Domainers Magazine" /></em></p>
<h3><strong>3.</strong> <a title="Website Magazine" href="http://www.websitemagazine.com/" target="_blank">Website Magazine</a> &#8211; All digital editions free to download</h3>
<p><img id="image82" src="http://www.submitsuite.com/blog/wp-content/uploads/03_website_magazine.jpg" alt="Website Magazine" /></p>
<h3><strong>4.</strong> <a title="Target Marketing" href="http://www.targetmarketingmag.com/" target="_blank">Target Marketing</a></h3>
<p><img id="image83" src="http://www.submitsuite.com/blog/wp-content/uploads/04_target_marketing.jpg" alt="Target Marketing" /></p>
<h3><strong>5. </strong><a title="Entrepreneur Magazine" href="http://www.entrepreneur.com/">Entrepreneur Magazine</a> &#8211; Not really a SEO magazine but the advices you can find in the online version are sometime priceless.</h3>
<p><img id="image84" src="http://www.submitsuite.com/blog/wp-content/uploads/05_entrepreneur_magazine.jpg" alt="Entrepreneur Magazine" /></p>
<h3><strong>6.</strong> <a title="Revenue Magazine" href="http://www.revenuetoday.com/" target="_blank">Revenue Magazine</a></h3>
<p><img id="image85" src="http://www.submitsuite.com/blog/wp-content/uploads/06_revenue_magazine.jpg" alt="Revenue Magazine" /></p>
<h3><strong>7.</strong> <a title="Business Week Magazine" href="http://www.businessweek.com/" target="_blank">Business Week Magazine</a></h3>
<p><img id="image86" src="http://www.submitsuite.com/blog/wp-content/uploads/07_business_week.jpg" alt="Business Week" /></p>
<h3><strong>8.</strong> <a title="Direct Magazine" href="http://directmag.com/" target="_blank">Direct Magazine</a></h3>
<p><img id="image87" src="http://www.submitsuite.com/blog/wp-content/uploads/08_direct_magazine.jpg" alt="Direct Magazine" /></p>
<h3><strong>9.</strong> <a title="FastCompany" href="http://www.fastcompany.com/" target="_blank">FastCompany</a></h3>
<p><img id="image88" src="http://www.submitsuite.com/blog/wp-content/uploads/09_fastcompany_magazine.jpg" alt="Fastcompany Magazine" /></p>
<h3><strong>10.</strong> <a title="B2B magazibne" href="http://www.b2bm.biz/" target="_blank">B2B Marketing</a></h3>
<p><img id="image89" src="http://www.submitsuite.com/blog/wp-content/uploads/10_b2b_marketing.jpg" alt="B2b Marketing" /></p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78">Top 10 SEO and web marketing magazines</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/beyond-buzz-the-next-generation-of-word-of-mouth-marketing-93' rel='bookmark' title='Permanent Link: Beyond Buzz-The Next Generation of Word-of-Mouth Marketing'>Beyond Buzz-The Next Generation of Word-of-Mouth Marketing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/top-10-seo-and-web-marketing-magazines-78/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How Google Page Rank update is affecting the directories?</title>
		<link>http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69</link>
		<comments>http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69#comments</comments>
		<pubDate>Sun, 11 Nov 2007 18:58:16 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[Google Page Rank]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69</guid>
		<description><![CDATA[Since the Google Page Rank Update from 26.10.2007 I have detect some major changes in the way the Page Rank is distributed over the directories from the Website Submitter. I have run some comparison in my tests. Number of directories: 3574 Directories type: free, paid, reciprocal, regional Before Google PR update After Google PR update [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69">How Google Page Rank update is affecting the directories?</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/google-page-rank-update-26-october-2007-63' rel='bookmark' title='Permanent Link: Google Page Rank update 26 october 2007'>Google Page Rank update 26 october 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-2-google-page-rank-and-alexa-rank-33' rel='bookmark' title='Permanent Link: Lesson 2 &#8211; Google Page Rank and Alexa Rank'>Lesson 2 &#8211; Google Page Rank and Alexa Rank</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-9-increasing-google-page-rank-and-gaining-more-visitors-42' rel='bookmark' title='Permanent Link: Lesson 9 &#8211; Increasing Google Page Rank and gaining more visitors'>Lesson 9 &#8211; Increasing Google Page Rank and gaining more visitors</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Since the <a title="Google Page Rank Update" href="http://www.submitsuite.com/blog/google-page-rank-update-26-october-2007-63" target="_blank">Google Page Rank Update from 26.10.2007</a> I have detect some major changes in the way the Page Rank is distributed over the directories from the <a title="Website Submitter" href="http://www.submitsuite.com/products/website-submitter.htm" target="_blank">Website Submitter</a>. I have run some comparison in my tests.<span id="more-69"></span></p>
<p><strong>Number of directories:</strong> 3574<br />
<strong>Directories type: </strong>free, paid, reciprocal, regional</p>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tbody>
<tr>
<th></th>
<th>Before Google PR update</th>
<th>After Google PR update</th>
</tr>
<tr>
<td>PR0</td>
<td>357</td>
<td>1207</td>
</tr>
<tr>
<td>PR1</td>
<td>116</td>
<td>328</td>
</tr>
<tr>
<td>PR2</td>
<td>376</td>
<td>636</td>
</tr>
<tr>
<td>PR3</td>
<td>922</td>
<td>704</td>
</tr>
<tr>
<td>PR4</td>
<td>1009</td>
<td>453</td>
</tr>
<tr>
<td>PR5</td>
<td>517</td>
<td>172</td>
</tr>
<tr>
<td>PR6</td>
<td>204</td>
<td>56</td>
</tr>
<tr>
<td>PR7</td>
<td>47</td>
<td>14</td>
</tr>
<tr>
<td>PR8</td>
<td>23</td>
<td>4</td>
</tr>
<tr>
<td>PR9</td>
<td>2</td>
<td>0</td>
</tr>
<tr>
<td>PR10</td>
<td>1</td>
<td>0</td>
</tr>
</tbody>
</table>
<p>You can observe based on the date before the Google update and after a big difference between the way Google PR is distributed over these directories. Infact we can call it a downgrade, the number of directories with PR0 before the Google PR update was <strong>357</strong>, after the PR update the number increased to <strong>1207</strong>. I have displayed bellow in a graphical mode the distribution of the new Google PR and the PR fluctuations.</p>
<p><img id="image73" src="http://www.submitsuite.com/blog/wp-content/uploads/pr_fluctuations_2.gif" alt="Google PR fluctuations graph 2" /></p>
<p><img id="image72" src="http://www.submitsuite.com/blog/wp-content/uploads/pr_fluctuations_1.gif" alt="Google PR fluctuations graph 1" /></p>
<p><img id="image71" src="http://www.submitsuite.com/blog/wp-content/uploads/pie_before.gif" alt="Google PR for directories before PR update" /></p>
<p><img id="image70" src="http://www.submitsuite.com/blog/wp-content/uploads/pie_after.gif" alt="Google PR for directories after PR update" /></p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69">How Google Page Rank update is affecting the directories?</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/google-page-rank-update-26-october-2007-63' rel='bookmark' title='Permanent Link: Google Page Rank update 26 october 2007'>Google Page Rank update 26 october 2007</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-2-google-page-rank-and-alexa-rank-33' rel='bookmark' title='Permanent Link: Lesson 2 &#8211; Google Page Rank and Alexa Rank'>Lesson 2 &#8211; Google Page Rank and Alexa Rank</a></li>
<li><a href='http://www.submitsuite.com/blog/lesson-9-increasing-google-page-rank-and-gaining-more-visitors-42' rel='bookmark' title='Permanent Link: Lesson 9 &#8211; Increasing Google Page Rank and gaining more visitors'>Lesson 9 &#8211; Increasing Google Page Rank and gaining more visitors</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/how-google-page-rank-update-is-affecting-the-directories-69/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>ESWC (European Software Conference) 2007</title>
		<link>http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64</link>
		<comments>http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64#comments</comments>
		<pubDate>Fri, 09 Nov 2007 13:53:35 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[SEO news]]></category>
		<category><![CDATA[ESWC]]></category>
		<category><![CDATA[ESWC 2007]]></category>
		<category><![CDATA[European Software Conference]]></category>

		<guid isPermaLink="false">http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64</guid>
		<description><![CDATA[This year European Software Conference has returned to Köln, Germany at the Cologne Marriott Hotel. KÃ¶ln (Cologne) is the place where the first edition in 2001 was held. Submit Suite sponsored this edition and also the Epsilon Award 2007 &#8211; which this year was awarded Nikos Bozinis from Zabkat Software. DAY 1: Asa Dotzler was [...]<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64">ESWC (European Software Conference) 2007</a></p>



Related posts:<ol><li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
<li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; European Software Conference 2009'>ESWC 2009 &#8211; European Software Conference 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This year European Software Conference has returned to Köln, Germany at the Cologne Marriott Hotel. KÃ¶ln (Cologne) is the place where the first edition in 2001 was held.</p>
<p><a title="Sponsoring" href="http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44" target="_blank">Submit Suite sponsored this edition</a> and also the Epsilon Award 2007 &#8211; which this year was awarded Nikos Bozinis from <a title="Zabkat" href="http://www.zabkat.com/" target="_blank">Zabkat Software</a>.<span id="more-64"></span></p>
<h3>DAY 1:</h3>
<p><a title="Asa Dotzler" href="http://weblogs.mozillazine.org/asa/" target="_blank">Asa Dotzler</a> was unable to come but he was kind enough to send a podcast. Asa Dotzler is best known for his work as community coordinator for several Mozilla projects. He was one of the keyspeakers of this year ESWC, too bad he was not able to come. Still a nice podcast (you can imagine some arrows was launched toward Microsoft Internet policy <img src='http://www.submitsuite.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ).</p>
<p><strong>Andy Brice</strong> from Oryx Digital presented after the launch break an interesting point of view for the software usability. Are these rules apply strictly to software? No. Every website design must take in consideration most of the rules described there. His presentation <strong>&#8220;Increasing conversions through better usability&#8221;</strong> is available as download in <a title="presentation" href="http://www.perfecttableplan.com/eswc2007/usability.pptx">PowerPoint 2007</a> and <a title="presentation" href="http://www.perfecttableplan.com/eswc2007/usability.ppt">PowerPoint 2000</a> on his <a title="Andy Brice entry" href="http://successfulsoftware.net/2007/11/05/eswc2007-talk/" target="_blank">blog entry</a>.</p>
<p><strong>Rüdiger Kägler</strong> from WIBU-SYSTEMS held a presentation with the name, &#8220;Earn more money with new license models&#8221; ( <a title="ESCW_2007" href="http://www.wibu.de/files/events/2007/ESCW_2007.pdf">available as pdf for download</a> ).<br />
The day ended with my presentation: <strong>&#8220;SEO optimization and online promotion&#8221;</strong> in which I am trying to expose some of the general SEO techniques and in the same time cover some of the specialized techniques for software producers. You can <strong>download for free in PDF format</strong> the <a title="SEO optimization and online promotion" href="http://www.submitsuite.com/download/SEO-optimization-and-online-promotion.pdf" target="_blank">SEO optimization and online promotion</a> presentation.</p>
<p><img id="image65" src="http://www.submitsuite.com/blog/wp-content/uploads/eswc2.jpg" alt="ESWC start" /></p>
<p><img id="image66" src="http://www.submitsuite.com/blog/wp-content/uploads/eswc3.jpg" alt="Marius Mailat - SEO optimization and online promotion" /></p>
<p>Article published in <a href="http://www.submitsuite.com/blog">Submit Suite Blog</a>.
<br/><br/><a href="http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64">ESWC (European Software Conference) 2007</a></p>


<p>Related posts:<ol><li><a href='http://www.submitsuite.com/blog/submit-suite-sponsors-2007-european-software-conference-44' rel='bookmark' title='Permanent Link: Submit Suite Sponsors 2007 European Software Conference'>Submit Suite Sponsors 2007 European Software Conference</a></li>
<li><a href='http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101' rel='bookmark' title='Permanent Link: European Software Conference 2008 (ESWC 2008)'>European Software Conference 2008 (ESWC 2008)</a></li>
<li><a href='http://www.submitsuite.com/blog/eswc-2009-european-software-conference-2009-270' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; European Software Conference 2009'>ESWC 2009 &#8211; European Software Conference 2009</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
