run Yii Interactive Tool with xampp on windows - yii

I want to config yii on windows, but i can not run Yii Interactive Tool. all documents i read is for Linux that have below syntax:
%YiiRoot/framework/yiic shell
but i am using xampp on windows, how can i do this?

What is it you want to do with the tool? If it's code generation use the web-based Gii instead.

Related

Not able to launch apache apex cli

I am trying to launch Apache Apex cli but not able to do so.
the document says just type apex on command prompt but that says No command 'apex' found
Are there some pre steps which i need to perform before start using it?
I have all prerequisites available like, Hadoop, JDK 7, Git and Maven.
apex cli is an interface provided to users to interact (launch, monitor, manage ec.) with the Apache Apex Applications. You can find short information about how to build and use it at : Apex Core git repository
Detailed information can be found here: Documentation
Did you build apex-core? If not please run mvn clean install in apex-core directory

How to automate command prompt(putty) action via selenium

My application requires to enter commands on command prompt(Putty) and then I need to verify that from web browser.
I have used selenium for web functionalities but How can i achieve this with selenium?
which extensions /library files i would require?
Use Auto It (https://www.autoitscript.com/site/autoit/AutoIT) to automate the interaction with putty and run the script in Java using Execute command(or find the command specific to your programming language).

Where to find groovy library on intellij(mac) when installed groovy through sdkman

I installed groovy through sdkman on mac. When i try to create a new groovy project in intellij, it asks for groovy library location. Where can i find the installed groovy?
I ran into similar issue. By using
/Users/<username/.sdkman/candidates/groovy/current
or
/Users/<username/.sdkman/candidates/groovy/<version>
worked for me.
Adding the answer that solved my problem (thanks to ThomasW comment)
When dialog box is opened you can click CMDSHIFT.
and this allows you to pick the hidden folder in the open dialog box.
Then you can use:
/Users/<username>/.sdkman/candidates/groovy/current
Just run $ which groovy after have it installed.
You may not be able to find groovy path with which command.
After installation of sdkman on linux-like systems Mac OSX, Linux, Cygwin, Solaris and FreeBSD, First, run $ source "$HOME/.sdkman/bin/sdkman-init.sh", then you will be able to access the installed development kits.
Namely, if you type 'which groovy' it should show the path, and you can invoke other SDK commands.

Is there an IDE for PHP CLI?

I downloaded Eclipse PDT, Zend, and Netbeans (trial) and they only seem to have support for PHP on a web server. I want to use PHP CLI as a programming language, is there an IDE for it?
Edit: I don't want to use the command line. I want a program that can run PHP CLI in a GUI.
Komodo allows you to run your scripts in CGI environment.
NuSphere has command line tab.
Zend Studio has PHP CLIs both version 4 and version 5 installed within the IDE,
PHP CLI PHP IDE allows you to quickly test PHP CLI script,
You can write PHP code with any editor, including the ones you mentioned and run it from the command line like this:
php yourscript.php
The file syntax should be as usual, your script should start with so they can be processed by the interpreter
NuSphere PHPEd supports PHP CLI.

Configuring PHPUnit on Server in PHPStorm 3.0 using XML configuration file

I would like to run PHPUnit tests on the development server as opposed to my desktop.
Using PHPStorm Run debug configuration I have created new PHPUnit on Server configuration.
However when I try to run it, PHPStorm does not seem to be able to see the XML configuration file. The path to the XML configuration file is on the local desktop, so it makes sense that PHPStorm runner would not be able to find the file on the server. However PHPStorm does not allow me to supply the path on the server.
P.S. I was able to run tests manually on the server and on my local desktop. In this question I am trying to figure out how to run the tests on the server directly from PHPStorm.
P.P.S. Could this be a bug in PHPStorm? if yes, then I'll submit it.
So far this seems to be an issue in PHPStorm. I have filed the issue here: http://youtrack.jetbrains.net/issue/WI-9369