Recent content by xpwizard

  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
Back
Top