Jump to content

ignace

Moderators
  • Posts

    6,457
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by ignace

  1. Are you sure? http://dev.mysql.com/doc/refman/5.5/en/non-typed-operators.html
  2. If I only got that advice sooner..
  3. First, it's: class="s-item1 active" and not class="s-item1" class="active" Second, what does $class contain? How does it get a value? AJAX?
  4. You can use love2hate's solution to download the torrent to your server. You'll need a proper understanding of the torrent-protocol to actually perform the downloading. The specification can be found on bittorrent http://bittorrent.org/beps/bep_0003.html
  5. https://www.ups.com/upsdeveloperkit/requestaccesskey?loc=en_US (click number 5. Request Access Key)
  6. Exactly, why pay if you already have great FREE sources like phpfreaks.com and stackoverflow.com which both share a good deal of experts providing advice for FREE so basically people would use your service for an extra buck but I doubt someone would be willing to pay because both phpfreaks.com and stackoverflow.com have a very high response rate. Basically everyone here just screws your plan Your market would then exist out of the people that do not get an answer here and these commonly are: "I have a website and I now want people be able to register & login, could you please show me how and write some code? I'm a newbie THANX SO MUCH"
  7. You would use the _referenceMap field for that. class Product extends Zend_Db_Table { protected $_dependentTables = array('ProductLocale'); } class ProductLocale extends Zend_Db_Table { protected $_referenceMap = array( 'Product' => array( 'columns' => 'productId', 'refColumns' => 'id', 'refTableClass' => 'Product' ) ); } For more information see http://framework.zend.com/manual/en/zend.db.table.relationships.html
  8. Have you tried DomDocument?
  9. Signup for Google Webmaster it allows you to create a XML sitemap using the sitemap protocol.
  10. This only partly solves the problem. For example, what if 2 persons give a correct solution? Different maybe but correct either way, and how will the client know which one is better? Plus, if you can't see the answers someone else gave, you also don't know if he already got an answer or not. Answering an already answered question will make you lose money. The client is not online 24/7. Which leads to the next problem, not all clients live in the same timezone as you do which means that if most clients live in a different timezone you are already excluded as by the time you will be able to respond to any problem they are already solved. Which will give your client a feeling of guilt because what if he selected the wrong one as the correct answer? For example, someone answers the question you mark it as solved but just before this act another user posted his answer which after reading is the better answer? Oeps and no way to take back those .25 the client has the best answer but pays the wrong one. And what should be the procedure when the wrong one was credited? Take back those .25? You are not only dealing with a complex idea but also an idea that involves moral feelings. Some may believe they gave the correct answer even if a mod disapproved leading to an angry customer. Yes, even for such small amount of money.
  11. There have been already a serious few that I liked a lot, but if there is nothing to critique why bother posting?
  12. How would someone in the above code inject auth_type?
  13. I can't find the topic right now but this has been discussed before. The main question that comes up is how do you decide who gets paid? Because what if multiple people give a correct answer? Or what if a user elaborates on a solution and gets chosen as correct answer which would mean he actually stole 0.25 because he would not be able to elaborate if that user did not give that answer. As you can see this becomes really complex
  14. Which browser? Chrome has the tendency to crash when you load Flash (more particularly if you open a new tab while in the previous Flash is loading) Dutch: http://tweakers.net/nieuws/65423/flash-bug-die-browser-laat-crashen-is-nog-niet-opgelost.html
  15. So you were thinking of your left foot? Doesn't this actually prove Neil's theory as we are now even discussing it Darn Psychology. IT's IN MY HEAD .. IT's IN MY HEAD .. GREEN CATS EVERYWHERE .. MAKE THEM STOOOPPPP
  16. http://alexking.org/blog/2003/06/02/inserting-at-the-cursor-using-javascript
  17. I heard it would only cost you 2500 dollars to hire a hitman. That should solve it, for now. PS Yeah I am all about problem resolution
  18. No. That makes sure that no single error is reported meaning that altough your application does not function it also does not show any errors in your error log the correct setting is: error_reporting(E_ALL); ini_set('display_errors', 1);//1=development, 0=production You also shouldn't set these in your PHP script but in your php.ini. On your development machine display_errors = On and on your production machine display_errors = Off
  19. 4. Make sure to md5 passwords or any vital information.. if you store it into db. make that sha1 and also include a salt. As md5 passwords can be "guessed" using a rainbow table. 5. Use captcha, it prevents spammers. I recommend reCaptcha
  20. You like? You like? Gotta' love it
  21. OMGZOR!!1! L337 OWNZOR!!1! w00t ... wait .. what ?? :-\
  22. Are you disappointed there isn't?
  23. I sometimes get a little over-excited to provide you with really good feedback in a short period of time because I know this sometimes happens I added Below my avatar PS Neil what kind of server are you using? And where are you hosting?
  24. 1. Being a freelancer, you would have to find your own work. How would you personally go and find work? job-boards, cold-calling, events, conferences, association meetings, seminars, .. did I left something out? 2. Can you afford to live on freelancer wages alone? If not then do you have another job? Yup. 3. What is the hardest part of being a freelancer? finding clients & get them to pay 4. How do you pay your tax and national insurance? No comment. 5. Do you belong to a workers union? If so, which one? No. 6. Why did you choose to be a freelancer? Freedom to do any project and to drop it if the working relation with the client stalls 7. Can you afford to take holidays and time off to yourself when working as a freelancer? Yup. 8. What types of insurance do you have when working as a freelancer? No comment. 9. How do you keep up to date with skills? Do you do any training courses? Training courses primarily 10. How do you establish contacts when working as a freelancer? events, conferences, association meetings, seminars 11. What training have you done? If so, what qualifications have you got? None, yet. 12. Do you provide all of your own equipment? Yes. 13. What are the different ways in which clients can contact you for work? social networks (twitter, facebook, ..), cellphone, e-mail, snail mail, ..
  25. I'm actually more interested in how you actually land on those shady websites? Neil may not be a girl but he may have a sexy voice Are you still upset because of my comments on your website? I thought you were passed that?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.