Search results

  1. xpwizard

    Messed up Wordpress Theme - Need Help

    Try going back to the original and watch the layout change by change. From there you can identify what you did that changed the layout. My guess would be you removed a CSS class needed for the footer.
  2. xpwizard

    How do I Start my own CPA network?

    In all honesty this is how it plays out 95%: - A person decides they want to start a network as they aren't making a lot via CPA - The network is HasOffers based and is run off their free month trial - All offers are procured from networks already running through another network (You get...
  3. xpwizard

    Can I do this with PHP

    Personally I use "RegExr". Great tool and it's free :) http://gskinner.com/RegExr/ @madsem -> Perl and Python are better tools for large long running scrapers, but PHP can be just as effective if you're logical with your coding and queries.
  4. xpwizard

    Scripts That Will Run Scrapebox and AMR, Possible?

    If the program runs on startup (can start running without any settings) or is able to take commands from command line then yes it can be done. This could just as easily be done via scheduled tasks though. However I believe it will be more of the case that you will need a screen manipulating...
  5. xpwizard

    Download some PHP files from server

    One word: Impossible You can't access PHP based files unless you have access to the server (or their server is set to serve files instead of processing php).
  6. xpwizard

    WP plugin editor

    You'd be best posting in the Hire a freelancer section, as I doubt anyone will do both of those tasks for free.
  7. xpwizard

    GhostCPA redirect issues

    It's called a frame buster.
  8. xpwizard

    Joomla Category PageBreak?

    Ask via the Joomla forums. You will get a quicker and more precise answer. http://forum.joomla.org/
  9. xpwizard

    Reddit Blackout - SOPA Protest

    Just need one of the giants to step in now... ^ In saying that, I have no idea why Google hasn't changed their logo to an Anti-SOPA logo... They do it for significant events/people, why not this. That alone would spread the word to more people than a Reddit blackout.
  10. xpwizard

    Need Bad Ass PHP Coder

    PM'd...
  11. xpwizard

    MySQL database security?

    Unless you've made the code, then it's quite hard. You're always at the mercy of the developer. e.g. With Wordpress, you have to rely on the plugin developers being security conscious. The best you can hope for is to secure your mysql install. (disable root, disable remote, etc)
  12. xpwizard

    URL Shortener - Unique URL's per one URL

    Add a new parameter with dead characters to the end of the url: http://mydomain.com/redirect.php?offid=334 Would then become: http://mydomain.com/redirect.php?offid=334&new=1 From there you can just keep changing the url slightly to produce a new one.
  13. xpwizard

    Apache htaccess

    ^ = start of string $ = end of string It's just regex basics.
  14. xpwizard

    Apache htaccess

    Good :) It wasn't hard to rewrite... (sorry about the above. haven't used apache/htaccess in a long time). Here's what you should do though: Options +FollowSymLinks RewriteEngine on RewriteRule ^(.*)/(.*)-(.*)-(.*)\.html$ video.php?name=$2+$3&id=$4 That way you'll be doing what you wanted...
  15. xpwizard

    Apache htaccess

    http://www.iwebtool.com/htaccess_url_rewrite Options +FollowSymLinks RewriteEngine on RewriteRule -name-(.*)-id-(.*)-tag-(.*)\.html video.php?name=$1&id=$2&tag=$3
  16. xpwizard

    [GET] Twitter email scraper (realtime)

    Yep, if you change the search query in the settings file. Make sure to delete the second line (if it exists). But if you're wanting to delve deeper into the options, simply do an advanced search on Twitter, and copy the parameters to the settings file,.. But it's highly configurable. This...
  17. xpwizard

    [GET] Twitter email scraper (realtime)

    As humble said, you can either use it for bulk spam, but there are so many other uses: - Check to see if the emails are associated with a FB account. - Target keywords and send offers (iPad, iPhone, etc) - Target emails from a certain country/city, and then send regional offers Targeting...
  18. xpwizard

    An Alternate email adress anyone? Not Gmail.

    http://www.bigstring.com/ OR http://gmx.com
  19. xpwizard

    [GET] Twitter email scraper (realtime)

    Just to clarify what this does: If setup via cron for every 1minute (recommended), then it will scrape the latest tweets since your last search. In other words you get fresh emails every 1minute (or whenever you set the cron for). The emails are not targeted. But you could easily change the...
  20. xpwizard

    [GET] Twitter email scraper (realtime)

    I've decided to share some more code with the forum :) Twitter Email Scraper Features: - Scrapes Twitter search api for emails in real-time - Ensures no duplicates are saved - Saves emails into monthly log files based on the originating domain name (under 'logs') - Outputs log file with...
Back
Top