Author: adminratna

How to enable curl in ubuntu? 2

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 0

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? 22

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 install Django in windows? 0

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? 37

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...