There is always a smarter way.
Linux servers
How to change the memory_limit using .htaccess file
Mar 21st
memory_limit can be changed using php.ini file at location /etc/php.ini. But the idea is not good if you are having shared server. If change the memory_limit on shared server using php.ini file the limit will be change for all the accounts on shared server. Another way is to copy the php.ini file into the users account and search for the memory_limit in the file using using your favorite editor on the server and change the value.
How to enable remote connection for mysql server?
Feb 26th
Enable Remote Access To MySQL Database Server
Most of the linux servers do not provide remote access for mysql database. That’s way the website developer use the hostname as localhost while creating a mysql database connection with your website or while installing CMS like Joomla or WordPress.
How to turn on / off php safe_mode?
Feb 23rd
Most of the time is important to turn on OR turn off the php safe_mode on the server for a particular account. If you turn on OR off the php safe_mode using php.ini file then safe mode will affect for all the accounts on the server if the server is shared server. The best way to turn off the php safe_mode for a particular account is the .htaccess file.
Creating password protected directory using .htaccess file.
Feb 22nd
Hi all. In this post I am going to tell you how to create a protected directory in your website using .htaccess file. Many a time it is a requirement of the website that only authenticated people have an access to files in particular folder. In this article we are going to see the same thing. This post is only for Linux servers only as .htaccess file does not work on windows servers.