How to enable PHP support in Netbeans?


Question On Ubuntu, I have install netbeans but it does not have any option to start a php project. I've looked at the plugin list and php is not in the list, neither is it in the plugins to download list. I've gone to the netbeans website and I am not sure which php plugin to download. Can someone please help me with this? Ubuntu 12.04 64bit has netbeans 7.0.1 in the software repository.…
Read more ⟶

Fatal error: Class 'IntlDateFormatter' not found


Question I installed WAMP on my local machine. My PHP version is 5.3.3 in phpinfo() but that extension doesn't exist! :( How can I install this extension without compiling it? Here is just source of it. Answer The extension was there! All you need to do is clearing the comment(;) before this line in php.ini file: Windows: ;extension=php_intl.dll to extension=php_intl.dll Linux: ;extension=intl to extension=intl Then restart apache2 or php-fpm if you are using it.…
Read more ⟶

How to open the AVD manager on Ubuntu Linux from the command line?


Question How to open the AVD manager on Ubuntu Linux from the command line? Answer For thoose coming here because the android avd command has been deprecated*, here's how to do it now: Using Android Studio Open Android Studio with a valid studio project (if you don't have one, simply create one empty). After you've your project open, go to Tools => Android => AVD Manager. Note that this menu does not appear if you don't have a valid Android Studio project open.…
Read more ⟶

How to import a globally installed package to virtualenv folder


Question So I have a virtualenv folder called venv for my python project. I can run: venv/bin/pip install -r requirements.txt Which installs all requirements I need for the project except one, M2Crypto. The only way to install it is through apt-get: apt-get install python-m2crypto How can I then add this package installed through apt to venv folder? Answer --system-site-packages gives access to the global site-packages modules to the virtual environment.…
Read more ⟶

Default Jenkins User Password


Question I have a fresh install of Jenkins as a service on my Linux machine. When Jenkins installs, it creates a 'jenkins' user, but I can't seem to find the default password for it anywhere. I'm trying to secure my system, so if the default password is '123' or something insecure that I just haven't thought of yet, that's a problem. Thanks! Answer I don't believe it has any password. You should be able to do:…
Read more ⟶

How do I install chkconfig on Ubuntu?


Question I am running Ubuntu 13.10, and I'm pretty new to Linux. I tried: $ sudo apt-get install chkconfig Package chkconfig is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'chkconfig' has no installation candidate I manually downloaded the package and unzipped it. The resulting folder has a file called:…
Read more ⟶

Ubuntu: large syslog and kern.log files [closed]


Question Closed. This question is not about programming or software development. It is not currently accepting answers. </div> This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered. Closed 12 months ago.…
Read more ⟶