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.
Thursday, 21 November 2013
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
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
Sunday, 17 November 2013
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
Original Post is from
http://stackoverflow.com/questions/18661114/scriptcs-unable-to-read-package
Thursday, 8 December 2011
Ultimate Apache/PHP/MySQL config which worked on windows for me!
Hi,
I had the same problem with PHP, MySql and Apache.
I finally solved my problem with the following:
1.Search your server for libmysql.dll. Delete any instance of libmysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
2.Search your server for php_mysql.dll. Delete any instance of php_mysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
3.Open your C:\%WIN%\php.ini file in a text editor (Notepad will work).
Search for the line that looks like --> ;extension=php_mysql.dll
Change this line to --> extension=php_mysql.dll
Uncomment: extension_dir="c:\php\ext"
Save the modified php.ini file.
4. Copy php.ini to C:\%WIN%\System32
5. Copy C:\PHP\libmysql.dll and C:\PHP\ext\php_mysql.dll to the C:\%WIN%\system32 folder.
Restart Apache/IIS and test it out.
It worked for me
I had the same problem with PHP, MySql and Apache.
I finally solved my problem with the following:
1.Search your server for libmysql.dll. Delete any instance of libmysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
2.Search your server for php_mysql.dll. Delete any instance of php_mysql.dll that is not in the C:\PHP directory. This limits the possibility of older MySQL client API's being used with PHP.
3.Open your C:\%WIN%\php.ini file in a text editor (Notepad will work).
Search for the line that looks like --> ;extension=php_mysql.dll
Change this line to --> extension=php_mysql.dll
Uncomment: extension_dir="c:\php\ext"
Save the modified php.ini file.
4. Copy php.ini to C:\%WIN%\System32
5. Copy C:\PHP\libmysql.dll and C:\PHP\ext\php_mysql.dll to the C:\%WIN%\system32 folder.
Restart Apache/IIS and test it out.
It worked for me
Subscribe to:
Posts (Atom)