Результаты поиска

  1. A

    projectmaker on vps

    Oh. That would suck since I don't think that can be customized to the vps.
  2. A

    projectmaker on vps

    Hi I mainly buy 1gb ram vps because for most programs that's enough. For zennoposter (5 threads) that's ok too but for projectmaker, it's very "laggy". But since I'd like to use projectmaker on a vps, I'd like to know if someone uses it on a vps without it being slow and what RAM they...
  3. A

    google suggestions craper

    Ok, found it. It's quite easy. Instead of 'value', just input 'innertext'.
  4. A

    google suggestions craper

    No worries. I'll try to look at it some more and post it if I'd find it.
  5. A

    google suggestions craper

    That's find and dandy but anyone knows how to solve the google issue? :D
  6. A

    line is link, how to open the same link with some more path?

    Works for me... Maybe it's because it should be '/add_link' instead of '\add_link' but that shouldn't really matter I think.
  7. A

    google suggestions craper

    Yes, I've thought about ubersuggest. It gives you 10 results instead of 4, which is good, but it is very slow (you have to press submit button and then wait...) while the suggestions in google are instant (and not recorded?). Thanks for your help already though.
  8. A

    google suggestions craper

    Well, if you type it in manually, eg. within action recording section of zenno, you get this: When you then do it with debug (doesn't matter if I pull it from a txt file or not), you get this: Only when you push the search button, google registers and shows the keyword you entered...
  9. A

    google suggestions craper

    Hi I'd like to scrape the google suggestions but can't make it to work. When you enter a word manually in the google search field, google gives you the suggestions. Though, the word doesn't show up when using zenno...only when you click on the search button, google then shows the word...
  10. A

    instance closing automatically

    Nice, support helped me. Still had IE7 running on that vps.
  11. A

    Find a string in a select field and select it

    It's because they changed the order for some reason (probably to prevent spammers). What I do then is extract the DOM until then selected category and then count the number of times you get value= Don't know how to count it directly so I tried it another way. See the template I added, it...
  12. A

    instance closing automatically

    Yes, other tempates work fine. Thanks for the response, I will contact support.
  13. A

    instance closing automatically

    Hi I created a template to scrape google adwords results. It works on my pc, but when I use it on a vps, then the instance automatically closes after signing in. Same thing in both projectmaker as zennoposter. Anyone experienced this before and found a solution?
  14. A

    Find a string in a select field and select it

    Should work like this, with some tuning up: - pull out your keyword out of your text, let's say that is 'Auto Tuning'- - get DOM/source of the page in your case: ... <option value="156">-- Branchenverzeichnisse</option> <option value="155">-- Datenbanken</option> <option value="159">-- Lexika...
  15. A

    replace an expression

    {-String.Replace-|-that is my text to replace-|-is-|-was-} This changes "that is my text to replace" into "that was my text to replace" So if you pull out your text out of a previous macro, then it should be something like this...
  16. A

    Zennoposter is breaking my html - please help

    You should try to use innerhtml as attribute if you haven't done that already.
  17. A

    Exiting a loop when macro returns an empty line?

    Can't you input a replace macro to replace ' by nothing before you do a logic operation?
  18. A

    Please Help With Amazon Description RegEx

    You should also do \ before spaces: (?<=\<div\ class\=\"productDescriptionWrapper\"\>).*?(?=\<\/div\ class\=\"EmptyClear\"\>) Though the answer of shifu should work in test mode. Make also look if <div class="productDescriptionWrapper"></div class="EmptyClear"> is correct in DOM, cause on my pc...
  19. A

    problem in macro execution?

    why not doing it without clicking the name? In source/DOM of the page, there will probably be something like this: <a href="http://www.xxx.com/xxxxxx/your-post-title">your username</a> Then you just pull the link out of it eg in the example above, the regexp: http.*?(?=\"\>your\ username)...
  20. A

    search and replace marco values

    Nice. Thanks man.
  21. A

    search and replace marco values

    Hi Dunno if someone already said this but it would be great if we could replace certain values/words throughout the template. eg. I make a template that pulls info from templatenameX-profiles.txt / templatenameX-urls.txt / ... Later on I make a template (based on same basis) that...
  22. A

    Run template random number of times, then exit... How to?

    I would do it like this: Get a random number for the amount of blogs zenno should post. Get a random hour/minutes per blog that should be posted. (since zenno doesn't run all day, you should input min. and max. limits) Use the macros 'get current hour'/ 'get current minutes' If the current...
  23. A

    Social bookmarking list?

    Why don't you look for some pligg lists?
  24. A

    counting char length js

    Don't know what you're doing wrong then. Here's the template, dunno if it is this what you want:
  25. A

    counting char length js

    Try this: {-JS.Execute-|- var text = "yourtextorfielddata" text.length -}
  26. A

    taking x amount of words out of text file

    Ok found it... if anyone would ever need it: I take the original text and take the first x amounts of words, here the first 5:: var str1 = "This is my sentence that consists out of 10 words."; var str2 = str1.replace(/(([^\s]+\s\s*){5})(.*)/,"$1"); Then I can use the output of str2 for...
  27. A

    taking x amount of words out of text file

    Hi I would like to be able to take eg. the first 500 words out of a big text file and then delete that part. Anyone knows an easy way to do that? Only thing I could think of for now is pulling one word per word with regexp and then replace it with nothing...but that's a bit clumsy.
  28. A

    Templates outside zenno program folder - Use relative paths??

    Don't know how to do it. Wouldn't it be easier to keep your resources and results folders where they are and then just create shortcuts on your desktop to those folders?
  29. A

    What is the Not Greater than logic?

    Yeah, x <= y is the way to go. You can find a lot about it in here: http://www.w3schools.com/js/js_comparisons.asp
  30. A

    DOM google search different on different pc's

    Damn that sucks.
  31. A

    DOM google search different on different pc's

    Hello I've made a template to parse google rankings and it works good. Though, it doesn't work on my vps and the reason for this is that the DOM is very different on the vps. Don't really know what the reason for this is. Maybe a different country as ip? Anyone experience with this or...
  32. A

    How can I change a url?

    Or...you could pull all the numbers out of a text file. A counter loop is good, but the only bad thing about it is the fact that you can only use one thread, while with pulling it out of a text, you can use as much threads as you want. Good for scraping links out of a lot of forum profiles.
  33. A

    I'm the new guy here, lets do some brainstorming

    I'm using zenno in a same kind of way as backlink energizer, with the difference that it's a lot better with zenno. So, not really a backlinking template, but an indexing template...
  34. A

    Problem to parse Google.

    Was also trying to parse google, for search results... Thought I could get it out of this: <a class="l" onmousedown="return rwt(this,'','','','3','AFQjCNENZ4qWshlgzaIlxG9oHCWcTw0a4Q','','0CHYQFjAC')" with 3 as the rank... The thing is, google also counts pictures and news articles within the...
  35. A

    A few newbie Questions

    Magic submitter sucks imo. Everything magic submitter can do, zennoposter can do better.
  36. A

    pop up windows outside of zenno

    Thanks. Works great.
  37. A

    pop up windows outside of zenno

    Hi At the moment, I'm using zennoposter to filter out a big list of urls I scraped. Now there are of course some anoying sites in there, and the most annoying result in 20-100 internet explorer windows getting opened outside of zenno, causing the vps to get very slow. I tried different...
  38. A

    string.replace on multiple words within a block of text ???

    You should use javascript as macro. {-JS.Execute-|- var str="keyword1 is the best product ever made. keyword2 is the best product never eaten"; var str2 = str.replace("keyword1", "product1"); str2.replace("keyword2", "product2"); -}
  39. A

    when to use "Get DOM text of the page"

    Good to know. Thanks.
  40. A

    when to use "Get DOM text of the page"

    Damn, I always use page source. Could you explain why getting DOM text is better than page source?
  41. A

    Help with captcha solving please

    == -> equals to != -> not equal to So if you eg put in your logic: '1'=='1' Then the template will go further via the succesful exit of your step branch (since 1 equals 1). In the template, it's not '1'=='1' but '{-FieldData.FieldData-|-●2●1●5●1●8●1●-|-tp-8365-}'=='' So the template will go...
  42. A

    Help with captcha solving please

    Ok, this one should work. Also had to replace != with == in your logic.
  43. A

    Help with captcha solving please

    Dude, your setup is wrong. Imo, it's best to first check if there is a captcha error or not and then go to another branch (if captcha error is there) or go further down (if captcha error is not there) and finish the template.
  44. A

    check if blank or not - not working with link and fielddata

    Had to redo my template since I forgot it at my other place and now it does work... Thanks for you help though. I have attached the (working) template. I use it to confirm activation links from thundirbird .eml files.
  45. A

    check if blank or not - not working with link and fielddata

    Hello I'd like to check if a link is there or not but I don't get it to work. 'text' is there or not 'text'!='' -> works text pulled from a macro is there or not '{-FieldData.FieldData-|-●7●1●4●2●8●6●-|-≡1≡9≡5≡2≡8≡4≡0≡3≡3≡0≡744-}'!='' -> works link is there or not...
  46. A

    Can't install on Windows Server 2008 R2

    Think I had this message once when I was already running zenno (on another pc or the same pc) Make sure you haven't have it running on another pc or that it isn't already running in the background. (check task manager).
  47. A

    VMWare

    Why don't you get a vps? Most seo software can run for days without interfering so it's better not to need your home pc to run all the time.
  48. A

    E-mail Processing Problems Solved - Email Master 2.0 Multiple POP3 Email Account DL'r

    Hm, tested it once since I bought it. And it's a good software. Though, the license didn't work anymore when I reinstalled my pc and after several mails it seems like the creator doesn't want to resolve this. Was going to purchase another license since I needed it (changed some important...
  49. A

    Can Zenno Create Link Wheels?

    Identifying with a number is meant for knowing where in the linkwheel the url is situated. Because, if it is broken, you need to make a new one and point it to the next in line, but you also need to change the one that comes before in line since you need to replace the old url with the new one...
  50. A

    clicking on link which is defined by another tag than a href

    Wow, I think you are a few levels higher than me in the zenno learning process, since I'm not getting most of what you say. Guess I'm going to stay with the inner html solution. ;)