Author: adminratna
How to enable curl in ubuntu?
To enable curl package php5-curl should be installed. Run the following command in your terminal sudo apt-get install php5-curl Now restart apache by running following code sudo /etc/init.d/apache2 restart Hope this solution will help...
Easiest way to install LAMP On Ubuntu
For a beginner its really a difficult to install LAMP on Ubuntu. Even if it is installed its very difficult to run phpmyadmin properly. I am going to share my personal experience and difficulties...
How to solve “Access forbidden! You don’t have permission to access the requested object. It is either read-protected or not readable by the server. If you think this is a server error, please contact the webmaster. Error 403 localhost Mon 24 Oct 2011 07:45:12 PM NPT Apache/2.2.17 (Unix) DAV/2 mod_ssl/2.2.17 OpenSSL/1.0.0c PHP/5.3.5 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1” problem?
Some times while we wish to run any project on xamp or wamp or lampp we might this error message as: Access forbidden! You don’t have permission to access the requested object. It is...
How to solve “Error MySQL said: Documentation #2002 – The server is not responding (or the local MySQL server’s socket is not correctly configured) Connection for controluser as defined in your configuration failed.” problem?
When we try to access PHPMyAdmin from xampp on linux we might get the following errors “Error MySQL said: Documentation #2002 – The server is not responding (or the local MySQL server’s socket is...
How to install Django in windows?
1. Download django Django-1.3.tar.gz 2. Extract it to get Django-1.3 folder. 3. Open Command Prompt 4. Go to the location where you extracted Django-1.3 5. Type python setup.py install If you get error in...
How to solve “Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0 Fatal error: Unknown: Failed opening required ‘/opt/lampp/htdocs/……/index.php’ (include_path=’.:/opt/lampp/lib/php’) in Unknown on line 0 ” problem?
This error is due to the file permission. To resolve this issue we should change permission with SuperUser(sudo). So syntax is sudo chmod -R 0755 foldername I have installed lampp in /opt/lampp/htdocs folder so...
How to solve indexOf javascript problem in internet Explorer?
indexOf is not supported by dump web browser internet explorer. To solve this we need to add following code in our javascript file. if (!Array.prototype.indexOf) { Array.prototype.indexOf = function (elt /*, from*/) { var...
How to fetch / extract data using CURL in PHP?
This is an example that fetches then information that we get while we search in google as define:words.
Recent Comments