Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. You would be much better of executing your query and from that making a list of valid files and going from there. Does this really need to be executed via a web page as well? Surely this is something that can be done in a background process executed via cron or something?
  2. That exact command? Did you give it the proper path to your document root?
  3. I don't see a better solution if that is working for you. I generally would do these things from a prompt but I understand why some people prefer to execute script via a http request.
  4. Did you follow these instructions and execute pear config-set data_dir /path/to/public_html/pear? http://manual.phpdoc.org/HTMLSmartyConverter/HandS/ric_INSTALL.html Ive never installed phpDocumentor through PEAR, a manual install is pretty straight forward.
  5. Firstly, do you really need to use bold chars in your post? I don't see anyone complaining that any other thread is too small. Secondly, you need to outline an actual problem. Just saying you need help doesn't help.
  6. http://github.com
  7. Then you'll want to ask your question in one of the programming boards.
  8. The reason you had to move your code to after the div is because your div didn't exist when the code was initially run. Most jQuery will need to be loaded after the DOM is finished loading (this will fix your issue). this means you need to place all jQuery code within: $(document).ready(function() { // code goes here }); JavaScript should also be placed at the bottom, just prior to the closing </body> tag. This helps with page load times.
  9. You haven't actually described any issue to us.
  10. You would need to write a script for this, MySql won't do it alone.
  11. PHP executes on the server and doesn't care what browser your using. it's likely your markup that is the issue, not php.
  12. You can't skip the opening <?php tag. PHP needs it to execute. The closing tag can and should be left out of a library/framework to help prevent white space being included.
  13. I would suggest this is a Netbeans bug.
  14. mysqldump has an --all-databases option or a --databases option that takes a space seperated list of database names. Does no one look at the manual's these days?
  15. onload is not part of the jQuery framework. Can we see your code.
  16. Seriously, hosting is pretty cheap these days, free hosting is no good. You get what you pay for.
  17. I used to use dynamically loading js, but it ended up being allot more efficient to put all js into one file and the minify it. Its the actual http requests to multiple files that hurts more than size. Of course it would also depend on what sizes where talking about. Loading a 50k-80k file just to use one function etc etc.
  18. Have you checked out some of the editors mentioned in this thread?
  19. This board is here for questions directly relating to already existing Third Party code. It is NOT a code repository or the place to post requests looking for specific scripts. If you can't find the script you are looking for on Google, you either don't know how to use Google or the specific script does not exist. DO NOT request help with searching.
  20. I'm not sure how that would be achieved through php. The rule is that you use a before words that start with a consonant sound and an before words that start with a vowel sound.
  21. You'll need to be more descriptive. Your example makes little sense to me.
  22. Netbeans 6.8 does seem even better than 6.7. Many improvement + it does seem more responsive.
  23. Iv'e not noticed any performance lag with Netbeans excepting maybe when it initially scanning my projects. Even then, I think its only because the drives my projects are hosted on are remote (LAN).
  24. Iv'e been using vim for years though have been loving Netbeans since I programming work full time.
×
×
  • 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.