Access to /app/etc/local.xml is not so desired since it contains your db login.
However IIS does ignore .htaccess, so you need to change the local web.config file. Continue reading Magento security on IIS
AVG
BRON: https://autoriteitpersoonsgegevens.nl/nl/onderwerpen/avg-nieuwe-europese-privacywetgeving/voorbereiding-op-de-avg
In 10 stappen voorbereid op de AVG
more css
bron: https://css-tricks.com/examples/ShapesOfCSS/
Please not some of these do not work because of the default stylesheet ‘box-sizing’:
html { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, *:before, *:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit; }
TheShapes of CSS
All of the below use only a single HTML element. Any kind of CSS goes, as long as it’s supported in at least one browser.
iphone ipad ugly form buttons
Just correct this using CSS.
The appearance property is used to display an element using a platform-native styling based on the users’ operating system’s theme.
.thing {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
front-end developer
Yes, I am a partial Web Designer, better yet, let’s call me a Front-End Developer. But also and even more: I am a Back-End Developer, not shown on this design-scale…
center
Centering things in CSS is the poster child of CSS complaining. Why does it have to be so hard? They jeer. I think the issue isn’t that it’s difficult to do, but in that there so many different ways of doing it, depending on the situation, it’s hard to know which to reach for.
So let’s make it a decision tree and hopefully make it easier. Continue reading center