Wednesday, 10 September 2014

Invalid Application Delete? J2ME

This can happen because of two reasons
1. General attributes not added to project. Do the following to achieve this
          Select project from project explorer > Properties > Application Descriptor>Attributes Tab > Use Add button

2. Important! May be beginners will miss this
          Select project from project explorer > Properties > Application Descriptor>MIDlets Tab> Use Add button to add MIDLet name and MIDLet class

MIDlet class is a unique class in your project which extend MIDlet as

MyMainClass extends MIDlet

Thursday, 21 November 2013

Disabling SSL on apache

http://yourbusiness.azcentral.com/disable-ssl-apache-server-19849.html

Apart from this need to take care application is not using "https" in any of its urls/menus etc.

You can do a full text search of "https" in the entire solution to confirm this.

Tuesday, 19 November 2013

Enabling LDAP for PHP on Apache/Windows environment (WAMP)

Here is a very useful and easy url for enabling LDAP for PHP on Apache/Windows environment from ID SAFAIRIS AMAT NOOR
http://wptidbits.com/webs/enable-php-ldap-module-in-xampp/

One change I suggest is have Environment variables configured instead of copying the dlls directly to system folder. Following is the help for this

http://www.php.net/manual/en/faq.installation.php#faq.installation.addtopath

Saturday, 16 November 2013

Perfect way to login to MySQL (windows) through command prompt

Use this : mysql -u user_name -p [press_enter_key]
then type password
Example
D:\xampp\mysql\bin\mysql -u root -p  [press_enter_key]
Enter password: *********

Friday, 18 October 2013

Enabling dependent NuGet Libraries download during build - Visual Studio


"Enable NuGet Package Restore" from within Visual Studio, all of those third-party references will be added. I forget whether you can just right-click on the solution name to do this, otherwise look in Options -> Package Manager -> "Allow NuGet to download missing packages during build".

Original Post
http://our.umbraco.org/forum/developers/extending-umbraco/44227-why-many-references-are-not-found-in-source-code

unable to read package from path nupkg - Post which saved me

This bug from the Chocolatey GitHub repo suggests that you need to clear the NuGet cache (%LocalAppData%\NuGet\Cache) and this should resolve itself.

Original Post is from
http://stackoverflow.com/questions/18661114/scriptcs-unable-to-read-package