Recent content by mypmmail

  1. M

    Verify my neteller account

    i just tried to deposit in skrill $130. done. but i have left $130 in my neteller account.. when i try to deposit again from neteller to skrill. i am getting error from skrill Rejected..
  2. M

    Verify my neteller account

    I can't use the money. account is not verified.
  3. M

    Verify my neteller account

    Hi there. i have neteller account with $280 on it. but its not verified.. and name on account is different. is there anyone can help me? i can't withdraw them..
  4. M

    Searching 3,807,533 rows - php

    What you will need to do if you are using MySQL is to change the data type for 'title' column to text and then use full text search instead of the 'like' clause The reason is the 'like' does not use index and is doing a full table scan, thus, you need to replace it with full text search that...
  5. M

    Where does main belong to?

    Not sure if I understand your question correctly. The main() in c++ is similar in the sense that it can be in any .cpp file you have created. Just like java which requires you to define the main as static void main(String[] args) {} C++ requires you to define the main, less strict with...
  6. M

    Suggestions on real world python projects?

    Why not head over to freelancer and search for python jobs .... 100% in real demand .... :)
  7. M

    Need Help + Proxy

    I think it's more like there is something wrong with the url you are trying to access instead of proxy problem. Maybe you should start with something really simple like www.wikipedia.org If this works, then it's likely to be your url which contains "special" characters like whitespace, &, etc...
  8. M

    Where to locate this

    I would think it's likely to be in a breadcrumb or something. However, it's not guaranteed unless you mention which wordpress theme you are using. What I would do is to get the theme in your local machine, then use a file searcher that can search the file content, e.g. gvim for windows, grep...
  9. M

    [???] Allowing only one visit per IP address ...

    I might not be answering your question. But just a note here, as mentioned by OldFatGuy, you should use a cookie at least. Of course you can combine with a ip check as well. The reason is because different machines may have the same ip (e.g. they go through same subnet, proxy etc) and in other...
  10. M

    console script for browser

    I think that is because this feature has been disabled on most browser now. To make it work, you can make a bookmarklet out of it and run the bookmarklet.
  11. M

    Need help with server issue!

    Just guessing from what I have read, I think it has to do with how you define your data source. http://forums.asp.net/t/1280574.aspx?Invalid+value+for+key+attachdbfilename+
  12. M

    Google Scraper

    Actually, depending on your search amount, if it is not a huge amount, then you can consider using the custom search api developers.google.com/custom-search where the data is much better formatted for your manipulation. By scraping, google is smart enough to detect you are doing it through bot...
  13. M

    Help Me Make This Code

    As mentioned previously, the javascrip code is as below <html> <head> <script type="text/javascript"> function testonload() { var add = [7, 5, 3, 2, 4, 5]; var cycletotal = 26; // 7+5+3+2+4+5 var time1 = new Date(); var time2 = new Date(2014, 0, 1, 0, 0); // a starting...
  14. M

    Help Me Make This Code

    Sorry, missed your reply. I'll try to code it in javascript coming mon. It shouldn't be too hard since the logic is already there. But, you notice you post in php forum? :)
  15. M

    Help Me Make This Code

    My code would goes something like this in php. <?php date_default_timezone_set('America/New_York'); $download = 28000; $add = [7, 5, 3, 2, 4, 5]; $cycletotal = 26; // 7+5+3+2+4+5 $time1 = time(); $time2 = mktime(0,0,0,2,6,2014); // a starting point $hourdiff = floor(($time1 - $time2) /...
Back
Top