Wednesday, 30 May 2012

On 08:42 by Unknown   No comments
svn revert -r...

Friday, 25 May 2012

On 08:09 by Unknown   No comments
37 down vote accepted To best share with multiple users who should be able to write in /var/www, it should be assigned a common group. For example the default group for web content on Ubuntu and Debian is www-data. Make sure all the users who need write access to /var/www are in this group. sudo usermod -a -G www-data Then set the correct permissions on /var/www. sudo chgrp -R www-data /var/www sudo...

Tuesday, 22 May 2012

On 06:08 by Unknown   No comments
Secure Shell or SSH is a network protocol that allows data to be exchanged using a secure channel between two networked devices. Used primarily on GNU/Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plaintext, rendering them susceptible to packet analysis. The encryption...

Sunday, 20 May 2012

On 05:59 by Unknown   No comments
This happens when the PostgreSQL module is missing. Make sure that you uncomment / create the extension line in you php.ini. Like: Expand|Select|Wrap|Line Numbers extension=pgsql.so ; For Unix extension=pgsql.dll ; For Windows Also, make sure that the file actually exist in the directory specified by the extension_dir directive. You can look for the PostgreSQL info in the phpinfo()...
On 05:41 by Unknown   No comments
 PostgreSQL is a powerful object-relational database management system, provided under a flexible BSD-style license.[1] PostgreSQL contains many advanced features, is very fast and standards compliant. PostgreSQL has bindings for many programming languages such as  C, C++, Python, Java, PHP, Ruby... It can be used to power anything from simple web applications to massive databases with...
On 05:25 by Unknown   No comments
To access the php.ini file /etc/php5/apache2/php.ini To make it work you should make you php.ini look like this:  ; display_errors Default Value: On Development Value: On ; Production Value: Off ; display_startup_errors 105 Default Value: On  106 Development Value: On ; Production Value: Off ; error_reporting 110 Default Value: E_ALL & ~E_NOTICE Development Value: E_ALL | E_STRICT ;...
On 04:42 by Unknown   No comments
Create tar file $ tar -cvf filename.tar filename Extract tar file $ tar -xvf filename.tar To extract tar file with gz extension use $ tar -xvf filename.tar Meanings to commond tar command flags are given below c - Create a new archive. t – List the contents of an archive. x - Extract the contents of an archive. f – The archive file name is given on the command line (required whenever the tar...
On 04:31 by Unknown   No comments
Your user needs permission to write to /var/www. Since you're not worried about permissions: In a terminal you can type sudo chmod a+rw /var/www and your own user will be able to write to that directory. That will give read/write access to /var/www to everybody on your machine. It will allow you to save and Apache to re...
On 04:14 by Unknown   No comments
sudo apt-get install lamp-serv...

Thursday, 17 May 2012

On 23:57 by Unknown   No comments
sudo rm -rf folder/ ~source http://www.mail-archive.com/ubuntu-in@lists.ubuntu.com/msg00413.h...

Tuesday, 15 May 2012

On 02:10 by Unknown   No comments
->http://voices.yahoo.com/changing-permissions-locked-folders-ubuntu-linux-2927907.html ->http://lowfatlinux.com/linux-chmod-chown.html ->https://help.ubuntu.com/community/FilePermissions ->http://ubuntuforums.org/archive/index.php/t-1052392.h...
On 01:33 by Unknown   No comments
->http://www.yolinux.com/TUTORIALS/Subversion.html ->http://svnbook.red-bean.com/nightly/en/svn.intro.quickstart.html ->http://www.clear.rice.edu/comp314/svn.html ->http://aymanh.com/subversion-a-quick-tutorial ->http://maverick.inria.fr/Membres/Xavier.Decoret/resources/svn/index.h...
On 00:41 by Unknown   No comments
http://php.net/manual/en/function.hash.php http://phpsec.org/articles/2005/password-hashing.h...
On 00:11 by Unknown   No comments
->use the page source on the browser ->you can echo the sql statem...