
Search In
There are two ways to enable & disable maintenance mode in laravel 5.Whenever your website is in maintenance mode, laravel return a custom view that will be displayed for all requests. This makes it easy to "disable" your website or application w
There might be some cases when we need to call a function without checking if function's definition is loaded or not. If loaded then that will be fine but if not loaded then it will throw an error as undefined function. We can handle this in Java
I want to print a file with the data of this struct.
struct dados
{
char matr[50];
char ele[50];
float ela[50];
float final[50];
int freq[50];
float recu[50];
};
Already trie
When we use CKEditor for a text area it creates an instance of an editor for this text area. But in some case, if we remove this element the instance of CKEditor not removed and it show on our browser, so for removing it completely we use
<texta
We can create themes using Theme Generator. Liferay Theme Generator is an easy to use command line tool to generate the themes. Liferay plugin SDK isn't required to create the liferay theme and it works well with liferay 6.2 and 7 and probably up
Hello Everyone, In this blog I teach you How to remove parent widget and sidebar in child theme wordpress.
Below code is the parent theme sidebar code.
class PWidgetName extends WP-Widget {
// your widget code
}
You can remove this code or ove
Hi Reader's,
Welcome to FindNerd,today we are going to discuss how to customize flash message in Cakephp 2.x?
If we want to customize flash message with alert flash box in our CakePHP web application.So for that we have to follow below process.
Rake is a Ruby task management tool. Like in Unix we have 'make' utility.
So we can say Rake is Ruby Make. It uses a Rakefile and .rake files to create a list of tasks.
We can see all the Rake tasks available in our current directory by one o
Importing vendor files in Cakephp 3
If you have used Cakephp 2x then we know how to import vendor files there. In Cakephp 2x we do the following to import vendor files:
App::import('Vendor', 'Twitter', array('file' => 'Twitter' . DS . 'src'. DS
Hi Reader's,
Welcome to FindNerd,today we are going to discuss helpers in cakephp 2.x.
If we are making any web application in CakePHP then sometimes we have to use helper for extending the functionality of view. Because helper is used for makin
