<?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>SEO - Optimizare web</title>
	<atom:link href="http://www.submitsuite.ro/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.submitsuite.ro/blog</link>
	<description>Ultimele noutati in materie de optimizare web</description>
	<lastBuildDate>Mon, 07 Dec 2009 16:02:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cel mai simplu RSS builder in PHP cu MySql</title>
		<link>http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql</link>
		<comments>http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql#comments</comments>
		<pubDate>Mon, 07 Dec 2009 16:02:00 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[rss mysql]]></category>
		<category><![CDATA[rss php]]></category>
		<category><![CDATA[rsss builder]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=1028</guid>
		<description><![CDATA[Am sa continui seria de articole mai tehnice, cu o solutie legata de o metoda rapida de constructie RSS. Se da o tabela in MySql si se doreste o soluti rapida de expunere a unui RSS feed.
Solutia?
&#60;?php
function getHeader($titlu, $link, $descriere)
{
header (&#8216;Content-type: text/xml&#8217;);
echo &#8216;&#60;?xml version=&#8221;1.0&#8243; ?&#62;
&#60;rss version=&#8221;2.0&#8243;&#62;
&#60;channel&#62;
&#60;title&#62;&#8217;. $titlu .&#8217;&#60;/title&#62;
&#60;link&#62;&#8217;. $link .&#8217;&#60;/link&#62;
&#60;description&#62;&#8217;. $descriere .&#8217;&#60;/description&#62;
&#60;generator&#62;Php&#60;/generator&#62;&#8217;;
}
function getFooter()
{
echo &#8216;
&#60;/channel&#62;
&#60;/rss&#62;&#8217;;
}

//include baza [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql">Cel mai simplu RSS builder in PHP cu MySql</a></p>



Articole asemanatoare:<ol><li><a href='http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic' rel='bookmark' title='Permanent Link: Sitemap in PHP generat dinamic'>Sitemap in PHP generat dinamic</a></li>
<li><a href='http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri' rel='bookmark' title='Permanent Link: Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri'>Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Am sa continui seria de articole mai tehnice, cu o solutie legata de o metoda rapida de constructie RSS. Se da o tabela in MySql si se doreste o soluti rapida de expunere a unui RSS feed.</p>
<p>Solutia?</p>
<p><span id="more-1028"></span>&lt;?php<br />
<strong>function getHeader($titlu, $link, $descriere)</strong><br />
{<br />
header (&#8216;Content-type: text/xml&#8217;);<br />
echo &#8216;&lt;?xml version=&#8221;1.0&#8243; ?&gt;<br />
&lt;rss version=&#8221;2.0&#8243;&gt;<br />
&lt;channel&gt;<br />
&lt;title&gt;&#8217;. $titlu .&#8217;&lt;/title&gt;<br />
&lt;link&gt;&#8217;. $link .&#8217;&lt;/link&gt;<br />
&lt;description&gt;&#8217;. $descriere .&#8217;&lt;/description&gt;<br />
&lt;generator&gt;Php&lt;/generator&gt;&#8217;;<br />
}</p>
<p><strong>function getFooter()</strong><br />
{<br />
echo &#8216;<br />
&lt;/channel&gt;<br />
&lt;/rss&gt;&#8217;;<br />
}<br />
<strong><br />
//include baza de date</strong><br />
require_once($_SERVER['DOCUMENT_ROOT'] . &#8220;/include/config.inc.php&#8221;);<br />
$db=mysql_connect($dbhost,$dbuser,$dbpass);<br />
mysql_select_db($dbdatabase);</p>
<p>$feed_action = $_GET['modul'];<br />
if ($feed_action == &#8217;stiri&#8217;)<br />
{<br />
getStiri(&#8220;Ultimle stiri&#8221;, &#8220;http://www.stiri.ro/&#8221;, &#8220;Ultimele stiride de pe stiri.ro&#8221;);<br />
}<br />
<strong><br />
//add the footer</strong><br />
getFooter();</p>
<p><strong>//get RSS for stiri</strong><br />
function getStiri$titlu, $link, $descriere)<br />
{<br />
getHeader($titlu, $link, $descriere);</p>
<p>//genereaza elementele<br />
$map_result = mysql_query(&#8220;SELECT id, stire, data_adaugare FROM stiri WHERE aprobat = 1 order by id desc limit 0,10&#8243;);<br />
while ($map_row = mysql_fetch_array($map_result)) {<br />
echo &#8216;<br />
&lt;item&gt;<br />
&lt;title&gt;Stirea  cu numarul &#8216;. $map_row['id']  .&#8217;&lt;/title&gt;<br />
&lt;description&gt;&lt;![CDATA['. $map_row['stire'] .&#8217;]]&gt;&lt;/description&gt;<br />
&lt;link&gt;http://www.stire.ro/detalii/id/&#8217;. $map_row['id'] .&#8217;/&lt;/link&gt;<br />
&lt;pubDate&gt;&#8217;. $map_row['data_adaugare'] .&#8217;&lt;/pubDate&gt;<br />
&lt;/item&gt;&#8217;;<br />
}<br />
}</p>
<p>?&gt;</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql">Cel mai simplu RSS builder in PHP cu MySql</a></p>


<p>Articole asemanatoare:</p><ol><li><a href='http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic' rel='bookmark' title='Permanent Link: Sitemap in PHP generat dinamic'>Sitemap in PHP generat dinamic</a></li>
<li><a href='http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri' rel='bookmark' title='Permanent Link: Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri'>Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mic manual de administrare a serverului web</title>
		<link>http://www.submitsuite.ro/blog/mic-manual-de-administrare-a-serverului-web</link>
		<comments>http://www.submitsuite.ro/blog/mic-manual-de-administrare-a-serverului-web#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:29:42 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[manual webmaster]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[root server]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=1015</guid>
		<description><![CDATA[Intâlnesc destul de des intrebări legate de protecţia serverului root. Mulţi webmasteri deţin un root server sau un vhosting şi se lovesc de problema administrării. Iată mai jos lista mea de comenzi salvate care îmi sunt de folos la nevoie:
Ce fac atunci când nimic nu merge şi vreau să îmi repar sistemul?
/etc/init.d/psa stopall
umount -a
xfs_check /dev/md1
xfs_repair [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/mic-manual-de-administrare-a-serverului-web">Mic manual de administrare a serverului web</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Intâlnesc destul de des intrebări legate de protecţia serverului root. Mulţi webmasteri deţin un root server sau un vhosting şi se lovesc de problema administrării. Iată mai jos lista mea de comenzi salvate care îmi sunt de folos la nevoie:<img title="More..." src="http://www.submitsuite.ro/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-1015"></span></p>
<h3>Ce fac atunci când nimic nu merge şi vreau să îmi repar sistemul?</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>Bineînţeles, comenzile de mai sus trebuie să reflecte partiţionarea existentă pe serverul Dvs.</p>
<h3>Cum văd ultimele comenzi efectuate de către un anumit utilizator?</h3>
<p>less ~/.bash_history</p>
<p>sau</p>
<p>history</p>
<p>NB: Aceste două comenzi funcţionează DOAR dacă istoria nu a fost setată la 0 (de exemplu una din următoarele două comenzi a fost executată în sesiunea precedentă &gt;.bash_history sau export HISTSIZE=0)</p>
<h3>Cum activez optiunea de ftp upload resume?</h3>
<p>vi /etc/proftpd.conf<br />
/etc/init.d/xinetd restart</p>
<h3>Ce procese ocupă memoria?</h3>
<p>top</p>
<h3>Unde tunez serverul Apache?</h3>
<p>/etc/apache/httpd.conf<br />
/etc/apache/server-tunning.conf</p>
<h3>Unde găsesc logurile Apache?</h3>
<p>/var/log/apache2</p>
<h3>În cazul unui atac de boţi cum pot vedea IP-urile?</h3>
<p>netstat -nt</p>
<h3>Cum afişez IP-urile unice TCP?</h3>
<p>netstat -anp |grep &#8216;tcp&#8217; | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n</p>
<h3>Cum afişez IP-urile unice UDP?</h3>
<p>netstat -anp |grep &#8216;udp&#8217; | awk &#8216;{print $5}&#8217; | cut -d: -f1 | sort | uniq -c | sort -n</p>
<h3>Cum banez un IP în tabela IP?</h3>
<p>iptables -I INPUT -s 217.218.36.11 -j DROP</p>
<h3>Cum pot face o salvare la baza de date MySql?</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>Notă: Recomand cu căldură oprirea serviciului MySQL înainte de a lansa oricare din comenzile de backup de mai sus.</p>
<h3>Cum import o bază de date MySql?</h3>
<p>mysql -uadmin -pSSSS database_name &lt; /tmp/database_name.sql</p>
<p>Notă: Dacă în momentul creării dump-ului s-a folosit parametrul &#8211;create-options, bazele de date vor fi create automat în momentul importului.</p>
<h3>Cum reconstruiesc statisticile Webalizer?</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>Cum repornesc servciul de MySql?</h3>
<p>/etc/init.d/mysql restart</p>
<h3>Cum fac o salvare remote?</h3>
<p>/usr/local/psa/bin/pleskbackup all ftp://username:password@backup.onlinehome-server.info/httpdocs/backup.file</p>
<h3>Cum fac o salvare completă?</h3>
<p>/usr/local/psa/bin/pleskbackup all allbackup.file<br />
tar czf /srv/www/vhosts backup</p>
<h3>Cum pot arhiva un folder?</h3>
<p>tar czf /volumes/myexternaldrive/backup01.tgz myfolder</p>
<h3>Cum extrag un fisier?</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>Cum instalez extensia SOAP pentru 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>Cum lansez un SQL pe o bază de date?</h3>
<p>mysql -uadmin -pparola baza_date &lt; /srv/www/vhosts/domeniu.com/httpdocs/clean.sql</p>
<h3>Ce versiune de Linux folosesc?</h3>
<p>cat /proc/version<br />
cat /etc/issue</p>
<p>sau în funcţie de distribuţia folosită:</p>
<p>cat /etc/redhat-release<br />
cat /etc/debian_version</p>
<h3>Testare root viruses &#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>Testare root viruses &#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>Cum se schimbă portul SSH?</h3>
<p>vi /etc/ssh/sshd_config (change to the port 8993)<br />
/etc/rc.d/sshd restart</p>
<h3>Cum limitez şi blochez incercările repetate de logare prin SSH?</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>Care sunt aplicaţiile legate la Internet şi porturile folosite?</h3>
<p>netstat -lptu</p>
<h3>Cum gasesc un fisier?</h3>
<p>find / -name pleskbackup</p>
<p>sau mai rapid în momentul în care aţi create un index al fişierelor din sistem. Executaţi ca şi root updatedb (se recomandă rularea ei in cron zilnic sau săptămânal în funcţie de numărul de fişiere din sistem) şi o dată ce comanda a creat indexul pentru a localiza un fişier landaţi doar comanda: locate filename</p>
<p>Pentru a afla calea completă a comenzilor din PATH-ul Dvs. folosiţi: which filename</p>
<h3>Cum găsesc fişierele mari pe harddisk?</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>Cum deactivez ZMD?</h3>
<p>/var/lib/zmd/zmd.db<br />
ps -axfu | grep parse-metadata<br />
kill -9 32323 (pid-ul procesului găsit cu comanda anterioară)<br />
rm /var/lib/zmd/zmd.db<br />
/etc/init.d/novell-zmd start</p>
<h3>Cum afişez utilizatorii cu drepturi de logare în sistem?</h3>
<p>cat /etc/passwd |grep -v nologin | cut -d: -f1</p>
<h3>Cine este logat?</h3>
<p>w<br />
who -a<br />
users<br />
last (include de asemenea lista tuturor utilizatorilor care s-au logat de la ultima iniţializare a bazei de date)<br />
grep sshd /var/log/messages</p>
<h3>În caz de cădere completă HDD (poate necesita prezenţă fizică la consola serverului)</h3>
<p>fsck -fCV /dev/md1<br />
mount /dev/md1 /mnt<br />
chroot /mnt<br />
lilo (e mai probabil să aveţi grub, care a înlocuit lilo)<br />
exit<br />
umount /mnt</p>
<h3>Cum verific partiţiile existente pe un disc?</h3>
<p>fdisk -l</p>
<h3>Cum văd live fişierele jurnal?</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>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/mic-manual-de-administrare-a-serverului-web">Mic manual de administrare a serverului web</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/mic-manual-de-administrare-a-serverului-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESWC 2009 &#8211; Conferinta europeana de software 2009</title>
		<link>http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009</link>
		<comments>http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009#comments</comments>
		<pubDate>Wed, 11 Nov 2009 10:40:46 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[andy brice]]></category>
		<category><![CDATA[Conferinta europeana de software 2009]]></category>
		<category><![CDATA[conferinta software]]></category>
		<category><![CDATA[eswc 2009]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=1007</guid>
		<description><![CDATA[Am participat la weekend, pentru a treia oara la ESWC (Conferinta Europeana de Software) 2009 in Kempinsky bristol Hotel, Berlin. Cum era si de asteptat, conferinta din acest an a avut un numar mai mic de vizitatori si sponsori. Probabil si de aici un pic de apatie in public, lucru care insa cu ajutorul unor [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009">ESWC 2009 &#8211; Conferinta europeana de software 2009</a></p>



Articole asemanatoare:<ol><li><a href='http://www.submitsuite.ro/blog/european-software-conference-eswc-2009' rel='bookmark' title='Permanent Link: European Software Conference &#8211; ESWC 2009'>European Software Conference &#8211; ESWC 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Am participat la weekend, pentru a treia oara la <a href="http://www.euroconference.org/">ESWC</a> (Conferinta Europeana de Software) 2009 in Kempinsky bristol Hotel, Berlin. Cum era si de asteptat, conferinta din acest an a avut un numar mai mic de vizitatori si sponsori. Probabil si de aici un pic de apatie in public, lucru care insa cu ajutorul unor prezentari dragute a fost rezolvat. Care au fost pros si cons-urile conferintei?<span id="more-1007"></span><strong> </strong></p>
<h3>Pros:</h3>
<ol>
<li>Am discutat cu <a title="andy brice" href="http://successfulsoftware.net/2009/11/04/off-to-eswc-2009/">Andy Brice</a></li>
<li>Am incercat sa obtin informatii legate de doua noi directii pe care vreau sa continui: piata rusa si ceea chineza, sper ca Olga si Valdislav de la <a href="http://www.softkey.ru/">SoftKey.ru</a> sa ma ajute in acest sens</li>
<li>Am avut o surpriza la final sa primesc o mentiune, cineva a fost atat de dragut incat sa nominalizeze <a title="Press Release Submitter" href="http://www.submitsuite.com/products/press-release-submitter.htm">Press Release Submitter</a> la Epsilon Award</li>
</ol>
<h3>Cons:</h3>
<ol>
<li>Cam putine iSV-uri fata de anii trecuti</li>
<li>Track-ul 2 era departe fata de Track1</li>
<li>Putini sponsori, as vrea sa vad alaturi de Avangete si ShareIt si pe Embarcadero si alte firme mari</li>
</ol>
<p>Prezentarile care eu le-am vizionat sunt listate mai jos, cum primesc un link catre ele am sa postez si legaturile.</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/" target="_blank">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>Multumiri lui Dave si Cristian pentru pozele de mai jos.</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>Prezentarea mea &#8220;100 SEO methods to optimize your software site&#8221; a fost bazata pe blog postul <a title="100 metode link building" href="http://www.submitsuite.ro/blog/100-de-metode-de-a-obtine-linkuri" target="_blank">100 metode de a obtine linkuri</a> si o puteti citi mai jos.</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>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009">ESWC 2009 &#8211; Conferinta europeana de software 2009</a></p>


<p>Articole asemanatoare:</p><ol><li><a href='http://www.submitsuite.ro/blog/european-software-conference-eswc-2009' rel='bookmark' title='Permanent Link: European Software Conference &#8211; ESWC 2009'>European Software Conference &#8211; ESWC 2009</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snapnames &#8211; se fura si la case mai mari</title>
		<link>http://www.submitsuite.ro/blog/snapnames-se-fura-si-la-case-mai-mari</link>
		<comments>http://www.submitsuite.ro/blog/snapnames-se-fura-si-la-case-mai-mari#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:50:52 +0000</pubDate>
		<dc:creator>Cristina Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[domenii]]></category>
		<category><![CDATA[fura]]></category>
		<category><![CDATA[problema]]></category>
		<category><![CDATA[spanames]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=1004</guid>
		<description><![CDATA[Am primit un email incredibil de la Snapnames. Cum pot sa mai am incredere in ei acum? Si ce ma fac cu auctionurile de pana acum, va trebui sa le verific?
Dear SnapNames customer:
I’m contacting you today to inform you of an unfortunate incident at SnapNames, and to let you know what the company is doing [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/snapnames-se-fura-si-la-case-mai-mari">Snapnames &#8211; se fura si la case mai mari</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Am primit un email incredibil de la Snapnames. Cum pot sa mai am incredere in ei acum? Si ce ma fac cu auctionurile de pana acum, va trebui sa le verific?<span id="more-1004"></span></p>
<p>Dear SnapNames customer:</p>
<p>I’m contacting you today to inform you of an unfortunate incident at SnapNames, and to let you know what the company is doing to address it.</p>
<p>Recently, SnapNames discovered that an employee had set up an account on the SnapNames system under a false name and, under this name, bid in SnapNames auctions. This is a clear violation of our internal policy and was not approved by the company. We deeply regret that this conduct has impacted our customers.</p>
<p>Extent of impact</p>
<p>This conduct affected a small percentage of SnapNames auctions:<br />
* Bidding affected approximately five percent of total SnapNames auctions since 2005, most of which occurred between 2005 and 2007.<br />
* The incremental revenue from the bidding represented approximately one percent of SnapNames’ auction revenue since 2005.</p>
<p>No matter the level of impact, SnapNames takes this matter extremely seriously. When the matter was discovered, the company immediately closed the account in question and began a thorough investigation. The employee has also been dismissed from the company.</p>
<p>SnapNames further discovered that, on certain recent and limited occasions, when the employee won an auction, the employee secretly arranged to refund from SnapNames to the fictitious account a portion of the winning bid amount.</p>
<p>Remedy to affected customers</p>
<p>Though on some occasions the employee won the auction, in many instances the bidding caused the ultimate auction winner to pay more for a name than had the employee not participated in the auction.</p>
<p>SnapNames neither condones this conduct nor wants to be perceived as benefiting from the conduct. Accordingly, we have decided that regardless of the circumstance, in every auction where the employee’s fictitious account submitted a bid which resulted in a higher price being paid by the winning bidder, SnapNames will offer a rebate, with 5.22% interest (the highest applicable federal rate during the affected time period), to affected customers for the difference between the prices they actually paid and the prices they would have paid, had the employee not bid in the auctions. The rebate will be available in cash or in credit on the SnapNames platform, at your discretion.</p>
<p>SnapNames has moved quickly to address this situation. The company has retained Rust Consulting, an independent third party, who will administer the rebate offer. Within the next week, Rust Consulting will contact affected customers to provide details regarding the offer.</p>
<p>Your business and ongoing relationship are important to us and we can assure you that we have taken all necessary steps to ensure the integrity of the platform and reinforced controls and procedures to avoid any possibility of further breach. These include:</p>
<p>* Enhanced monitoring of bidding activity for suspect behavior<br />
* Additional controls over financial transactions<br />
* Specific domain name registration policies for employees</p>
<p>In the meantime, if you have any questions, you may consult the FAQs here, or contact the SnapNames support team: By e-mail: support@snapnames.com Phone: +1 (866) 690-6279 (toll-free in the U.S.) +1 (503) 241-8547 (outside the U.S.)</p>
<p>SnapNames, and all in the Oversee family of companies, are deeply disappointed with this incident. Since its founding in 2000, SnapNames has been committed to the principles of fairness and trust; the company wants to assure customers—through both words and actions—that it remains committed to those principles.</p>
<p>Thank you again for your business, and for your ongoing trust in SnapNames.</p>
<p>Sincerely,</p>
<p>Jeff Kupietzky Craig Snyder President and CEO General Manager,</p>
<p>SnapNames.com SnapNames 1600 SW 4th Avenue,<br />
Suite 400 Portland, OR 97201</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/snapnames-se-fura-si-la-case-mai-mari">Snapnames &#8211; se fura si la case mai mari</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/snapnames-se-fura-si-la-case-mai-mari/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</title>
		<link>http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri</link>
		<comments>http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:43:49 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[sitemap index]]></category>
		<category><![CDATA[sitemp mare]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=1000</guid>
		<description><![CDATA[Ce faci in cazul in care ai un site imens si vrei sa imparti sitemapurile in bucati mici? Google recomanda sitemapuri cu maxim 60.000 de linkuri. In cazul in care depasesti acest numar un sitemap index este solutia ideala. Care este trick-ul? Construiesti sitemapurile dinamice folosind metoda descrisa in postul despre in articolul citat. In [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri">Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></p>



Articole asemanatoare:<ol><li><a href='http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic' rel='bookmark' title='Permanent Link: Sitemap in PHP generat dinamic'>Sitemap in PHP generat dinamic</a></li>
<li><a href='http://www.submitsuite.ro/blog/am-14-ani-si-un-sit-web-vreau-continut-gratis-pe-site' rel='bookmark' title='Permanent Link: Am 14 ani si un sit web &#8211; vreau continut gratis pe site'>Am 14 ani si un sit web &#8211; vreau continut gratis pe site</a></li>
<li><a href='http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql' rel='bookmark' title='Permanent Link: Cel mai simplu RSS builder in PHP cu MySql'>Cel mai simplu RSS builder in PHP cu MySql</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ce faci in cazul in care ai un site imens si vrei sa imparti sitemapurile in bucati mici? Google recomanda sitemapuri cu maxim 60.000 de linkuri. In cazul in care depasesti acest numar un sitemap index este solutia ideala. Care este trick-ul? Construiesti <a title="Sitemapuri dinamice" href="http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic" target="_blank">sitemapurile dinamice</a> folosind metoda descrisa in postul despre in articolul citat. In pasul urmator construiesti un sitemap index in care inglobezi toate aceste sitemapuri generate. Iata codul folosit de mine:</p>
<p><span id="more-1000"></span></p>
<p>&lt;?php<br />
<strong> //declara headerul si inscepe sitemapul</strong><br />
header (&#8216;Content-type: text/xml&#8217;);<br />
echo &#8216;&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;ISO-8859-1&#8243; ?&gt;&#8217;;<br />
echo &#8216;&lt;sitemapindex xmlns=&#8221;http://www.sitemaps.org/schemas/sitemap/0.9&#8243;&gt;&#8217;;</p>
<p><strong> //include sitemapurile generate</strong><br />
$mainPages = array(<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap1.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap2.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap3.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap4.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap5.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap6.php&#8221;,<br />
&#8220;http://www.domeniu.ro/sitemap/sitemap7.php&#8221;<br />
);</p>
<p>for($i=0; $i&lt;count($mainPages); $i++){<br />
echo &#8216;&lt;sitemap&gt;<br />
&lt;loc&gt;&#8217;. $mainPages[$i] .&#8217;&lt;/loc&gt;<br />
&lt;lastmod&gt;&#8217; . date(&#8216;Y-m-d&#8217;, mktime(0, 0, 0, date(&#8220;m&#8221;) , date(&#8220;d&#8221;), date(&#8220;Y&#8221;))) . &#8216;&lt;/lastmod&gt;<br />
&lt;/sitemap&gt;&#8217;;<br />
}<br />
<strong><br />
//inchide sitemap index</strong><br />
echo &#8216;&lt;/sitemapindex&gt;&#8217;;<br />
?&gt;</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri">Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></p>


<p>Articole asemanatoare:</p><ol><li><a href='http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic' rel='bookmark' title='Permanent Link: Sitemap in PHP generat dinamic'>Sitemap in PHP generat dinamic</a></li>
<li><a href='http://www.submitsuite.ro/blog/am-14-ani-si-un-sit-web-vreau-continut-gratis-pe-site' rel='bookmark' title='Permanent Link: Am 14 ani si un sit web &#8211; vreau continut gratis pe site'>Am 14 ani si un sit web &#8211; vreau continut gratis pe site</a></li>
<li><a href='http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql' rel='bookmark' title='Permanent Link: Cel mai simplu RSS builder in PHP cu MySql'>Cel mai simplu RSS builder in PHP cu MySql</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>European Software Conference &#8211; ESWC 2009</title>
		<link>http://www.submitsuite.ro/blog/european-software-conference-eswc-2009</link>
		<comments>http://www.submitsuite.ro/blog/european-software-conference-eswc-2009#comments</comments>
		<pubDate>Mon, 19 Oct 2009 08:41:50 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Servicii de promovare]]></category>
		<category><![CDATA[Conferinta Europeana de Software]]></category>
		<category><![CDATA[ESWC]]></category>
		<category><![CDATA[eswc 2009]]></category>
		<category><![CDATA[European Software Conference]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=996</guid>
		<description><![CDATA[Intre 7 si 8 Noiembrie 2009 va avea loc Conferinta Europeana de Sofware ESWC 2009 la Berlin, in hotelul Kempinski  Bristol. Pentru cei care nu stiu ce este ESWC in cateva cuvinte, este evenimentul cel mai important pentru firmele mici de software (ISV, mISV, one man show etc) din Europa (iata relatarile mele de la [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/european-software-conference-eswc-2009">European Software Conference &#8211; ESWC 2009</a></p>



Articole asemanatoare:<ol><li><a href='http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; Conferinta europeana de software 2009'>ESWC 2009 &#8211; Conferinta europeana de software 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Intre 7 si 8 Noiembrie 2009 va avea loc <a title="ESWC" href="http://www.euroconference.org/" target="_blank">Conferinta Europeana de Sofware ESWC 2009</a> la Berlin, in hotelul Kempinski  Bristol. Pentru cei care nu stiu ce este ESWC in cateva cuvinte, este evenimentul cel mai important pentru firmele mici de software (ISV, mISV, one man show etc) din Europa (iata relatarile mele de la <a title="ESWC 2008" href="http://www.submitsuite.com/blog/european-software-conference-2008-eswc-2008-101" target="_blank">ESWC 2008</a> si <a title="ESWC 2007" href="http://www.submitsuite.com/blog/eswc-european-software-conference-2007-part-1-64" target="_blank">ESWC 2007</a>).</p>
<p>In speranta ca anul acesta numarul de romani prezenti va fi mai mare, incerc sa popularizez acest eveniment. Adriana de la Avangate a fost draguta si a donat o invitatie catre Cristian Pascu de la FlairBuilder. Pentru toti cei care se gandesc daca sa participe sau nu iata cateva avantaje rapide:</p>
<ul>
<li>sansa de a discuta cu cei care ofera procesari de plati si de a alege pe cel mai bun</li>
<li>sansa de a vedea prezentari de la oameni care vand software de ani de zile</li>
<li>social networking cu mISV care de obice sunt fericiti sa impartaseasca experienta lor. Pot spune ca cei pe care i-am intalnit la ESWC sunt super deschisi, in mare parte one-man-company.</li>
<li>poate cel mai important lucru, aveti posibilitatea sa vedeti ca se poate, poti supravietui si reusi ca si ISV</li>
</ul>
<p>Daca sunt intrebari, ma bucur sa le raspund aici.</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/european-software-conference-eswc-2009">European Software Conference &#8211; ESWC 2009</a></p>


<p>Articole asemanatoare:</p><ol><li><a href='http://www.submitsuite.ro/blog/eswc-2009-conferinta-europeana-de-software-2009' rel='bookmark' title='Permanent Link: ESWC 2009 &#8211; Conferinta europeana de software 2009'>ESWC 2009 &#8211; Conferinta europeana de software 2009</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/european-software-conference-eswc-2009/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitemap in PHP generat dinamic</title>
		<link>http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic</link>
		<comments>http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic#comments</comments>
		<pubDate>Fri, 02 Oct 2009 11:30:44 +0000</pubDate>
		<dc:creator>Marius Mailat</dc:creator>
				<category><![CDATA[Noutati SEO]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[sitemap dinamic]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=992</guid>
		<description><![CDATA[Am tot cautat o solutie facuta, insa se pare ca nu e multa lume interesata de subiect. Lucrez acum la un site care are peste 200.000 pagini si care va avea in jur de 40 de sitemaps. Cum fac generararea? Iata codul mai jos:

&#60;?php
//include baza de date
$db=mysql_connect($dbhost,$dbuser,$dbpass);
mysql_select_db($dbdatabase);
$mainPages = array(
&#8220;http://www.domeniu.ro/&#8221;,
&#8220;http://www.domeniu.ro/topuseri/&#8221;,
&#8220;http://www.domeniu.ro/toparticole/&#8221;);
//declara header si insceput sitemap
header (&#8216;Content-type: text/xml&#8217;);
echo [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic">Sitemap in PHP generat dinamic</a></p>



Articole asemanatoare:<ol><li><a href='http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri' rel='bookmark' title='Permanent Link: Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri'>Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></li>
<li><a href='http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql' rel='bookmark' title='Permanent Link: Cel mai simplu RSS builder in PHP cu MySql'>Cel mai simplu RSS builder in PHP cu MySql</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Am tot cautat o solutie facuta, insa se pare ca nu e multa lume interesata de subiect. Lucrez acum la un site care are peste 200.000 pagini si care va avea in jur de 40 de sitemaps. Cum fac generararea? Iata codul mai jos:</p>
<p><span id="more-992"></span></p>
<p>&lt;?php<br />
//include baza de date<br />
$db=mysql_connect($<strong>dbhost</strong>,$<strong>dbuser</strong>,$<strong>dbpass</strong>);<br />
mysql_select_db($<strong>dbdatabase</strong>);</p>
<p>$mainPages = array(<br />
&#8220;http://www.domeniu.ro/&#8221;,<br />
&#8220;http://www.domeniu.ro/topuseri/&#8221;,<br />
&#8220;http://www.domeniu.ro/toparticole/&#8221;);</p>
<p>//declara header si insceput sitemap<br />
header (&#8216;Content-type: text/xml&#8217;);<br />
echo &#8216;&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;ISO-8859-1&#8243; ?&gt;&#8217;;<br />
echo &#8216;&lt;urlset xmlns=&#8221;http://www.google.com/schemas/sitemap/0.84&#8243; xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; xsi:schemaLocation=&#8221;http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd&#8221;&gt;&#8217;;</p>
<p>for($i=0; $i&lt;count($mainPages); $i++){<br />
echo &#8216;&lt;url&gt;<br />
&lt;loc&gt;&#8217;. $mainPages[$i] .&#8217;&lt;/loc&gt;<br />
&lt;changefreq&gt;daily&lt;/changefreq&gt;<br />
&lt;priority&gt;1.0&lt;/priority&gt;<br />
&lt;/url&gt;&#8217;;<br />
}</p>
<p>//genereaza categoriile<br />
$map_result = mysql_query(&#8220;SELECT id FROM categorii&#8221;);<br />
while ($map_row = mysql_fetch_array($map_result)) {<br />
$category = &#8220;http://www.domeniu.ro/categorie/&#8221; . $map_row['id'] . &#8220;/&#8221;;</p>
<p>echo &#8221;<br />
&lt;url&gt;<br />
&lt;loc&gt;&#8221;. $category  .&#8221;&lt;/loc&gt;<br />
&lt;changefreq&gt;weekly&lt;/changefreq&gt;<br />
&lt;priority&gt;1.0&lt;/priority&gt;<br />
&lt;/url&gt;&#8221;;<br />
}</p>
<p>//genereaza elementele<br />
$map_result = mysql_query(&#8220;SELECT id FROM articole WHERE aprobat = 1&#8243;);<br />
while ($map_row = mysql_fetch_array($map_result)) {<br />
echo &#8216;<br />
&lt;url&gt;<br />
&lt;loc&gt;http://www.domeniu.ro/articol/&#8217;. $map_row['id'] .&#8217;/&lt;/loc&gt;<br />
&lt;changefreq&gt;weekly&lt;/changefreq&gt;<br />
&lt;priority&gt;1.0&lt;/priority&gt;<br />
&lt;/url&gt;&#8217;;<br />
}</p>
<p>//inchide sitemapul<br />
echo &#8216;<br />
&lt;/urlset&gt;&#8217;;</p>
<p>?&gt;</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic">Sitemap in PHP generat dinamic</a></p>


<p>Articole asemanatoare:</p><ol><li><a href='http://www.submitsuite.ro/blog/sitemap-index-cum-sa-faci-fata-la-un-site-cu-500-000-de-linkuri' rel='bookmark' title='Permanent Link: Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri'>Sitemap index, cum sa faci fata la un site cu 500.000 de linkuri</a></li>
<li><a href='http://www.submitsuite.ro/blog/cel-mai-simplu-rss-builder-in-php-cu-mysql' rel='bookmark' title='Permanent Link: Cel mai simplu RSS builder in PHP cu MySql'>Cel mai simplu RSS builder in PHP cu MySql</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/sitemap-in-php-generat-dinamic/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Lista siteuri de anunturi</title>
		<link>http://www.submitsuite.ro/blog/lista-siteuri-de-anunturi</link>
		<comments>http://www.submitsuite.ro/blog/lista-siteuri-de-anunturi#comments</comments>
		<pubDate>Tue, 07 Jul 2009 10:17:45 +0000</pubDate>
		<dc:creator>Cristina Mailat</dc:creator>
				<category><![CDATA[Servicii de promovare]]></category>
		<category><![CDATA[Anunturi]]></category>
		<category><![CDATA[lista siteuri anunturi]]></category>
		<category><![CDATA[lista siteuri anunturi cu inregistrare]]></category>
		<category><![CDATA[lista siteuri anunturi cu plata]]></category>
		<category><![CDATA[lista siteuri anunturi gratuite]]></category>
		<category><![CDATA[top siteuri anunturi]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=975</guid>
		<description><![CDATA[Lista de mai jos contine 1014 siteuri de anunturi romanesti si este la momentul actual lista ceea mai completa si mai sigura de siteuri unde se pot publica anunturile publicitare. Lista e bazata pe baza de date de 500 siteuri de anunturi gratuite continuta in aplicatia Anunturi ( descarca de aici o versiune de proba [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/lista-siteuri-de-anunturi">Lista siteuri de anunturi</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Lista de mai jos contine <strong>1014 siteuri de anunturi romanesti</strong> si este la momentul actual lista ceea mai completa si mai sigura de siteuri unde se pot publica anunturile publicitare. Lista e bazata pe baza de date de 500 siteuri de anunturi gratuite continuta in aplicatia <a title="Anunturi" href="http://www.submitsuite.ro/produse/anunturi.htm" target="_blank">Anunturi</a> ( <a href="http://www.submitsuite.ro/descarca/anunturisetup.exe" target="_blank">descarca de aici o versiune de proba</a> ). Lista contine pana acum:</p>
<ul>
<li>504 siteuri de anunturi gratuite</li>
<li>500 siteuri cu inregistrare</li>
<li>10 siteuri cu plata</li>
</ul>
<p><span id="more-975"></span></p>
<h3>Lista de siteuri de anunturi gratuite</h3>
<table border="0" cellspacing="0" cellpadding="2" width="443">
<tr>
<th>Numele siteului</th>
<th>Google Pr</th>
</tr>
<tr>
<td>shopmania.ro</td>
<td>6</td>
</tr>
<tr>
<td>kappa.ro</td>
<td>6</td>
</tr>
<tr>
<td>acr.ro</td>
<td>6</td>
</tr>
<tr>
<td>apropo.ro</td>
<td>6</td>
</tr>
<tr>
<td>home.ro</td>
<td>6</td>
</tr>
<tr>
<td>legaturi.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturi.acasa.ro</td>
<td>5</td>
</tr>
<tr>
<td>commune.ro</td>
<td>5</td>
</tr>
<tr>
<td>jobber.ro</td>
<td>5</td>
</tr>
<tr>
<td>price.ro</td>
<td>5</td>
</tr>
<tr>
<td>publitim.ro</td>
<td>5</td>
</tr>
<tr>
<td>imobiliare.run.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturi-agricole.ro</td>
<td>5</td>
</tr>
<tr>
<td>conta.ro</td>
<td>5</td>
</tr>
<tr>
<td>piata-az.ro</td>
<td>5</td>
</tr>
<tr>
<td>bzi.ro</td>
<td>5</td>
</tr>
<tr>
<td>dsclex.ro</td>
<td>5</td>
</tr>
<tr>
<td>graduatejobs.ro</td>
<td>5</td>
</tr>
<tr>
<td>oron.ro</td>
<td>5</td>
</tr>
<tr>
<td>oradea-online.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturiimobiliare.ro</td>
<td>5</td>
</tr>
<tr>
<td>sibiul.ro</td>
<td>5</td>
</tr>
<tr>
<td>sign.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunt-auto.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunt.co.uk</td>
<td>4</td>
</tr>
<tr>
<td>anunturipeinternet.ro</td>
<td>4</td>
</tr>
<tr>
<td>vandmasini.ro</td>
<td>4</td>
</tr>
<tr>
<td>talcioc.net</td>
<td>4</td>
</tr>
<tr>
<td>stocuri.com</td>
<td>4</td>
</tr>
<tr>
<td>totcedoresti.ro</td>
<td>4</td>
</tr>
<tr>
<td>e-oferta.ro</td>
<td>4</td>
</tr>
<tr>
<td>deseuri-online.ro</td>
<td>4</td>
</tr>
<tr>
<td>coriax.ro</td>
<td>4</td>
</tr>
<tr>
<td>pisici.ro</td>
<td>4</td>
</tr>
<tr>
<td>eghid.ro</td>
<td>4</td>
</tr>
<tr>
<td>piata-agricola.ro</td>
<td>4</td>
</tr>
<tr>
<td>e-transport.ro</td>
<td>4</td>
</tr>
<tr>
<td>eimobiliare.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturiagricole.eu</td>
<td>4</td>
</tr>
<tr>
<td>anunturi-on-line.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.itbox.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.ro</td>
<td>4</td>
</tr>
<tr>
<td>sinpro.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturiexpres.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturiparticulari.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.telegrafonline.ro</td>
<td>4</td>
</tr>
<tr>
<td>woow.ro</td>
<td>4</td>
</tr>
<tr>
<td>4imobiliare.ro</td>
<td>4</td>
</tr>
<tr>
<td>anuntul.biz</td>
<td>4</td>
</tr>
<tr>
<td>ziarulgorjului.ro</td>
<td>4</td>
</tr>
<tr>
<td>1001-locuridemunca.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.freshinfo.ro</td>
<td>4</td>
</tr>
<tr>
<td>ziua.ro</td>
<td>4</td>
</tr>
<tr>
<td>publi4u.ro</td>
<td>4</td>
</tr>
<tr>
<td>bikeshop.ro</td>
<td>4</td>
</tr>
<tr>
<td>autobizz.ro</td>
<td>4</td>
</tr>
<tr>
<td>bazaronline.ro</td>
<td>4</td>
</tr>
<tr>
<td>pretulzilei.ro</td>
<td>4</td>
</tr>
<tr>
<td>avizier.ro</td>
<td>4</td>
</tr>
<tr>
<td>autorally.ro</td>
<td>4</td>
</tr>
<tr>
<td>raidgalati.ro</td>
<td>4</td>
</tr>
<tr>
<td>bursaterenurilor.ro</td>
<td>4</td>
</tr>
<tr>
<td>cauta.net</td>
<td>4</td>
</tr>
<tr>
<td>cetatean.ro</td>
<td>4</td>
</tr>
<tr>
<td>bursaagricola.ro</td>
<td>4</td>
</tr>
<tr>
<td>autolines.ro</td>
<td>4</td>
</tr>
<tr>
<td>autopuls.ro</td>
<td>4</td>
</tr>
<tr>
<td>publion.ro</td>
<td>4</td>
</tr>
<tr>
<td>monitorulexpres.ro</td>
<td>4</td>
</tr>
<tr>
<td>imobiliare.net</td>
<td>4</td>
</tr>
<tr>
<td>minim.ro</td>
<td>4</td>
</tr>
<tr>
<td>emaramures.ro</td>
<td>4</td>
</tr>
<tr>
<td>piatza.ro</td>
<td>4</td>
</tr>
<tr>
<td>piataolteniei.ro</td>
<td>4</td>
</tr>
<tr>
<td>dauanunt.ro</td>
<td>4</td>
</tr>
<tr>
<td>infoaliment.ro</td>
<td>4</td>
</tr>
<tr>
<td>node.ro</td>
<td>4</td>
</tr>
<tr>
<td>netad.ro</td>
<td>4</td>
</tr>
<tr>
<td>nod.ro</td>
<td>4</td>
</tr>
<tr>
<td>online.anuntul.ro</td>
<td>4</td>
</tr>
<tr>
<td>imperecheri.ro</td>
<td>4</td>
</tr>
<tr>
<td>ncm.ro</td>
<td>4</td>
</tr>
<tr>
<td>ghidulbacaului.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunta.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.org</td>
<td>3</td>
</tr>
<tr>
<td>dinbacau.ro</td>
<td>3</td>
</tr>
<tr>
<td>buzaulive.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunt123.com</td>
<td>3</td>
</tr>
<tr>
<td>devanzarefaraintermediari.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunt.md</td>
<td>3</td>
</tr>
<tr>
<td>trade.ro</td>
<td>3</td>
</tr>
<tr>
<td>trompeta.ro</td>
<td>3</td>
</tr>
<tr>
<td>autoschrott.ro</td>
<td>3</td>
</tr>
<tr>
<td>amicasa.ro</td>
<td>3</td>
</tr>
<tr>
<td>director.okay.ro</td>
<td>3</td>
</tr>
<tr>
<td>afacerinet.ro</td>
<td>3</td>
</tr>
<tr>
<td>cautstapan.ro</td>
<td>3</td>
</tr>
<tr>
<td>cta.ro</td>
<td>3</td>
</tr>
<tr>
<td>eanuntul.net</td>
<td>3</td>
</tr>
<tr>
<td>century21imobexpert.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-agricultura.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-az.ro</td>
<td>3</td>
</tr>
<tr>
<td>albaiulia.mconet.biz</td>
<td>3</td>
</tr>
<tr>
<td>epagini.com</td>
<td>3</td>
</tr>
<tr>
<td>afacereamea.ro</td>
<td>3</td>
</tr>
<tr>
<td>albaon.ro</td>
<td>3</td>
</tr>
<tr>
<td>altacasa.ro</td>
<td>3</td>
</tr>
<tr>
<td>eanimale.ro</td>
<td>3</td>
</tr>
<tr>
<td>publicitare.ro</td>
<td>3</td>
</tr>
<tr>
<td>perlings.ro</td>
<td>3</td>
</tr>
<tr>
<td>pagini.info</td>
<td>3</td>
</tr>
<tr>
<td>realvirtual.ro</td>
<td>3</td>
</tr>
<tr>
<td>ro-run.ro</td>
<td>3</td>
</tr>
<tr>
<td>proiasi.ro</td>
<td>3</td>
</tr>
<tr>
<td>probotosani.ro</td>
<td>3</td>
</tr>
<tr>
<td>market.audio.ro</td>
<td>3</td>
</tr>
<tr>
<td>mediapress.ro</td>
<td>3</td>
</tr>
<tr>
<td>mareaunire.com</td>
<td>3</td>
</tr>
<tr>
<td>studentmarket.ro</td>
<td>3</td>
</tr>
<tr>
<td>remax-premier.ro</td>
<td>3</td>
</tr>
<tr>
<td>piata-auto.com</td>
<td>3</td>
</tr>
<tr>
<td>pieseauto.info</td>
<td>3</td>
</tr>
<tr>
<td>velas.ro</td>
<td>3</td>
</tr>
<tr>
<td>mondocasa.ro</td>
<td>3</td>
</tr>
<tr>
<td>publionline.ro</td>
<td>3</td>
</tr>
<tr>
<td>theromanians.ca</td>
<td>3</td>
</tr>
<tr>
<td>onestionline.ro</td>
<td>3</td>
</tr>
<tr>
<td>toppublicitate.ro</td>
<td>3</td>
</tr>
<tr>
<td>paginaauto.ro</td>
<td>3</td>
</tr>
<tr>
<td>pro-casa.ro</td>
<td>3</td>
</tr>
<tr>
<td>pretulsv.ro</td>
<td>3</td>
</tr>
<tr>
<td>vand-cumpar.eu</td>
<td>3</td>
</tr>
<tr>
<td>vanzaremasini.ro</td>
<td>3</td>
</tr>
<tr>
<td>publiconline.ro</td>
<td>3</td>
</tr>
<tr>
<td>fortunaimob.ro</td>
<td>3</td>
</tr>
<tr>
<td>forumauto.ro</td>
<td>3</td>
</tr>
<tr>
<td>intervila.ro</td>
<td>3</td>
</tr>
<tr>
<td>fingerprint.ro</td>
<td>3</td>
</tr>
<tr>
<td>aaz.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturibucuresti.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.afix.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturipro.ro</td>
<td>3</td>
</tr>
<tr>
<td>linkuri-turistice.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-in-bucuresti.ro</td>
<td>3</td>
</tr>
<tr>
<td>infopuls.ro</td>
<td>3</td>
</tr>
<tr>
<td>interimobiliare.ro</td>
<td>3</td>
</tr>
<tr>
<td>adauga-anunturi.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.memo.ro</td>
<td>3</td>
</tr>
<tr>
<td>imobiliare-romania.com</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.jurnalulbtd.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.oltenia.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturigarla.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-gratuite.ro</td>
<td>3</td>
</tr>
<tr>
<td>etim.ro</td>
<td>3</td>
</tr>
<tr>
<td>fagarasonline.ro</td>
<td>3</td>
</tr>
<tr>
<td>etarg.ro</td>
<td>3</td>
</tr>
<tr>
<td>imarket.ro</td>
<td>3</td>
</tr>
<tr>
<td>imobiliare-imobiliare.ro</td>
<td>3</td>
</tr>
<tr>
<td>100pub.ro</td>
<td>3</td>
</tr>
<tr>
<td>kilipir.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntimobiliar.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntgratuit.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntu.ro</td>
<td>3</td>
</tr>
<tr>
<td>cityrealestate.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi&#8211;gratuite.eu</td>
<td>3</td>
</tr>
<tr>
<td>constructii-transilvania.ro</td>
<td>3</td>
</tr>
<tr>
<td>caini.ro</td>
<td>3</td>
</tr>
<tr>
<td>cartuning.ro</td>
<td>3</td>
</tr>
<tr>
<td>case.md</td>
<td>3</td>
</tr>
<tr>
<td>anuntromania.ro</td>
<td>3</td>
</tr>
<tr>
<td>casa9.ro</td>
<td>3</td>
</tr>
<tr>
<td>casameaonline.ro</td>
<td>3</td>
</tr>
<tr>
<td>az.ro</td>
<td>3</td>
</tr>
<tr>
<td>imobiltrade.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturigratuite.com</td>
<td>3</td>
</tr>
<tr>
<td>auto-az.ro</td>
<td>3</td>
</tr>
<tr>
<td>komercial.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.anatech.ro</td>
<td>3</td>
</tr>
<tr>
<td>imobiliareazi.ro</td>
<td>3</td>
</tr>
<tr>
<td>imorom.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturigratuite.net</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.biz</td>
<td>3</td>
</tr>
<tr>
<td>imobilul.net</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.bizcity.ro</td>
<td>3</td>
</tr>
<tr>
<td>inchirieri-apartamente-cluj.ro</td>
<td>3</td>
</tr>
<tr>
<td>masinidefecte.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-online-gratis.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturicraiova.ro</td>
<td>2</td>
</tr>
<tr>
<td>celmaiieftin.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturiagricultura.ro</td>
<td>2</td>
</tr>
<tr>
<td>real-office.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-instant.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-meditatii.com</td>
<td>2</td>
</tr>
<tr>
<td>primaimobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>stoc24.ro</td>
<td>2</td>
</tr>
<tr>
<td>clubimobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>club-anunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>propertyplus.ro</td>
<td>2</td>
</tr>
<tr>
<td>piatamare.ro</td>
<td>2</td>
</tr>
<tr>
<td>retetata.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturigratuitebucuresti.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-apartamente.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-agentii.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.cartiagricole.ro</td>
<td>2</td>
</tr>
<tr>
<td>adoos.ro</td>
<td>2</td>
</tr>
<tr>
<td>auto-oferte.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.netul.ro</td>
<td>2</td>
</tr>
<tr>
<td>veneisconsulting.com</td>
<td>2</td>
</tr>
<tr>
<td>megaterenuri.ro</td>
<td>2</td>
</tr>
<tr>
<td>apartament-sibiu.ro</td>
<td>2</td>
</tr>
<tr>
<td>autospot.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-litoral.com</td>
<td>2</td>
</tr>
<tr>
<td>adauga-anunt.ro</td>
<td>2</td>
</tr>
<tr>
<td>vandcamionutilaj.ro</td>
<td>2</td>
</tr>
<tr>
<td>agricole.ro</td>
<td>2</td>
</tr>
<tr>
<td>autostandard.ro</td>
<td>2</td>
</tr>
<tr>
<td>wimobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>ro-imobile.ro</td>
<td>2</td>
</tr>
<tr>
<td>mediapartner.ro</td>
<td>2</td>
</tr>
<tr>
<td>rogrup.com</td>
<td>2</td>
</tr>
<tr>
<td>studio-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>pasari-si-animale.ro</td>
<td>2</td>
</tr>
<tr>
<td>euroland-invest.ro</td>
<td>2</td>
</tr>
<tr>
<td>inforapart.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.alienstation.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntul-anunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>superauto.ro</td>
<td>2</td>
</tr>
<tr>
<td>eanunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>intercomp-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>ecoimobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>ziarulmicapublicitate.ro</td>
<td>2</td>
</tr>
<tr>
<td>piataauto.ro</td>
<td>2</td>
</tr>
<tr>
<td>panoramic-bucuresti.ro</td>
<td>2</td>
</tr>
<tr>
<td>media-plus.ro</td>
<td>2</td>
</tr>
<tr>
<td>sebis.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-practice.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-utile.ro</td>
<td>2</td>
</tr>
<tr>
<td>masini-de-vanzare.ro</td>
<td>2</td>
</tr>
<tr>
<td>prieteni.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi1.com</td>
<td>2</td>
</tr>
<tr>
<td>landex.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-terenuri-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>interactiuni.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntulse.ro</td>
<td>2</td>
</tr>
<tr>
<td>optimacasa.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.agendabacau.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturipenet.net</td>
<td>2</td>
</tr>
<tr>
<td>adauga.anunturi360.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntul-meu.com</td>
<td>2</td>
</tr>
<tr>
<td>anunturidinsibiu.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.b-o.ro</td>
<td>2</td>
</tr>
<tr>
<td>balci.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntzuri-online.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturivalcea.ro</td>
<td>2</td>
</tr>
<tr>
<td>yup.ro</td>
<td>2</td>
</tr>
<tr>
<td>topautomoto.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntalba.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturipublicitate.com</td>
<td>2</td>
</tr>
<tr>
<td>anunturiromania.info</td>
<td>2</td>
</tr>
<tr>
<td>anunt.glp.ro</td>
<td>2</td>
</tr>
<tr>
<td>noriss.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunt-imobiliar.ro</td>
<td>2</td>
</tr>
<tr>
<td>ldmstudio.com</td>
<td>2</td>
</tr>
<tr>
<td>imoanunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>tratative.ro</td>
<td>2</td>
</tr>
<tr>
<td>ghidro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare.info-heaven.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-terenuri.ro</td>
<td>2</td>
</tr>
<tr>
<td>web-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>multiasig.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.rpi.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobis.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi.ghici.eu</td>
<td>2</td>
</tr>
<tr>
<td>publidom.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunt.net</td>
<td>2</td>
</tr>
<tr>
<td>ocazionale.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntgratis.ro</td>
<td>2</td>
</tr>
<tr>
<td>best-cars.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturiromania.com</td>
<td>2</td>
</tr>
<tr>
<td>forterra.ro</td>
<td>2</td>
</tr>
<tr>
<td>tranzactii-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>fastnews.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-info.ro</td>
<td>1</td>
</tr>
<tr>
<td>omegaimobiliare.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobiliare-galati.ro</td>
<td>1</td>
</tr>
<tr>
<td>proboats.ro</td>
<td>1</td>
</tr>
<tr>
<td>ceimaitari.ro</td>
<td>1</td>
</tr>
<tr>
<td>fandigo.ro</td>
<td>1</td>
</tr>
<tr>
<td>oriceon.ro</td>
<td>1</td>
</tr>
<tr>
<td>eec.ro</td>
<td>1</td>
</tr>
<tr>
<td>entaimobiliare.ro</td>
<td>1</td>
</tr>
<tr>
<td>fara-intermediari.ro</td>
<td>1</td>
</tr>
<tr>
<td>exareal.ro</td>
<td>1</td>
</tr>
<tr>
<td>companie.biz</td>
<td>1</td>
</tr>
<tr>
<td>coral-im.ro</td>
<td>1</td>
</tr>
<tr>
<td>citypets.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobgold.ro</td>
<td>1</td>
</tr>
<tr>
<td>clickanunt.ro</td>
<td>1</td>
</tr>
<tr>
<td>planuriimobiliare.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobiliare-tulcea.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobiliare.ro3.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobiliare-online.cabanova.ro</td>
<td>1</td>
</tr>
<tr>
<td>portalulmeu.com</td>
<td>1</td>
</tr>
<tr>
<td>chicagoromania.com</td>
<td>1</td>
</tr>
<tr>
<td>ogarul.ro</td>
<td>1</td>
</tr>
<tr>
<td>info.megagrup.ro</td>
<td>1</td>
</tr>
<tr>
<td>avigroupimob.ro</td>
<td>1</td>
</tr>
<tr>
<td>mmimobiliarexpert.ro</td>
<td>1</td>
</tr>
<tr>
<td>promosuceava.ro</td>
<td>1</td>
</tr>
<tr>
<td>publine.ro</td>
<td>1</td>
</tr>
<tr>
<td>indexanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>carnetul.ro</td>
<td>1</td>
</tr>
<tr>
<td>autofun.ro</td>
<td>1</td>
</tr>
<tr>
<td>proiecte-rezidentiale.com</td>
<td>1</td>
</tr>
<tr>
<td>infobihor.ro</td>
<td>1</td>
</tr>
<tr>
<td>infoanunt.ro</td>
<td>1</td>
</tr>
<tr>
<td>n-anunturi.com</td>
<td>1</td>
</tr>
<tr>
<td>n-oferte.ro</td>
<td>1</td>
</tr>
<tr>
<td>piataterenurilor.ro</td>
<td>1</td>
</tr>
<tr>
<td>imob-expert.ro</td>
<td>1</td>
</tr>
<tr>
<td>cyclonimobiliare.ro</td>
<td>1</td>
</tr>
<tr>
<td>demstar.ro</td>
<td>1</td>
</tr>
<tr>
<td>publicanunt.ro</td>
<td>1</td>
</tr>
<tr>
<td>mocazii.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobilul.ro</td>
<td>1</td>
</tr>
<tr>
<td>piataseverineana.ro</td>
<td>1</td>
</tr>
<tr>
<td>proiecte-imobiliare.com</td>
<td>1</td>
</tr>
<tr>
<td>autofree.ro</td>
<td>1</td>
</tr>
<tr>
<td>amdf-imobiliare.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunta.info</td>
<td>1</td>
</tr>
<tr>
<td>adaugaanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>andraimob.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuncioo.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntagricol.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi.yho.ro</td>
<td>1</td>
</tr>
<tr>
<td>imobiliare.anatech.ro</td>
<td>1</td>
</tr>
<tr>
<td>vanzare-masini.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunt-gratis.info</td>
<td>1</td>
</tr>
<tr>
<td>anunt-gratuit.com</td>
<td>1</td>
</tr>
<tr>
<td>publizet.ro</td>
<td>1</td>
</tr>
<tr>
<td>assabiz.org</td>
<td>1</td>
</tr>
<tr>
<td>publisio.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturipro.com</td>
<td>1</td>
</tr>
<tr>
<td>anunturiplatite.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigratuite.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigratuite24.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigr.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiimobiliaregratuite.ro</td>
<td>1</td>
</tr>
<tr>
<td>ro-anunt.com</td>
<td>1</td>
</tr>
<tr>
<td>anunturigratuite.ws</td>
<td>1</td>
</tr>
<tr>
<td>yoanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntph.ro</td>
<td>1</td>
</tr>
<tr>
<td>tarefrate.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-gratuite-online.eu</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-publicitare.ro</td>
<td>1</td>
</tr>
<tr>
<td>rovana.wellcome.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntuldeiasi.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntulderoman.3x.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-caini-pisici.ro</td>
<td>1</td>
</tr>
<tr>
<td>toataromania.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-arad.ro</td>
<td>1</td>
</tr>
<tr>
<td>vanzarianimale.com</td>
<td>1</td>
</tr>
<tr>
<td>123romania.ro</td>
<td>1</td>
</tr>
<tr>
<td>aaparut.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi.rdszone.com</td>
<td>1</td>
</tr>
<tr>
<td>aaanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-net.ro</td>
<td>1</td>
</tr>
<tr>
<td>ropedia.info</td>
<td>1</td>
</tr>
<tr>
<td>anunturifree.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-imobiliare-iasi.ro</td>
<td>1</td>
</tr>
<tr>
<td>someri.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-imobiliare-brasov.ro</td>
<td>1</td>
</tr>
<tr>
<td>videoanunturi.net</td>
<td>0</td>
</tr>
<tr>
<td>bestcapital.ro</td>
<td>0</td>
</tr>
<tr>
<td>micapublicitatepro.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.oniasi.ro</td>
<td>0</td>
</tr>
<tr>
<td>emotors.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntul-online.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntul-gratuit.com</td>
<td>0</td>
</tr>
<tr>
<td>bbuy.ro</td>
<td>0</td>
</tr>
<tr>
<td>autopit.ro</td>
<td>0</td>
</tr>
<tr>
<td>mciuc.eu</td>
<td>0</td>
</tr>
<tr>
<td>auto.mytools.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.addsite.ro</td>
<td>0</td>
</tr>
<tr>
<td>vinzaripiese.ro</td>
<td>0</td>
</tr>
<tr>
<td>ziarulsatul.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-gratuite.presa-zilei.ro</td>
<td>0</td>
</tr>
<tr>
<td>piatanet.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-diverse.ro</td>
<td>0</td>
</tr>
<tr>
<td>elitecar.ro</td>
<td>0</td>
</tr>
<tr>
<td>diversity.ro</td>
<td>0</td>
</tr>
<tr>
<td>paginadeanunturi.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturitotale.ro</td>
<td>0</td>
</tr>
<tr>
<td>cedoresti.ro</td>
<td>0</td>
</tr>
<tr>
<td>diamon.ro</td>
<td>0</td>
</tr>
<tr>
<td>ecaracal.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-gratuite.org</td>
<td>0</td>
</tr>
<tr>
<td>autovalcea.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-imobiliare-gratis.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-gratis.info</td>
<td>0</td>
</tr>
<tr>
<td>suvenirimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>eaiimpex.com</td>
<td>0</td>
</tr>
<tr>
<td>anuntultaugratuit.com</td>
<td>0</td>
</tr>
<tr>
<td>banunturi.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturigratispro.com</td>
<td>0</td>
</tr>
<tr>
<td>bummm.ro</td>
<td>0</td>
</tr>
<tr>
<td>promoneamt.ro</td>
<td>0</td>
</tr>
<tr>
<td>101anunturi.com</td>
<td>0</td>
</tr>
<tr>
<td>ghidutil.ro</td>
<td>0</td>
</tr>
<tr>
<td>oau.ro</td>
<td>0</td>
</tr>
<tr>
<td>casaimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>proiectauto.ro</td>
<td>0</td>
</tr>
<tr>
<td>prodomus-rw.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliare-scanteia.ro</td>
<td>0</td>
</tr>
<tr>
<td>musatimob.ro</td>
<td>0</td>
</tr>
<tr>
<td>cazare.rol.ro</td>
<td>0</td>
</tr>
<tr>
<td>casaproprietarului.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliare-rezidential.ro</td>
<td>0</td>
</tr>
<tr>
<td>casepenet.ro</td>
<td>0</td>
</tr>
<tr>
<td>hausexpert.ro</td>
<td>0</td>
</tr>
<tr>
<td>bpznouasperanta.ro</td>
<td>0</td>
</tr>
<tr>
<td>almanstyl.ro</td>
<td>0</td>
</tr>
<tr>
<td>turism.chuy.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturivalcene.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.imobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.fleshsoft.eu</td>
<td>0</td>
</tr>
<tr>
<td>adauga-anunturi.anunturigratuiteonline.ro</td>
<td>0</td>
</tr>
<tr>
<td>despreafaceri.com</td>
<td>0</td>
</tr>
<tr>
<td>gherla.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-craiova.1or1.info</td>
<td>0</td>
</tr>
<tr>
<td>piatademaramures.ro</td>
<td>0</td>
</tr>
<tr>
<td>hermesimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturiconstanta.com</td>
<td>0</td>
</tr>
<tr>
<td>adexpress.ro</td>
<td>0</td>
</tr>
<tr>
<td>serviciionline.net</td>
<td>0</td>
</tr>
<tr>
<td>publicare-anunturi.ro</td>
<td>0</td>
</tr>
<tr>
<td>mytools.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.whd.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.xro.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliarevalcea.ro</td>
<td>0</td>
</tr>
<tr>
<td>inforally.sibiul.ro</td>
<td>0</td>
</tr>
<tr>
<td>masiniieftine.ro</td>
<td>0</td>
</tr>
<tr>
<td>vandteren.eu</td>
<td>0</td>
</tr>
<tr>
<td>activinfo.ro</td>
<td>0</td>
</tr>
<tr>
<td>vanzari-teren.ro</td>
<td>0</td>
</tr>
<tr>
<td>vandorice.ro</td>
<td>0</td>
</tr>
<tr>
<td>altika.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliaresector6.ro</td>
<td>0</td>
</tr>
<tr>
<td>multimix.ro</td>
<td>0</td>
</tr>
<tr>
<td>monede.ro</td>
<td>0</td>
</tr>
<tr>
<td>24ro.info</td>
<td>0</td>
</tr>
<tr>
<td>eurolandgrup.ro</td>
<td>0</td>
</tr>
<tr>
<td>i-anunt.com</td>
<td>0</td>
</tr>
<tr>
<td>anuntgratuit.info</td>
<td>0</td>
</tr>
<tr>
<td>idealimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>oferte.net</td>
<td>0</td>
</tr>
<tr>
<td>anunt-gratis.ro</td>
<td>0</td>
</tr>
<tr>
<td>estart.ro</td>
<td>0</td>
</tr>
<tr>
<td>firstimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>infotext.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.alege.net</td>
<td>0</td>
</tr>
<tr>
<td>infoterenuri.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntaonline.info</td>
<td>0</td>
</tr>
<tr>
<td>expertproimobiliar.ro</td>
<td>0</td>
</tr>
<tr>
<td>orasulnostru.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntgratuit.net</td>
<td>0</td>
</tr>
<tr>
<td>evrika.ro</td>
<td>0</td>
</tr>
<tr>
<td>universonline.ro</td>
<td>0</td>
</tr>
<tr>
<td>cosmoimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>cristian-imobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>caiderasa.ro</td>
<td>0</td>
</tr>
<tr>
<td>real-imobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>spiridus.com</td>
<td>0</td>
</tr>
<tr>
<td>as-company.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-imobiliare.net</td>
<td>0</td>
</tr>
<tr>
<td>anunturigratuite.trei.ro</td>
<td>0</td>
</tr>
<tr>
<td>publicitate.reclama-buzoiana.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturicazare.info</td>
<td>0</td>
</tr>
<tr>
<td>apartamente-case.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturinet.com</td>
<td>0</td>
</tr>
<tr>
<td>bebebazar.ro</td>
<td>0</td>
</tr>
<tr>
<td>bursa-terenuri.com</td>
<td>0</td>
</tr>
<tr>
<td>prundu.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi10.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.ropedia.info</td>
<td>0</td>
</tr>
<tr>
<td>imobiliarabalotesti.ro</td>
<td>0</td>
</tr>
<tr>
<td>vandauto.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.netflash.ro</td>
<td>0</td>
</tr>
<tr>
<td>inchirieri.e-iasi.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.businessconsult.ro</td>
<td>0</td>
</tr>
<tr>
<td>mega-anunturi.com</td>
<td>0</td>
</tr>
<tr>
<td>imobgoian.ro</td>
<td>0</td>
</tr>
<tr>
<td>continentalhouse.ro</td>
<td>0</td>
</tr>
<tr>
<td>romania.webro.info</td>
<td>0</td>
</tr>
<tr>
<td>anunturi100.com</td>
<td>0</td>
</tr>
<tr>
<td>aproapeorice.ro</td>
<td>0</td>
</tr>
<tr>
<td>viatadeapoi.ro</td>
<td>0</td>
</tr>
<tr>
<td>teren-bucuresti.ro</td>
<td>0</td>
</tr>
<tr>
<td>comert-engros.ro</td>
<td>0</td>
</tr>
</table>
<h3>Lista siteuri de anunturi cu inregistrare</h3>
<table border="0" cellspacing="0" cellpadding="2" width="443">
<tr>
<th>Numele siteului</th>
<th>Google Pr</th>
</tr>
<tr>
<td>ejobs.ro</td>
<td>8</td>
</tr>
<tr>
<td>bestjobs.ro</td>
<td>6</td>
</tr>
<tr>
<td>okaziiauto.ro</td>
<td>6</td>
</tr>
<tr>
<td>okazii.ro</td>
<td>6</td>
</tr>
<tr>
<td>perfectauto.ro</td>
<td>5</td>
</tr>
<tr>
<td>micapublicitate.net</td>
<td>5</td>
</tr>
<tr>
<td>librom.ro/my</td>
<td>5</td>
</tr>
<tr>
<td>apulum94.ro</td>
<td>5</td>
</tr>
<tr>
<td>neobizz.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturi.neogen.ro</td>
<td>5</td>
</tr>
<tr>
<td>bestauto.ro</td>
<td>5</td>
</tr>
<tr>
<td>autovit.ro</td>
<td>5</td>
</tr>
<tr>
<td>allinfo.ro</td>
<td>5</td>
</tr>
<tr>
<td>cere.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturi.neogen.ro</td>
<td>5</td>
</tr>
<tr>
<td>anunturi.automarket.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.cere.ro</td>
<td>4</td>
</tr>
<tr>
<td>anuntulvideo.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.ido.ro</td>
<td>4</td>
</tr>
<tr>
<td>autopiata.net</td>
<td>4</td>
</tr>
<tr>
<td>bazar.regielive.ro</td>
<td>4</td>
</tr>
<tr>
<td>bonesimenajere.ro</td>
<td>4</td>
</tr>
<tr>
<td>bizcar.ro</td>
<td>4</td>
</tr>
<tr>
<td>autorun.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi-gratuite.prahova-online.com</td>
<td>4</td>
</tr>
<tr>
<td>web-careers.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.gds.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.monitorulsv.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.ido.ro</td>
<td>4</td>
</tr>
<tr>
<td>sibiuonline.com</td>
<td>4</td>
</tr>
<tr>
<td>anunturigratis.net</td>
<td>4</td>
</tr>
<tr>
<td>astazi.ro</td>
<td>4</td>
</tr>
<tr>
<td>ziarulprofit.ro</td>
<td>4</td>
</tr>
<tr>
<td>vertex-imobiliare.ro</td>
<td>4</td>
</tr>
<tr>
<td>caini-pisici.com</td>
<td>4</td>
</tr>
<tr>
<td>vrancea.ro</td>
<td>4</td>
</tr>
<tr>
<td>informatiabt.com</td>
<td>4</td>
</tr>
<tr>
<td>anunturi.nettissimo.ro</td>
<td>4</td>
</tr>
<tr>
<td>premier-job.ro</td>
<td>4</td>
</tr>
<tr>
<td>nou-nascuti.ro</td>
<td>4</td>
</tr>
<tr>
<td>jobsbacau.ro</td>
<td>4</td>
</tr>
<tr>
<td>depozitauto.ro</td>
<td>4</td>
</tr>
<tr>
<td>eanunt.ro</td>
<td>4</td>
</tr>
<tr>
<td>magazinuldecase.ro</td>
<td>4</td>
</tr>
<tr>
<td>eafacere.ro</td>
<td>4</td>
</tr>
<tr>
<td>ebids.biz</td>
<td>4</td>
</tr>
<tr>
<td>publisite.ro</td>
<td>4</td>
</tr>
<tr>
<td>redimobiliare.ro</td>
<td>4</td>
</tr>
<tr>
<td>animale.ro</td>
<td>4</td>
</tr>
<tr>
<td>infofirme.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunta-ma.ro</td>
<td>4</td>
</tr>
<tr>
<td>portalelectric.ro</td>
<td>4</td>
</tr>
<tr>
<td>pleasuremix.ro</td>
<td>4</td>
</tr>
<tr>
<td>buletinulauto.ro</td>
<td>4</td>
</tr>
<tr>
<td>renasterea.ro</td>
<td>4</td>
</tr>
<tr>
<td>infogsm.ro</td>
<td>4</td>
</tr>
<tr>
<td>bursa.rol.ro</td>
<td>4</td>
</tr>
<tr>
<td>giurgiu.nt.ro</td>
<td>4</td>
</tr>
<tr>
<td>procassa.ro</td>
<td>3</td>
</tr>
<tr>
<td>piatatm.ro</td>
<td>3</td>
</tr>
<tr>
<td>postari.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.online.ro</td>
<td>3</td>
</tr>
<tr>
<td>vanzariautoromania.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.orasultau.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-pe-net.ro</td>
<td>3</td>
</tr>
<tr>
<td>vandsicumpar.info</td>
<td>3</td>
</tr>
<tr>
<td>targmasini.ro</td>
<td>3</td>
</tr>
<tr>
<td>oferta9.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.okey.ro</td>
<td>3</td>
</tr>
<tr>
<td>raidonline.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.astazi.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.3x.ro</td>
<td>3</td>
</tr>
<tr>
<td>portal.rpi.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.informatiiauto.ro</td>
<td>3</td>
</tr>
<tr>
<td>ocaziuni.ro</td>
<td>3</td>
</tr>
<tr>
<td>targdemasini.ro</td>
<td>3</td>
</tr>
<tr>
<td>netanunt.ro</td>
<td>3</td>
</tr>
<tr>
<td>321.ro</td>
<td>3</td>
</tr>
<tr>
<td>museimobiliare.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi.3x.ro</td>
<td>3</td>
</tr>
<tr>
<td>romoto.ro</td>
<td>3</td>
</tr>
<tr>
<td>123auto.ro</td>
<td>3</td>
</tr>
<tr>
<td>shopsuceava.com</td>
<td>3</td>
</tr>
<tr>
<td>anunturiaici.ro</td>
<td>3</td>
</tr>
<tr>
<td>4masini.ro</td>
<td>3</td>
</tr>
<tr>
<td>schimburi.ro</td>
<td>3</td>
</tr>
<tr>
<td>vitrina-afacerilor.ro</td>
<td>3</td>
</tr>
<tr>
<td>vancouver.ro</td>
<td>3</td>
</tr>
<tr>
<td>ag.mmdes.ro</td>
<td>3</td>
</tr>
<tr>
<td>vanzari-inchirieri.ro</td>
<td>3</td>
</tr>
<tr>
<td>krimket.ro</td>
<td>3</td>
</tr>
<tr>
<td>latinta.ro</td>
<td>3</td>
</tr>
<tr>
<td>cumparavinde.com</td>
<td>3</td>
</tr>
<tr>
<td>adbiz.ro</td>
<td>3</td>
</tr>
<tr>
<td>ecombinatii.ro</td>
<td>3</td>
</tr>
<tr>
<td>cityportal.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturix.ro</td>
<td>3</td>
</tr>
<tr>
<td>masini-avariate.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntzuri.ro</td>
<td>3</td>
</tr>
<tr>
<td>adserv.ro</td>
<td>3</td>
</tr>
<tr>
<td>detoatepentrutoti.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntz.ro</td>
<td>3</td>
</tr>
<tr>
<td>lugojul.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturirapide.ro</td>
<td>3</td>
</tr>
<tr>
<td>dezmembrarimasini.ro</td>
<td>3</td>
</tr>
<tr>
<td>forestiere.ro</td>
<td>3</td>
</tr>
<tr>
<td>anuntultau.ro</td>
<td>3</td>
</tr>
<tr>
<td>animalshop.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-gratis.ro</td>
<td>3</td>
</tr>
<tr>
<td>easy.ro</td>
<td>3</td>
</tr>
<tr>
<td>oradea.net</td>
<td>3</td>
</tr>
<tr>
<td>orasultau.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturilocale.ro</td>
<td>3</td>
</tr>
<tr>
<td>autoclick.ro</td>
<td>3</td>
</tr>
<tr>
<td>enfirme.ro</td>
<td>3</td>
</tr>
<tr>
<td>evand.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturicazare.com</td>
<td>3</td>
</tr>
<tr>
<td>btanunturi.ro</td>
<td>3</td>
</tr>
<tr>
<td>cauta-imobiliare.ro</td>
<td>3</td>
</tr>
<tr>
<td>boing.ro</td>
<td>3</td>
</tr>
<tr>
<td>anunturi-imobiliare.info</td>
<td>3</td>
</tr>
<tr>
<td>anul.ro</td>
<td>2</td>
</tr>
<tr>
<td>pjar.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturiaici.com</td>
<td>2</td>
</tr>
<tr>
<td>marketimobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>maramuresanunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>adjobs.ro</td>
<td>2</td>
</tr>
<tr>
<td>goldauto.ro</td>
<td>2</td>
</tr>
<tr>
<td>piatamedicala.ro</td>
<td>2</td>
</tr>
<tr>
<td>autosib.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturigalati.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturiconstanta.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturicalarasi.ro</td>
<td>2</td>
</tr>
<tr>
<td>anuntul-telefonic.biz</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-romania.ro</td>
<td>2</td>
</tr>
<tr>
<td>roanunt.com</td>
<td>2</td>
</tr>
<tr>
<td>anunturigratuite.info</td>
<td>2</td>
</tr>
<tr>
<td>elocuinta.ro</td>
<td>2</td>
</tr>
<tr>
<td>roanunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>peauto.ro</td>
<td>2</td>
</tr>
<tr>
<td>imobiliare-cluj.ro</td>
<td>2</td>
</tr>
<tr>
<td>afaceriardelene.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-publice.ro</td>
<td>2</td>
</tr>
<tr>
<td>eterngrup.ro</td>
<td>2</td>
</tr>
<tr>
<td>infoanunturi.net</td>
<td>2</td>
</tr>
<tr>
<td>autosupermarket.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-eficiente.ro</td>
<td>2</td>
</tr>
<tr>
<td>autoanunturi.ro</td>
<td>2</td>
</tr>
<tr>
<td>autocare.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-gratuite-online.net</td>
<td>2</td>
</tr>
<tr>
<td>vanzari-terenuri.eu</td>
<td>2</td>
</tr>
<tr>
<td>autoland.ro</td>
<td>2</td>
</tr>
<tr>
<td>cityonsite.ro</td>
<td>2</td>
</tr>
<tr>
<td>caseinsibiu.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-auto.ro</td>
<td>2</td>
</tr>
<tr>
<td>bizbazar.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-sibiu.ro</td>
<td>2</td>
</tr>
<tr>
<td>toptimisoara.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-automobile.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-gratuite.helio.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-brasov.ro</td>
<td>2</td>
</tr>
<tr>
<td>autoseller.ro</td>
<td>2</td>
</tr>
<tr>
<td>automobile.com.ro</td>
<td>2</td>
</tr>
<tr>
<td>autopersonal.ro</td>
<td>2</td>
</tr>
<tr>
<td>vanzariatv.ro</td>
<td>2</td>
</tr>
<tr>
<td>arad-imobiliare.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-auto.4tuning.ro</td>
<td>2</td>
</tr>
<tr>
<td>autosuprem.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-bucuresti.ro</td>
<td>2</td>
</tr>
<tr>
<td>anunturi-gratuite-online.net</td>
<td>2</td>
</tr>
<tr>
<td>anunturiarges.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigratuiteonline.net</td>
<td>1</td>
</tr>
<tr>
<td>anunturiauto.net</td>
<td>1</td>
</tr>
<tr>
<td>vinde-ebay.ro</td>
<td>1</td>
</tr>
<tr>
<td>123anunt.com</td>
<td>1</td>
</tr>
<tr>
<td>vanzari-cumparari.com</td>
<td>1</td>
</tr>
<tr>
<td>web-anunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi.ipn.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturifocsani.3xforum.ro</td>
<td>1</td>
</tr>
<tr>
<td>aauto.ro</td>
<td>1</td>
</tr>
<tr>
<td>braila.auto.orasultau.ro</td>
<td>1</td>
</tr>
<tr>
<td>evernet.ro</td>
<td>1</td>
</tr>
<tr>
<td>gda.ro</td>
<td>1</td>
</tr>
<tr>
<td>euroanunturi.ro</td>
<td>1</td>
</tr>
<tr>
<td>esell.ro</td>
<td>1</td>
</tr>
<tr>
<td>vand-urgent.ro</td>
<td>1</td>
</tr>
<tr>
<td>vand-cumparam.ro</td>
<td>1</td>
</tr>
<tr>
<td>faracomision.ro</td>
<td>1</td>
</tr>
<tr>
<td>megapromotii.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntuldebuzunar.ro</td>
<td>1</td>
</tr>
<tr>
<td>concept-house.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturitimis.ro</td>
<td>1</td>
</tr>
<tr>
<td>autosalaj.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturitulcea.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturivilcea.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturivrancea.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntulgratuit.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturivaslui.ro</td>
<td>1</td>
</tr>
<tr>
<td>ciubuc.ro</td>
<td>1</td>
</tr>
<tr>
<td>anuntulpublic.ro</td>
<td>1</td>
</tr>
<tr>
<td>bursa-deseuri.ro</td>
<td>1</td>
</tr>
<tr>
<td>bumbestijiu.info</td>
<td>1</td>
</tr>
<tr>
<td>autocars.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-cluj.ro</td>
<td>1</td>
</tr>
<tr>
<td>autoad.ro</td>
<td>1</td>
</tr>
<tr>
<td>autopiatatransilvania.ro</td>
<td>1</td>
</tr>
<tr>
<td>maranet.3x.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi.ipn.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiharghita.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibacau.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibistrita.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiilfov.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturimehedinti.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibihor.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturicarasseverin.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiprahova.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibotosani.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi-gratuite.com.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibraila.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiteleorman.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturisuceava.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturisibiu.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturisalaj.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturialba.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigorj.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturineamt.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturimures.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiialomita.ro</td>
<td>1</td>
</tr>
<tr>
<td>adaugaanunt.net</td>
<td>1</td>
</tr>
<tr>
<td>marfurisiservicii.ro</td>
<td>1</td>
</tr>
<tr>
<td>alians.ro</td>
<td>1</td>
</tr>
<tr>
<td>graphicjobs.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturi.net</td>
<td>1</td>
</tr>
<tr>
<td>anunturicovasna.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturidolj.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturigiurgiu.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiolt.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturibuzau.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturiarad.ro</td>
<td>1</td>
</tr>
<tr>
<td>anunturihunedoara.ro</td>
<td>1</td>
</tr>
<tr>
<td>roarea.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.maramuresul-istoric.ro</td>
<td>0</td>
</tr>
<tr>
<td>roportal.ro/anunturi/adauga</td>
<td>0</td>
</tr>
<tr>
<td>publivest.com/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>vand-auto.com/ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.kises.ro</td>
<td>0</td>
</tr>
<tr>
<td>urbanmall.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.tvtop.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.tvmoca.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.k24.ro</td>
<td>0</td>
</tr>
<tr>
<td>tarefrate.ro/anunturi-gratuite</td>
<td>0</td>
</tr>
<tr>
<td>super-anunturi.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.hi21.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturifulger.com</td>
<td>0</td>
</tr>
<tr>
<td>autocip.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturigratis.com</td>
<td>0</td>
</tr>
<tr>
<td>auto-billy.ro</td>
<td>0</td>
</tr>
<tr>
<td>arcada.biz</td>
<td>0</td>
</tr>
<tr>
<td>anunturileauto.ro</td>
<td>0</td>
</tr>
<tr>
<td>ceasuridemana.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.pentrunoi.net</td>
<td>0</td>
</tr>
<tr>
<td>casabuzau.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.meme.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.satmarene.com</td>
<td>0</td>
</tr>
<tr>
<td>constantaimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>contajobs.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.romaniamall.ro</td>
<td>0</td>
</tr>
<tr>
<td>petman.ro/adauga+anunt</td>
<td>0</td>
</tr>
<tr>
<td>anunturigratuite.tanad.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturigratuite.lp.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliare-ascon.ro</td>
<td>0</td>
</tr>
<tr>
<td>meme.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>pmc-imobiliare.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>anunturigenerale.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>ofertelocuridemunca.ro/jobs/anunt</td>
<td>0</td>
</tr>
<tr>
<td>okey.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>publisite.3x.ro</td>
<td>0</td>
</tr>
<tr>
<td>pentrumamici.ro/listing/create</td>
<td>0</td>
</tr>
<tr>
<td>nshands.com</td>
<td>0</td>
</tr>
<tr>
<td>avemdetoate.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>blajonline.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>intelmconcept.ro</td>
<td>0</td>
</tr>
<tr>
<td>laiasi.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.itarea.org</td>
<td>0</td>
</tr>
<tr>
<td>spatiicomerciale.com/pagini</td>
<td>0</td>
</tr>
<tr>
<td>salonauto.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>market-auto.biz/classified</td>
<td>0</td>
</tr>
<tr>
<td>anuntonline.info</td>
<td>0</td>
</tr>
<tr>
<td>e-roman.ro</td>
<td>0</td>
</tr>
<tr>
<td>comertvirtual.ro</td>
<td>0</td>
</tr>
<tr>
<td>lucrez.ro/ofertanti</td>
<td>0</td>
</tr>
<tr>
<td>claubusiness.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntnou.com</td>
<td>0</td>
</tr>
<tr>
<td>acasaserv2000.ro</td>
<td>0</td>
</tr>
<tr>
<td>mobilissimo.ro</td>
<td>0</td>
</tr>
<tr>
<td>magazin-auto.ro</td>
<td>0</td>
</tr>
<tr>
<td>auto.netplaza.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntulpro.info</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-gratuite-ro.com</td>
<td>0</td>
</tr>
<tr>
<td>judetbacau.ro</td>
<td>0</td>
</tr>
<tr>
<td>multimotor.ro</td>
<td>0</td>
</tr>
<tr>
<td>foxclub.ro</td>
<td>0</td>
</tr>
<tr>
<td>forumgalati.ro</td>
<td>0</td>
</tr>
<tr>
<td>moldova-imobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>pebanda.com</td>
<td>0</td>
</tr>
<tr>
<td>onlineimobiliare.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-vaslui.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.pe-net.info</td>
<td>0</td>
</tr>
<tr>
<td>anuntulonline.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.hi24.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-pe-net.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi.netplaza.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunta-ma.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-moto.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-dambovita.com</td>
<td>0</td>
</tr>
<tr>
<td>1anunturi.com</td>
<td>0</td>
</tr>
<tr>
<td>anunt-masini.ro</td>
<td>0</td>
</tr>
<tr>
<td>anunturi-iasi.ro</td>
<td>0</td>
</tr>
<tr>
<td>anuntul-tau.ro</td>
<td>0</td>
</tr>
<tr>
<td>extraoferte.com</td>
<td>0</td>
</tr>
<tr>
<td>targbazar.ro</td>
<td>0</td>
</tr>
<tr>
<td>ropublica.ro</td>
<td>0</td>
</tr>
<tr>
<td>roautomoto.com</td>
<td>0</td>
</tr>
<tr>
<td>postit.ro</td>
<td>0</td>
</tr>
<tr>
<td>portalanunturi.eu</td>
<td>0</td>
</tr>
<tr>
<td>proprietarulcasei.ro</td>
<td>0</td>
</tr>
<tr>
<td>euroimobiliar.com</td>
<td>0</td>
</tr>
<tr>
<td>anunturidevis.info</td>
<td>0</td>
</tr>
<tr>
<td>bizclopedia.com</td>
<td>0</td>
</tr>
<tr>
<td>best-info.ro</td>
<td>0</td>
</tr>
<tr>
<td>bazar-auto.com</td>
<td>0</td>
</tr>
<tr>
<td>autotrafic.ro</td>
<td>0</td>
</tr>
<tr>
<td>autosit.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliare42.ro</td>
<td>0</td>
</tr>
<tr>
<td>piatademasini.ro</td>
<td>0</td>
</tr>
<tr>
<td>toronto.ro</td>
<td>0</td>
</tr>
<tr>
<td>imobiliare-sibiu.com</td>
<td>0</td>
</tr>
<tr>
<td>ircmedias.ro/anunturi</td>
<td>0</td>
</tr>
<tr>
<td>imobiliarecraiova.eu</td>
<td>0</td>
</tr>
<tr>
<td>terenuribune.ro</td>
<td>0</td>
</tr>
<tr>
<td>web-link.ro</td>
<td>0</td>
</tr>
<tr>
<td>vindema.com</td>
<td>0</td>
</tr>
<tr>
<td>probid.eu</td>
<td>0</td>
</tr>
<tr>
<td>targonline.ro</td>
<td>0</td>
</tr>
<tr>
<td>tradehouse.ro</td>
<td>0</td>
</tr>
<tr>
<td>ziaresireviste.ro</td>
<td>0</td>
</tr>
</table>
<h3>Lista siteuri de anunturi cu plata</h3>
<table border="0" cellspacing="0" cellpadding="2" width="443">
<tr>
<td>anunturipenet.ro</td>
<td>4</td>
</tr>
<tr>
<td>anuntulimobiliar.ro</td>
<td>4</td>
</tr>
<tr>
<td>anunt.viata-libera.ro</td>
<td>3</td>
</tr>
<tr>
<td>sibiuimobiliare.com</td>
<td>3</td>
</tr>
<tr>
<td>casefaraintermediari.ro</td>
<td>2</td>
</tr>
<tr>
<td>as-imob.com</td>
<td>1</td>
</tr>
<tr>
<td>anunturilazi.ro</td>
<td>1</td>
</tr>
<tr>
<td>casameadevanzare.ro</td>
<td>1</td>
</tr>
<tr>
<td>amurenia.cryssoft.com</td>
<td>1</td>
</tr>
<tr>
<td>11case.ro</td>
<td>1</td>
</tr>
</table>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/lista-siteuri-de-anunturi">Lista siteuri de anunturi</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/lista-siteuri-de-anunturi/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Cluj-Napoca &#8211; Programul de instruire realizat de Ascendis pentru IMM-uri, finantat din fonduri structurale</title>
		<link>http://www.submitsuite.ro/blog/cluj-napoca-programul-de-instruire-realizat-de-ascendis-pentru-imm-uri-finantat-din-fonduri-structurale</link>
		<comments>http://www.submitsuite.ro/blog/cluj-napoca-programul-de-instruire-realizat-de-ascendis-pentru-imm-uri-finantat-din-fonduri-structurale#comments</comments>
		<pubDate>Wed, 10 Jun 2009 10:29:25 +0000</pubDate>
		<dc:creator>Cristina Mailat</dc:creator>
				<category><![CDATA[SEO Romania]]></category>
		<category><![CDATA[ascendis]]></category>
		<category><![CDATA[dezvoltare IMM]]></category>
		<category><![CDATA[fonduri structurale]]></category>
		<category><![CDATA[formare gratuita]]></category>
		<category><![CDATA[imm]]></category>
		<category><![CDATA[seminar gratis]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=960</guid>
		<description><![CDATA[Ascendis Cluj-Napoca a anuntat inceperea implementarii unui proiect de training si consultanta gratuita in domeniul dezvoltarii organizationale finantat majoritar prin fonduri structurale, la care urmeaza sa participe in total peste 1600 de manageri din 160 de IMM-uri.

Seminarul se adreseaza managerilor si actionarilor din IMM-uri care au în special activitati în domeniile:

Productie industriala
TIC (Tehnologia Informatiei si [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/cluj-napoca-programul-de-instruire-realizat-de-ascendis-pentru-imm-uri-finantat-din-fonduri-structurale">Cluj-Napoca &#8211; Programul de instruire realizat de Ascendis pentru IMM-uri, finantat din fonduri structurale</a></p>
]]></description>
			<content:encoded><![CDATA[<p><a title="Ascendis Cluj-Napoca" href="http://www.ascendis.ro/seminar-regional-cluj.html" target="_blank">Ascendis Cluj-Napoca</a> a anuntat inceperea implementarii unui proiect de training si consultanta gratuita in domeniul dezvoltarii organizationale finantat majoritar prin fonduri structurale, la care urmeaza sa participe in total peste 1600 de manageri din 160 de IMM-uri.</p>
<p><img class="aligncenter size-full wp-image-961" title="ascendis" src="http://www.submitsuite.ro/blog/wp-content/uploads/ascendis.jpg" alt="ascendis" width="600" height="91" /></p>
<p>Seminarul se adreseaza managerilor si actionarilor din IMM-uri care au în special activitati în domeniile:</p>
<ol>
<li>Productie industriala</li>
<li>TIC (Tehnologia Informatiei si a Comunicatiilor)</li>
<li>Servicii cu valoare adaugata mare</li>
<li>Turism</li>
<li>Firme care au sediul în judetele Cluj, Bistrita-Nasaud,  Maramures, Satu Mare, Salaj</li>
</ol>
<p>Seminarul este organizat în cadrul proiectului „Antreprenoriat strategic si crestere în întreprinderile mici si mijlocii” cofinantat prin Fondul Social European – FSE si selectat în cadrul Programului Operational Sectorial Dezvoltarea Resurselor Umane 2007 – 2013 –POS DRU. Proiectul se implementeaza de catre Ascendis Consulting SRL în parteneriat cu Alianta Confederatiilor Patronale din Romania.</p>
<p>Seminarul va avea loc în data de <strong>16 iulie la Cluj, începand cu ora 10:00</strong>. Pentru a putea participa va rugam sa verificati daca îndepliniti <a title="Cristerii de eligibilitate" href="http://www.ascendis.ro/criterii-de-eligibilitate.html" target="_blank">criteriile specificate în anexa</a> si sa va înscrieti pana cel mai tarziu în data de 6 iulie.</p>
<h3>Toate seminariile sunt gratuite iar informatia prezentata vizeaza aspecte ca:</h3>
<ul>
<li><strong>Dezvoltarea IMM-ului</strong>: informatii utile in contextul economic actual</li>
<li><strong>Bariere si oportunitati de crestere a IMM-urilor</strong>: informatii de actualitate despre evolutia mediului de business, schimbari necesare in gestionarea firmei, factori de succes pentru o afacere si abilitatile necesare in gestionarea unui IMM</li>
<li><strong>Oportunitati de formare gratuita</strong>: modalitati prin care manageri si angajati din IMM-uri pot beneficia de cursuri privind: Dezvoltarea unui IMM; Managementul relatiilor cu clientii; Managementul culturii organizationale; Managementul resurselor umane; Managementul obiectivelor si al performantei.</li>
</ul>
<p><span style="text-decoration: underline;"><br />
Participarea la seminar nu presupune nici un cost pentru dumneavoastra, acesta fiind acoperit de Fondul Social European, Bugetul National si Ascendis Consulting.</span></p>
<h3>Cum va puteti înscrie?</h3>
<p><a href="http://www.ascendis.ro/downloads/Formular_inscriere_cluj.doc" target="_blank">Descarca de aici formularul de inscriere</a> si trimiteti-l la numarul de fax: +40-21-206.64.26 sau scanat pe adresa de email: <a href="lucia.man@ascendis.ro">lucia.man@ascendis.ro</a> pana la data de 06 iulie.</p>
<h3>Unde va avea loc evenimentul?</h3>
<p>CITY PLAZA HOTEL, Strada Sindicatelor nr. 9 -11 Cluj Napoca.</p>
<p>Mai multe informatii despre seminar puteti obtine la numerele de telefon: 021 206 64 26 si 0749 062 568 &#8211; Lucia Man</p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/cluj-napoca-programul-de-instruire-realizat-de-ascendis-pentru-imm-uri-finantat-din-fonduri-structurale">Cluj-Napoca &#8211; Programul de instruire realizat de Ascendis pentru IMM-uri, finantat din fonduri structurale</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/cluj-napoca-programul-de-instruire-realizat-de-ascendis-pentru-imm-uri-finantat-din-fonduri-structurale/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Primele noutati legate de Press Release Submitter</title>
		<link>http://www.submitsuite.ro/blog/primele-noutati-legate-de-press-release-submitter</link>
		<comments>http://www.submitsuite.ro/blog/primele-noutati-legate-de-press-release-submitter#comments</comments>
		<pubDate>Thu, 21 May 2009 13:09:50 +0000</pubDate>
		<dc:creator>Cristina Mailat</dc:creator>
				<category><![CDATA[Produse pentru promovare]]></category>
		<category><![CDATA[automatizare comunicate de presa]]></category>
		<category><![CDATA[press release submitter]]></category>
		<category><![CDATA[soft comunicate de presa]]></category>

		<guid isPermaLink="false">http://www.submitsuite.ro/blog/?p=943</guid>
		<description><![CDATA[Poate v-ati intrebat ce este cu pauza mai lunga din ultimul timp. Pe Twitter am anuntat ca lucram la doua aplicatii absolut noi in suita. Pentru prima dintre ele a venit momentul sa facem publice cateva din functionalitati. Aplicatia se numeste Press Release Submitter si este un soft de automatizare a comunicatelor de presa.
Press Release [...]<p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/primele-noutati-legate-de-press-release-submitter">Primele noutati legate de Press Release Submitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-946" title="press-release-submitter-logo" src="http://www.submitsuite.ro/blog/wp-content/uploads/press-release-submitter-logo.jpg" alt="press-release-submitter-logo" width="200" height="124" />Poate v-ati intrebat ce este cu pauza mai lunga din ultimul timp. Pe <a title="Twitter" href="http://twitter.com/fastlink2" target="_blank">Twitter</a> am anuntat ca lucram la doua aplicatii absolut noi in suita. Pentru prima dintre ele a venit momentul sa facem publice cateva din functionalitati. Aplicatia se numeste Press Release Submitter si este un soft de automatizare a comunicatelor de presa.</p>
<p>Press Release Submitter contine o baza de date  pe care noi  o folosim de ani intregi la servciul de <a title="Distributie comunicate de presa" href="http://www.submitsuite.ro/servicii/creare-si-distributie-comunicate-de-presa.htm" target="_blank">distributie de comunicate de presa</a>. Deocamdata contine 15.000 de contacte media din USA. La acestea vom adauga pentru inceput si 400 de contacte media din Romania si Germania, ca apoi sa urmeze Spania si Franta.<span id="more-943"></span></p>
<p>Aplicatia se doreste usor de folosit, mergand pe linia <a title="Anunturi" href="http://www.submitsuite.ro/produse/anunturi.htm" target="_blank">Anunturi</a> sau <a title="Website Submitter" href="http://www.submitsuite.ro/produse/website-submitter.htm" target="_blank">Website Submitter</a>. Functionalitatile care se vor regasi in versiunea finala sunt printre altele:</p>
<ol>
<li><strong>detectie limba si spam filter</strong> (astfel incat un comunicat de presa in limba germana sa nu poata fi trimis decat la contacte de limba germana)</li>
<li>posibilitatea de <strong>selectie contacte media dupa filtre multiple</strong>, categorii, TV, radio, reviste</li>
<li>trimiterea comunicatului de presa se face prin<strong> suport SMTP ( + SSL)</strong>, cu timp de asteptare definibil intre mesaje. Trimiterea comunicatului se face de pe adresa celui care il publica.</li>
<li><strong>Editare a bazei de date cu contactele media </strong> (import de contacte noi, blocare de contacte la care nu se doreste trimterea in cazul unui raspuns negativ, etc.)</li>
</ol>
<p>Iata pas cu pas actualizarile:</p>
<h3>21.05.2009</h3>
<ol>
<li>panoul de statistica este terminat</li>
<li>profilul este complet salvat, pentru siguranta comunicatul de presa este salvat separat</li>
<li>baza de date encryptata si parolata</li>
</ol>
<h3>23.05.2009</h3>
<ol>
<li>Toate selectiile (dupa categorie, subcategorie, select all, etc) sunt implementate</li>
<li>Afisare numar de contacte selectate</li>
<li>Am adaugat in profil posibilitatea de a retine daca un contact este selectat sau nu, astfel la salvare de profil aceste date se pastreaza</li>
</ol>
<h3>25.06.2009</h3>
<ol>
<li>Am adugat si optiune multilanguage de contacte. Pana acum sunt active bazele de date in engleza si spaniola. Trebuie sa fac in o pauza si migrarea la contactele romanesti.</li>
<li>Am refacut structura la baza de date aproape complet, am economisit 60% din spatiul ocupat, baza de date cu contactele media are acum 4.5 Mb pentru peste 16.000 de contacte</li>
<li>inca sunt 2 functionalitati importante care urmeaza sa le rezolv</li>
<li>Rapoartele merg, nu sunt super performante insa, bad me, voi lucra la viteza</li>
<li>Am portarea functionalitatii de a trimite mail din prototip in aplicatie (SMTP cu sau fara SSL e acceptat)</li>
<li>Am adaugat si posibilitatea de a cauta contacte si a selecta dupa cuvinte cheie, companie etc (practic orice query e suportat)</li>
</ol>
<h3>26.06.2009</h3>
<ol>
<li>Am sincronizat tabela de media contacts cu datele corecte. Initial exportul nu a functionat cum trebuie si contactele aveau adresa de email partial corecte.</li>
<li>Nu stiu daca am amintit ca Press Release Submitter este primul produs realizat in Embarcadero <a title="Delphi 2009" href="http://www.embarcadero.com/products/delphi/" target="_blank">Delphi 2009</a> (aka Delphi 12). Partea mai grea a fost cu gasirea librariilor care sa functioneze pe 2009 si nu neaparat cu portarea codului (Unicode &amp; stuff).</li>
</ol>
<h3>Ce urmeaza:</h3>
<ol>
<li>Blocarea/stergere sau editare contact media</li>
<li>Exportul un contact media</li>
<li>Aplicatia trebuie sa tina minte contactele media care au primit deja mail</li>
<li>Astept rapoartele de la cei care o testeaza (au venit, deja am inceput sa rezov din probleme)</li>
<li>Sunt in discutie pentru a integra o baza de date externa pentru 4000 de contate din Germania (suma este pre piparata insa poate voi reusi pana la urma)</li>
<li>ETA de 01.07.2009 este inca in picioare!!</li>
</ol>
<h3>Ce nu va include versiunea 3.0:</h3>
<ol>
<li>Importul/exportul de contacte va exista doar in 3.1</li>
<li>Contactele media pentru limba romana, germana si franceza se vor regasi doar in 3.1</li>
<li>Filtre de selectie extinse precum (toate ziarele cu un tiraj minin de xxx ) vor exista doar in versiuni superioare, baza de date suporta insa aceste interogari</li>
<li>Raporte in format PDF nu vor mai exista, incet aceste rapoarte le voi retrage si din celelalte aplicatii, componentele PDF nu sunt satisfacatoare la aceasta ora, am sa folosesc HTM si print exclusiv</li>
</ol>
<p>Iata mai jos doua dintre imaginile cu aplicatia Press Release Submitter (eta 01.07.2009 la pretul de vanzare probabil de 249 euro ).</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.submitsuite.ro/images/screenshots/Press-Release-Submitter-crearea-unui-comunicat-media.jpg" alt="" /></p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.submitsuite.ro/images/screenshots/Press-Release-Submitter-selectarea-contactelor-media.jpg" alt="" /></p>
<img src="http://www.submitsuite.ro/blog/91f05e15/266bbf65/CCBot/1.0 (+http://www.commoncrawl.org/bot.html).gif" /><p>Articol publicat in <a href="http://www.submitsuite.ro/blog">SEO - Optimizare web</a>.<br/><br/><a href="http://www.submitsuite.ro/blog/primele-noutati-legate-de-press-release-submitter">Primele noutati legate de Press Release Submitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.submitsuite.ro/blog/primele-noutati-legate-de-press-release-submitter/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
