Thursday 21 June 2012

On 00:50 by Unknown   1 comment

FileZilla is open source client fast and reliable cross-platform FTPS, FTP, and SFTP also with lots of useful features and with graphical user interface. This FileZilla PPA is for latest version of FileZilla by LffL.
sudo add-apt-repository ppa:ferramroberto/filezilla
sudo apt-get update
sudo apt-get install filezilla

After installation run FileZilla and use it. Enjoy

Wednesday 20 June 2012

On 22:37 by Unknown   1 comment
 I was having the same problem after doing an update and  an upgrade
I finally opted to downloading a .sh file  and then running it (right click on the file and select the run option),
if it is currently not an executable file,right click on the file,
then select properties,
now on the new window,click on the permissions tab
what you a are supposed to do is to 'check the  radio button after the word Execute,
with this it allows executing the file as a program

With that,as simple as it looks,my problem was solved.
On 22:32 by Unknown   No comments
First you need to make the file executable:
by right clicking on the file->properties->enable executing the file as program using the check on the properties window
or cd to the file location n then chmod +x  file_name.sh
after this
double click on the file and then click on run
n/b:avoid using run in terminal

Sunday 17 June 2012

On 23:26 by Unknown   No comments
check out this:
www.phpgrid.org
hey,and just before you go,
IT IS COMPULSORY THAT YOU HAVE FUN WITH IT

Friday 15 June 2012

On 22:59 by Unknown   No comments
go to ubuntu software center
type ttf-mscore fonts on the search box
Click Install on the “Installer for Microsoft TrueType core fonts” directly in the search results.
Enter your password when requested, and click Authenticate.
To add other fonts,go to the ubuntu software center,click on fonts,to get any font type
have fun.
On 22:55 by Unknown   No comments
Go to the Synaptic Packet Manager,
System_administrator-synaptic packaet manager
search for usb-mode-switch-data
for my case,I installed usb-mode-switch-data and usb-mode-switch
thats it,the rest are mobile broadband settings which you need to configure on your own.

Monday 11 June 2012

On 00:00 by Unknown   No comments

<td><a id="delete_link" href="index.php?num=316&market=<?=$market_id; ?>" onclick="return confirm('Are you sure you want to delete?')">Delete</a></td>

Thursday 7 June 2012

On 07:11 by Unknown   No comments
Install MySQL Server 5 on Ubuntu Installing MySQL 5 Server on Ubuntu is a quick and easy process. It almost feels like it should be more difficult. Open a terminal window, and use the following command: sudo apt-get install mysql-server If you are running PHP you will also need to install the php module for mysql 5: sudo apt-get install php5-mysql To create a new database, use the mysqladmin command: mysqladmin create See, really easy!
On 03:01 by Unknown   No comments
To install phpmyadmin: sudo apt-get install phpmyadmin
To set up under Apache all you need to do is include the following line in /etc/apache2/apache2.conf, first type the following command to open up this file: sudo gedit /etc/apache2/apache2.conf
then include this :

Include /etc/phpmyadmin/apache.conf

3.then restart your apache sudo /etc/init.d/apache2 restart
4. have fun
source:https://help.ubuntu.com/community/phpMyAdmin

Tuesday 5 June 2012

On 06:16 by Unknown   No comments
How-to Install LAMP Server[Apache, MySQL, Php] On Ubuntu 10.10 14 Linux LAMP servers are also popular, flexible and reliable as WAMP server. The installation of both servers are very easy and differ from each other. LAMP means Linux Apache Mysql Php, and WAMP is for Windows. WAMP server installs automatically(installer),you are able to use server without touching setting files. While LAMP server installs with commands. Here, I am going to show how to install LAMP server through Terminal on Ubuntu. LAMP Installation: To install LAMP server, open up a Terminal window(Ctrl+Alt+t), and type the following commands. All commands have written in italic words and remember Terminal commands are case sensitive!! To install Apache: sudo apt-get install apache2 Now to confirm the installation of Apache2 open http://127.0.0.1 in your web browser, you will see It Works! default page of Apache. To install Mysql: sudo apt-get install mysql-server At the installation you be will asked to provide a root password for Mysql. To install php: sudo apt-get install php5 libapache2-mod-php5 After this installation restart Apache [sudo /etc /init.d/apache2 restart] don’t write brackets. Now make a phpinfo.php file and save that in /var/www to do this use [sudo gedit /var/www/phpinfo.php] write a code in this file Now open http://127.0.0.1/phpinfo.php To install phpmyadmin: sudo apt-get install phpmyadmin Two option window will open in installation one for web server reconfigure automatically[select apache2] and second for configure database for phpmyadmin with dbconfig-common [select No]. lamp-server-installation-ubuntu-10.10 You will need to copy the apache.conf to /etc/apache2/conf.d/ from /etc/phpmyadmin/ or the page will return a 404 error. To copy Run- sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d Now you have to restart your apache server sudo /etc/init.d/apache2 restart Now open http://127.0.0.1/phpmyadmin
Package: libapache2-mod-php5
This package provides the PHP5 module for the Apache 2 webserver (as found in the apache2-mpm-prefork package). Please note that this package ONLY works with Apache's prefork MPM, as it is not compiled thread-safe. The following extensions are built in: bcmath bz2 calendar Core ctype date dba dom ereg exif fileinfo filter ftp gettext hash iconv json libxml mbstring mhash openssl pcre Phar posix Reflection session shmop SimpleXML soap sockets SPL standard sysvmsg sysvsem sysvshm tokenizer wddx xml xmlreader xmlwriter zip zlib.source