.htaccess file guid

htaccess is a very ancient configuration file that controls the Web Server running your website, and is one of the most powerful configuration files you will ever come across. .htaccess has the ability to control access of the WWW‘s HyperText Transfer Protocol (HTTP) using Password Protection, 301 Redirects, rewrites, and much much more. This is […]

person shubham sharmaaccess_time February 8, 2017launch Read More

What is htaccess

Htaccess (HyperText Access) is a simple configuration file that allows designers, developers and programmers alike to alter the configuration of the Apache Web Server in order to provide additional functionality. Such functionality can include redirecting users, URL re-writes and providing password-protected directories; but it can do so much more. So let’s begin … Creating and […]

person shubham sharmaaccess_time February 8, 2017launch Read More

How to create custom 401, 403 and 500 error pages?

EError pages are served up via .HTACCESS, if you are using Apache you would use the ErrorDocument directive and add the status and URL to it. So it would look like this in your .htaccess file:

  You could use the following function below. This will dynamically add what is needed to the HTACCESS […]

person shubham sharmaaccess_time February 3, 2017launch Read More

PHP date standard format

  The strtotime() function parses an English textual datetime into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 GMT). Note: If the year is specified in a two-digit format, values between 0-69 are mapped to 2000-2069 and values between 70-100 are mapped to 1970-2000. Note: Be aware of dates in […]

person shubham sharmaaccess_time December 7, 2016launch Read More

Android: What is the best HTTP library for uploading images to server? [closed]

AndroidAsync – https://github.com/koush/AndroidAsync android-async-http – https://github.com/loopj/android-async-http okhttp – https://github.com/square/okhttp http-request – https://github.com/kevinsawicki/http-request android-volley – https://github.com/mcxiaoke/android-volley ion – https://github.com/koush/ion retrofit– https://github.com/square/retrofit Bolts-Android– https://github.com/BoltsFramework/Bolts-Android       The library you mentioned are very different in nature. They can be more or less grouped like this Socket level API: This includes AndroidAsync okhttp HttpClient HttpURLConnection These are very […]

person shubham sharmaaccess_time November 10, 2016launch Read More

Upload File

 

person shubham sharmaaccess_time November 7, 2016launch Read More