If your site is hosted on Shared Server and you want to use Zend library on your project. For Dedicated server, you have full root access and can have remote or full putty access of your server, you can install/uninstall any library as well as software in the server. The same will be done…
After a fresh installation you could find that PHP short_open_tag disabled by default in php.ini file. You can check by using phpinfo() PHP function. Under PHP Core setting you can find as below Directive Local Value Master Value short_open_tag Off Off If “short_open_tag” is found off in your php.ini file then you…
Fixed: PHP move_uploaded_file() and copy() function is not uploading the file In the programming field we usually need to upload the files in the folders. In PHP, we have 2 functions for the purpose. 1st is move_uploaded_file() 2nd one is copy(). I think you know well, what the difference between these two copy() vs…
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders. x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems. The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP…
If you upgraded your PHP version to PHP 5.3.x, you will get few warnings or deprecated function messages like function ereg() is deprecated in php 5.3.x. You can find the full list of functions that are deprecated by following URL Deprecated features in PHP 5.3.x ereg family functions are deprecated in PHP 5.3.0 or later,as…
get_magic_quotes_gpc() There is a PHP feature or function called as magic quotes that was created to help protect newbie programmers from writing bad form processing code. Magic quotes will automatically escape risky form data that might be used for SQL Injection with a backslash \. The characters escaped by PHP magic quotes includes :…