Search Results

0
votes
12answers
348 views

C:\Program Files problem

A configuration file needs position of another file, but that file is located in "C:\Program Files", and the path with space in it is not recognized, Is there another way to …
0
votes
5answers
101 views

php extension on windows xp

I've installed php on my xp, but failed to add an extension to mysql Here is what I did in php.ini: [PHP_MYSQL] extension=php_mysql.dll and there is such a …
0
votes
0answers
91 views

anyone sucessfully debug nutch1.0 in eclipse@windows?

I tried,but finally met this problem,and searched a lot but shamefully didn't find a solution: D:\nutch-1.0\logs>tail -50 hadoop.log 2009-06-04 04:26:08,171 INFO plugin.PluginRe …
1
vote
0answers
64 views

What’s the software that enables lot of linux commands on windows? [closed]

Like "rm,ls,grep" and other most used commands are included, what we need to do is include the directory in the PATH environment. Where to download it? …
-3
votes
3answers
91 views

How to install Java environment most easily on windows?

Last time I came into wampserver for PHP/MySQL/Apache ,which saved me a lot of time. Now I need to install java, is there any software to recommend? …
0
votes
4answers
208 views

Can someone explain this bat code?

for /f %%i in ('dir /b Client\Javascript\*_min.js') do ( set n=%%~ni set t=!n:~0,-4! cp Client\Javascript\%%i build\Client\Javascript\!t!.js ) What …