Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

DJ Classified Payment Plugins in Joomla

DJ Classified is used to create and display ads. You can create both free and paid adverts. For paid advert, DJ Classified provide various payment plugins. Some of them are as follows: Paypal Payment Plugin: Plugins are installed normal way...

How to insert record in Symfony?

Hello Friends, If you are new in symfony and want to insert a new record in the database, please review the below example ::  1) Please open your controller file. 2) Add database entity in the top of your controller like this u...

Discussion on apply layout in CakePHP

Hi Reader's, Welcome to FindNerd, today we are going to discuss apply layout in CakePHP. Layouts is a very important feature in a CakePHP web application, by default layout in (app/View/Layouts/default.ctp) file. But we can apply differen...

How to get facebook user details using PHP?

Hello Reader's if you are looking to develop a web app which gets the facebook user profile details then by using PHP you can do this. Facebook gives us the public details of any user like: photo, cover location and birthdays. To use thi...

DJ Classified Extension in Joomla

Dj Classified is the Joomla extension used to create classified section on your site. You can create and display your ad using this extension. In this extension, ads are divided into different categories or sub categories and locations. You can d...

How to send attachments in email using Codeingniter

Hello Reader's, If you have developed the web project in Codeigniter and want to send attachments using emails then in this blog you can learn how to do this. Sending the attachments can be done by several way in php, We will do th...

Discussion on retrieving and set the data in cakePHP

Hi Reader's, Welcome to FindNerd, today we are going to discuss retrieving and set the data in cakePHP. If you want to retrieve the data from the database in your CakePHP web application. So in CakePHP, there is an inbuilt function to get...

Sanitization in Cakephp 2

Sanitization in Cakephp 2 Sanitize in Cakephp is used to rid user submitted data and any other unwanted information.  Sanitize can be used anywhere in controllers or models. Before using Sanitization, you need to import its library by cal...

How to send email via sendgrid curl using PHP

Hello Reader's if you are looking to send emails via curl using PHP then this blog is helpful to you. Curl is a tool which sent the data in forms to any other server with multiple data. So lets get started working on sending email with ...

Discussion on Group By in Cakephp

Hi Reader's, Welcome to FindNerd, today we are going to discuss Group By in Cakephp In Cakephp web application sometimes we need to fetch data from database according to group field name. So GROUP BY statement is used in conjunction with ...

How to load heavy images via ajax in webpage

Hello Reader's if you find your website is too heavy to load the contents, then you can use the ajax to load images. By using Ajax data be loaded and browser will load the heavy images with fade in effect. So lets get started...

How to create different shape images in css3?

In this blog, we will learn to create images of different shapes using css3. In my example, I have created images of different shapes like rhombus, hexagon, diamond, octagon.  I have taken four classes rhomb, dia, hexagon and octagon having ...

Callback methods in Cakephp

Hello readers today we will discuss on callback methods in cakephp. These methods are very simple and easy to use. In MVC architecture  C stands for controller. Controller is used to manage the logic around a single model. Controllers can...

Discussion on set default timezone in cakephp 2.x

Hi Reader's, Welcome to FindNerd, today we are going to discuss set default timezone in CakePHP 2.x When developing an application in CakePHP, sometimes we need to set default time zone in our applications, according to the timezone area....

Custom search in Wordpress with multiple categories

Hello readers, today I guide you "How to create search functionality in Wordpress with multiple categories". If you want create this functionality, you have to write some code in functions.php file and some code into your file where ...

How to use if condition with for loop in twig, symfony

Hello Friends, If you are looking to use if condition in for loop with twig template. Please review the below example. <table> {% for category in categories if category.active %} <td>{{ category.title }}</td&g...

Pagination with search in cakephp 2.x

Pagination with search in Cakephp 2 Hello friends, today I am going to tell you how to use searching with pagination in Cakephp 2. If you want to search multiple things like first name, last name, email etc then it can be done easily. Lets beg...

Integrate Wegus infotech SMS Gateway API in PHP/Cakephp 2.x

Wegus infotech SMS Gateway If you want to send bulk sms to your users through API, then you can send it using dedicated SMS gateway via HTTP Protocol. The HTTP API can be used to send various type of SMS messages including Long text messages o...

Discussion on speedUp CakePHP Website

Hi Reader's, Welcome to FindNerd,today we are going to discuss speed up our CakePHP Website. When implementing any web application in CakePHP sometimes we observe the application speed very slow and data is not coming in view page and it ...

How to display error messages in Symfony

Hello Friends, If you are looking to flash error message in Symfony. Please review the code as below: Please open your controller function where you need to display error message. Please review the below example and update your code accordi...

Discussion on naming conventions in CakePHP

Hi Reader's, Welcome to FindNerd,today we are going to discuss naming conventions in CakePHP. When implementing a web application in CakePHP, we have to use naming conventions for making any model name and table name etc very carefully. ...

How to make menu to visible only a specific user in Joomla?

Hello friends, today I'll tell you how you can display a menu to a specific user in Joomla. Before starting the process you should know about User Group and User Access Level in Joomla. User Group and User Access Level in joomla is used to co...

Discussion on Auth component in CakePHP 3

Welcome to Findnerd. Today we are going to discuss Auth component in CakePHP 3. Authentication is necessary in all web applications. You can identify the user by his provided user-name and password and authorized his activities in the application...

Saving Details With BelongsTo Associations in cakePHP 3

Hello Reader's , Hope your are doing good today. Today in my blog i am going to explain how you can save details with BelongsTo Associations in CakePHP 3. If you have multiple record for a single user, then you need to split your recor...

How get camera make and model from Image using PHP?

