Thursday, January 31, 2019

Website Builders: WordPress vs Squarespace

WordPress and Squarespace are the two most popular website building platforms among small business owners. WordPress is a free, open source, and perhaps the most flexible website builder you’ll find out there. Squarespace is no pushover either. Boasting high-quality designer templates to easily...

Wednesday, January 30, 2019

C# Invoice post in tally XML format connect to web to tally - Static IP Configuration

Asp.net C# application invoice post in tally in XML format - Web base application connect to tally ERP using static IP  public string xmlPosting(string xml)     {                 WebRequest request = WebRequest.Create("http://00.000.00.000:9000");​//Static...

Tuesday, January 29, 2019

ASP.Net Zero vs ASP.Net Boilerplate Framework

To start with, both, ASP.net Zero and ASP.Net Boilerplate framework are considered to be a strong infrastructure for modern web applications. ASP.NET Zero is an effective resolution for building web and mobile apps. Full source code is obtained from it and based on the business idea and need, it can be changed as desired. This structural model of ASP.NET Zero is centered on the open-source and...

Friday, January 27, 2017

Monday, January 2, 2017

How to limit process number per user for linux user and apache/cgi

How to limit process number per user for linux user and apache/cgi Instructions for installing PostgreSQL and Management over users and databases. Included instructions for rebuilding of php with pgsql so you could use phpPgAdmin. ...

Monday, November 21, 2016

php.ini per folder CentOS WebPanel CWP

All server with CWP can have custom php.ini file set per user account or per folder. User can manually create php.ini file and add values which needs to be changed in it. Location of the global server php.ini file is /usr/local/php/php.ini Location of the global per account php.ini file is /home/USERNAME/php.ini You can also have per folder changes, example: /home/USERNAME/public_html/website1.com/php.ini /home/USERNAME/public_html/website2.com/php.ini /home/USERNAME/public_html/website2.com/myapp/php.ini How...

Sunday, November 20, 2016

How can I add captcha in my contact form in PHP?

By distinguishing between humans and automated computer programs, CAPTCHA offers safety and security in a number of ways. Why use CAPTCHA: 1) Protecting Registration Forms in Websites 2) Preventing Spam Comments 3) Making Online Shopping More Secure 4) Protecting Email Accounts It is very easy to implement a Captcha in any html forms using php. you can go through any of below mention...