mrmidjam
Regular Member
- Sep 17, 2008
- 476
- 141
I created this simple Imacros script to submit my sites to a few directories I found and thought I should share it here. These are not High PR
and you will have to enter the captchas manually but, they are free and this might help out some noobs.
First you need to have Imarcos installed.
Then Put the following file in the Datasources folder usually "C:\macros\Datasources" this is the list of directories.
Open Imacros, Select #Current.iim, Click the Edit tab and add this code into the window that pops up.
Replace with your email after Content=
Replace with category your site is in after Content= (to find out go to one of the sites highlight the selectbox and view source, you need the
text within <option value="/arts/animation") hope that makes sense
Replace with your website title after Content= (for spaces you have to add <SP>) 120 max chars
Replace with your website url after Content= 200 max chars
Replace with your website description after Content= Again (for spaces you have to add <SP>) 500 max chars
Replace with your websites keywords after Content= Again (for spaces you have to add <SP>) 300 max chars
Replace with your Facebook & Twitter names after Content=
Click "Save & Close"
Under "Repeat Macro" input 254 into the Max field, this is the amount of sites in the list.
Click "Play (Loop)"
Imacro should then go to the first site in the list and enter all the details you put in the code, when it gets to the captcha it will pause
so you can enter it. Once you enter the captcha click the Submit Button on the site, before you click submit you could go up the page and
change the title every now and again to mix things up a bit. Once the form is submitted and you see the "Thanks for submitting" message click
"continue" from within the Imacro window and it will go to the next site.
Hope this all makes sense
and you will have to enter the captchas manually but, they are free and this might help out some noobs.
First you need to have Imarcos installed.
Code:
http://www.iopus.com/imacros/firefox/
Then Put the following file in the Datasources folder usually "C:\macros\Datasources" this is the list of directories.
Code:
http://www.mediafire.com/?3yo1hycqpxwqnl5
Open Imacros, Select #Current.iim, Click the Edit tab and add this code into the window that pops up.
Code:
VERSION BUILD=7401004 RECORDER=FX
TAB T=1
SET !DATASOURCE directsubmit.csv
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO={{!COL1}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-email [email protected]
TAG POS=1 TYPE=SELECT FORM=NAME:submitSiteForm ATTR=ID:postData-category CONTENT=%/arts/animation
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-title CONTENT=Your<SP>Site<SP>Title
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-url CONTENT=http://www.yoursiteurl.com
TAG POS=1 TYPE=TEXTAREA FORM=NAME:submitSiteForm ATTR=ID:postData-description CONTENT=Your<SP>description<SP>goes<SP>here.
TAG POS=1 TYPE=TEXTAREA FORM=NAME:submitSiteForm ATTR=ID:postData-keywords CONTENT=keywords,<SP>go,<SP>here
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-facebook CONTENT=facebookname
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-twitter CONTENT=twittername
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:submitSiteForm ATTR=ID:postData-termOfUse CONTENT=YES
PAUSE
Replace with your email after Content=
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-email [email protected]
Replace with category your site is in after Content= (to find out go to one of the sites highlight the selectbox and view source, you need the
text within <option value="/arts/animation") hope that makes sense
Code:
TAG POS=1 TYPE=SELECT FORM=NAME:submitSiteForm ATTR=ID:postData-category CONTENT=%/arts/animation
Replace with your website title after Content= (for spaces you have to add <SP>) 120 max chars
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-title CONTENT=Your<SP>Site<SP>Title
Replace with your website url after Content= 200 max chars
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-url CONTENT=http://www.yoursiteurl.com
Replace with your website description after Content= Again (for spaces you have to add <SP>) 500 max chars
Code:
TAG POS=1 TYPE=TEXTAREA FORM=NAME:submitSiteForm ATTR=ID:postData-description CONTENT=Your<SP>description<SP>goes<SP>here.
Replace with your websites keywords after Content= Again (for spaces you have to add <SP>) 300 max chars
Code:
TAG POS=1 TYPE=TEXTAREA FORM=NAME:submitSiteForm ATTR=ID:postData-keywords CONTENT=keywords,<SP>go,<SP>here
Replace with your Facebook & Twitter names after Content=
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-facebook CONTENT=facebookname
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:submitSiteForm ATTR=ID:postData-twitter CONTENT=twittername
Click "Save & Close"
Under "Repeat Macro" input 254 into the Max field, this is the amount of sites in the list.
Click "Play (Loop)"
Imacro should then go to the first site in the list and enter all the details you put in the code, when it gets to the captcha it will pause
so you can enter it. Once you enter the captcha click the Submit Button on the site, before you click submit you could go up the page and
change the title every now and again to mix things up a bit. Once the form is submitted and you see the "Thanks for submitting" message click
"continue" from within the Imacro window and it will go to the next site.
Hope this all makes sense