Hello, Reader's if you are uploading images for website gallery and looking for extract the Camera make and model from it, Then  PHP offers you to do this via EXIF meta. Every original digital photo contains the detail of Camera ...

Database Access and ORM cakephp 3

The new version of cakephp comes with lots of new features and changes in it. Cakephp access the database with mainly two objects. First is table objects. Second is entities. Objects provide the access to the collection of data. En...

Describe Data type in PHP

Hello Reader's ,   Today in my blog i am going to Describe Data Type in PHP. Data Type is a very important part of any programming language. Let's start learning about Data Type What is Data Type? A data type identifie...

client side and sever side validation in cakephp

Data validation plays an important role in any application, It helps to confirm  that the data in a Model confirms to all the rules of any application.   There are 2 types of validation in cakephp. First one is server side and the...

Discussion on upload File in PHP

Hi Reader's, Welcome to FindNerd, today we are going to discuss File upload in PHP. When developing a web application in PHP sometimes we need to upload images in our application. Basically, we can say that when a user goes for registrati...

Discussion on paginator component in CakePHP 3

Welcome to Findnerd. Today we are going to discuss pagination in CakePHP 3. If you have hundreds of records in one page then you need to implement the pagination for better user experience. Pagination is a technique to divide the records in multi...

Create symfony bundle using command line

Create new bundle using commands: Run the following command to create new bundle: # php app/console generate:bundle   Following are some options which need to fill after running the above command:   Welcome to the Sy...

Discuss on export MySQL Table Records into CSV file

Hi Reader's, Welcome to FindNerd, today we are going to discuss export MySQL Table Records into CSV file. If we are developing any web application in PHP then sometimes we need to export MySQL Table Records into CSV file. fputcsv() is a f...

Discussion on converting .DOCX file to .PDF file using LIBREOFFICE in cakephp

Hi Reader's, Welcome to FindNerd, today we are going to discuss converting ".DOCX" file to ".PDF" file using LIBREOFFICE in cakephp. If we are developing any web application in CakePHP then sometimes we need a file to ...

ACL in Joomla

ACL stands for access control List in Joomla. ACL is a mechanism using which we can provide access to the users to access the articles,modules, plugins and other extension. It's the feature of Joomla using which we can publish an article, mod...

How to resize images from one folder to new desitnation?

Hello Reader's,  If you have a folder full of larger images and you want to resize them into a new folder then PHP offers you to do this in a quick and easy programming. Suppose you have uploaded the website images in upload folder and...

Cake bake in Cakephp 3

Installing Cakephp 3 Welcome to Findnerd friends. Today I am going to tell you how to generate code using cakephp 3. We are going to start from the installation process in cakephp 3. Lets begin installing cakephp 3 by writing the following co...

Cakephp 2: Generate custom method and view for baking

Generate custom method and view in Cakephp using bake method As all we know that baking is the best and powerful method provided by cakephp for developing CRUD methods . It helps the developers to develop the website very easily and faster. Cu...

Creating toolbar in your component and Backend actions in Joomla

Joomla Toolbar are the buttons that we have used several time for performing the functionalities. Whenever you open any component of Joomla from admin section you have seen buttons such as New, Delete, Edit, Publish, Unpublish and Param...

Discussion on useful Plugins in CakePhp

Hi Reader's, Welcome to FindNerd,today we are going to discuss about useful Plugins in CakePhp IF we are developing any web application in CakePHP then sometimes we need some plugins for adding some features like "Search Plugin"...

routing in codeingiter

Hello Reader's,  If you are working on CodeIgniter Project and want to customize the pages URLs. Codeigniter offers you to do this by using it Routing function. The Routing the is method for hiding the controller and model functions f...

How to create a simple custom module in Joomla?

Hello friends, today we will discuss how to create a custom module in joomla. Here, we are creating a module example. You can change the name of your according to your requirement. To create a module in joomla four basic files are required: ...

Discussion on login with Facebook in CakePHP

Hi Reader's, Welcome to FindNerd,today we are going to discuss login with Facebook in CakePHP. As we see that login with Facebook is very important feature for a web application because most of users do not take too much interest in signi...

Password Hasing in Cakephp 3.0.

Hello Reader's , Hope your are doing good today. Today we will learn about password hashing in CakePHP 3.0. Before going to start you should know about Password Hashing. Now days password are one of the most important security featu...

How to display flash messages in Symfony

Hello Friends, If you are looking to flash success messages in Symfony. Please review the code below: 1) Open your controller and put the below code with your changes: // Define your success message as below $request->getSession(...

Discussion on convert Html to pdf in CakePHP 2.x

Hi Reader's, Welcome to FindNerd,today we are going to discuss convert Html to pdf in CakePHP 2.x. If we want to convert Html to pdf in our CakePHP web application then firstly we have to download TCPF library from Github. You can see bel...

Association in cakephp

Association is basically linking two models of the database. It is very useful. After applying association you don't need to join the tables from the controller and fetch the data of another model from the controller. The four types ...

How to implement ajax in cakephp?

Hello Everyone, In this blog, we will be learning about that how to use AJAX in cakePHP. There is not much difference of using Ajax with cakePHP or with HTML. Ajax is defined as Asynchronous JavaScript. It is a client-side scripting language th...

Discussion on helpers in cakephp 2.x with example

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 fo...

How to use Login Authentication in cakephp 3.0

Hello Reader's , Hope your are doing good today. Today we will discuss about login Authentication in cakephp 3 using Auth Component.Authentication is a very important part of any application. If you are working on user based project th...

How to apply Server Side Validation on form in Cakephp

Data validation is the process to ensure that computer input coming from user is clean, correct and useful. Data validation also checks if field is not empty. If validation fails , response is sent back to the user, then display proper message, s...
1 2 4 44
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: