Categories
Web Development

Studying Domain Driven Design with Slim PHP framework

I’m currently developing a mobile api using slim4 with DDD architecture.

once I’ve done it, I’ll upload on github

Categories
Web Development

Cloud Flare Free 5 Firewall setting for wordpress

 

Expression Preview

 

(http.request.uri.path contains "/wp-login.php") (http.request.uri.path contains "/xmlrpc.php") (http.request.uri.path contains "/wp-admin/" and not http.request.uri.path contains "/wp-admin/admin-ajax.php" and not http.request.uri.path contains "/wp-admin/theme-editor.php") (http.request.uri.path contains "/wp-content/plugins/" and not http.referer contains "yoursite.com" and not cf.client.bot) (http.request.uri.path eq "/wp-comments-post.php" and http.request.method eq "POST" and not http.referer contains "yoursite.com")
Categories
Web Development

How to word wrap text in Bootstrap Button Link or Button Element?

It happen to me as well, I credit to all developer who have share it. You use this CSS to fix it


btn {
white-space:normal !important;
word-wrap: break-word;
}