Monthly Archives: October 2014

Your web site should be built around your "vision" and your "business requirements"

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 ON DatabaseName . * TO ‘UserName’@’localhost’;

After that Flush the privileges so the changes will take affect.
FLUSH 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.