
trq
Staff Alumni-
Posts
30,999 -
Joined
-
Last visited
-
Days Won
26
Everything posted by trq
-
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?
-
That exact command? Did you give it the proper path to your document root?
-
Quickest backup solution to zip all files and folders
trq replied to isimpledesign's topic in PHP Coding Help
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. -
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.
-
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.
-
http://github.com
-
Then you'll want to ask your question in one of the programming boards.
-
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.
-
You haven't actually described any issue to us.
-
You would need to write a script for this, MySql won't do it alone.
-
PHP executes on the server and doesn't care what browser your using. it's likely your markup that is the issue, not php.
-
installing sudo apt-get install php5-xsl problem
trq replied to helloise's topic in PHP Installation and Configuration
Did you restart Apache? -
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.
-
I would suggest this is a Netbeans bug.
-
Easy way to move 40 databases from one server to another?
trq replied to ghurty's topic in MySQL Help
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? -
onload is not part of the jQuery framework. Can we see your code.
-
Anyone allow web service calls and a free web hosting site ?
trq replied to sdowney1's topic in Miscellaneous
Seriously, hosting is pretty cheap these days, free hosting is no good. You get what you pay for. -
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.
-
Have you checked out some of the editors mentioned in this thread?
-
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.
-
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.
-
You'll need to be more descriptive. Your example makes little sense to me.
-
Netbeans 6.8 does seem even better than 6.7. Many improvement + it does seem more responsive.
-
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).
-
Iv'e been using vim for years though have been loving Netbeans since I programming work full time.