Category: Web Development
Ubuntu | Remove sendmail completely
Problem: I installed sendmail in my ubuntu system with the help of link http://lukepeters.me/blog/getting-the-php-mail-function-to-work-on-ubuntu. I installed it to test php mail functionality on localhost for my project. It was working slow, therefore, after testing, I wanted to uninstall it completely
Microsoft Azure | Deploy ASP.NET Web Project on Microsoft Azure
1.Go to Server Explorer. Right- click on Azure and click on Connect to Microsoft Azure subscription. A login screen will appear. Enter valid credentials with at least one subscription and sign-in. 2. Now expand Azure. Right click on App Service
PDFtk | View PDF field information from command line
Solution: If you have a pdf and you do not know the names of the fields used in the pdf just follow these steps: 1. Install pdftk (search online). 2. Open the command prompt, run the command: pdftk YourPdf.pdf dump_data_fields
A Brief Introduction to SOAP
SOAP stands for Simple Object Access Protocol. This protocol allows to communicate over the web between the programs (or Web service-enabled applications) running on two different systems using Http and language used by this protocol to communicate is XML (Extensible
How to configure DevExtreme with visual studio MVC application
These are the steps : 1. Install Microsoft visual studio on your machine. 2. Then we need Xpress Developer Studio. Which is available on https://js.devexpress.com/. 3. Install Xpress Developer Studio in your machine. 4. Then we need to install DevExtreme
Importing gmail contacts in your website using javascript
Importing gmail contacts in external website is common these day where you can login to gmail from within external website and then access your contacts directly inside external website. For example, the requirement could be to allow user to refer
Can static variables be local?
Static variables are the variables that belongs to class. Static variables are shared among all the objects i.e there is only single copy of that variable.These do not get memory in each object. They automatically get initialised to 0. For
WordPress | Add html form on a slide using Slider revolution Plugin
How can we add html form in a slide in slider revolution plugin in WordPress? Solution: Slider Revolution plugin gives us options to add image, shapes, layers to enter text for example. For placing a form on a slide follow these
CakePhp 3.x | Declaration of user defined constants
In cakephp 3 we declare constants in bootstrap.php file under /app/config folder. A constant can be declared as: Configure::write(‘CONSTANT_NAME’, Value, true); Example: Configure::write(‘USERNAME’, ‘Webners’, true); To use this constant in another file, use this: use Cake\Core\Configure; Now the constant can
