What's on our mind
Your go-to resource for in-depth insights, expert tips, and the latest trends in web development. Whether you’re a business owner, entrepreneur, or developer, our blog is designed to empower you with the knowledge and tools needed to navigate the digital landscape successfully.
Login to MySql database form command line
To login to MySql database from a commend line you can use mysql -u root -p; after hitting enter system will ask you for the password or you can use...
How to turn on or off full text indexing in MS SQL server with sp_fulltext_database
Here is the snytax for it. sp_fulltext_database [@action=] 'action' action is an argument and it's type of varchar(20) and it could be enable or...
Error on IIS 7 or IIS 7.5 running .Net 1.1: \\?\C:\Windows\system32\inetsrv\config\applicationHost.config
If you try to change any property of an application that was build with dot net 1.1 on IIS 7 or IIS 7.5 get an...
MYSQL Create new user and Grant privileges
To Create a new user in mysql CREATE USER 'UserName'@'localhost' IDENTIFIED BY 'Password'; To Grant user access to the Database GRANT ALL PRIVILEGES...
Access to the path Sitefinity/App_Data/Configuration/.. folder is denied
If you moved Sitefinity from one server to another you might run into this issue Access denied on App_Data folder. To solve this issue on IIS 7.5...