Saturday, 27 October 2012
On 02:59 by Unknown No comments
Rich text editors(RTE) can really save you a lot of work that is for those who do not like going the cms way.The cms comes comes with a RTE.I like the yahoo RTE because it is well documented.You can check it out here to get data from the editor ,just add the handleSubmit option and set it to be true
handleSubmit: true
to make it look like this
<script type="text/JavaScript">
...
Sunday, 14 October 2012
On 07:14 by Unknown No comments
An older version of java was copied into the home directory under .swt. By Creating a symbolic link to /usr/lib/jni/libswt I was able to solve my issue.Run the below command in the terminal to fix it.
ln -s /usr/lib/jni/libswt-* ~/.swt/lib/linux/x86_6...
Monday, 17 September 2012
On 02:54 by Unknown No comments
This bug is so annoying:
To fix it;
click on the info icon before <?php
then select html 4.0 transitional
For Failing to open project with existing sources:
this trying removing the nbproject directory in your project folder and creating a new netbeans project with those existing files.
Another possibility:
If you encounter this on Linux,confirm that you have enough permissions in the...
Sunday, 16 September 2012
On 04:42 by Unknown No comments
right click on the project >properties>run>then change console type to standard out...
Friday, 14 September 2012
On 23:14 by Unknown No comments
1.Install build-essential packageapt-get install build-essential2.Install g++ if not already installedapt-get install g++3.You can now check your g++ versionsudo g++ -v4.Have ...
On 08:59 by Unknown No comments
First,you need to creat the file using gedit,
Then open terminal,
Then change directory to to the file location,
Then type g++ <filename>
This will create a file
Finally,
type ./a.out <the new file&g...
Sunday, 12 August 2012
Wednesday, 25 July 2012
On 23:51 by Unknown No comments
In ubuntu, the root account does exist, However it is not activated by default. Though you should avoid this, but if you want to login using the root account, the this is the workout.
sudo -i
sudo passwd root
replace "passwd" with the password of your choice that you want for the "root" accou...
Sunday, 8 July 2012
On 06:39 by Unknown No comments
Install unrar
Note:The commands work only with a full path to the archive directory.
sudo apt-get install unrar
Using unrar to extract
there are several ways
unrar x file.rar
unrar e file.rar
using unrar to list files in the archive
unrar l file.rar
to test integrity of the archive type,the following command
unrar t file....
On 04:47 by Unknown No comments
Client sided solution
This error can simply be an issue with cookies in your web browser, so either delete all stored cookies or selectively delete them for just the domain/directory where phpMyAdmin is if your browser allows this.
For example, in the current version of Google Chrome at the time of writing this post, you can go into the preferences then select Under the Hood -> Content Settings...
On 03:17 by Unknown No comments
check the file permissions of the file.
This means the file has only read/execute permissions for the owner.
To fix this:you have to change permission with super user(sudo)
"sudo chmod -R 755 /var/www/directory_na...
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/filezillasudo apt-get updatesudo apt-get install filezilla
After installation run FileZilla and use it. Enjoy
source:http://www.n...
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...
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 termi...
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...
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 f...
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 ow...
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...
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://hel...
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...
Wednesday, 30 May 2012
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...
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...
Friday, 2 March 2012
On 07:26 by Unknown No comments
Visit msnbc.com for breaking news, world news, and news about the econ...
Friday, 24 February 2012
On 21:45 by Unknown No comments
(CNN) -- It's a truth of the modern digital age: If
you're using a Web service for free, you're not the customer. You're
probably the product.
The sites we visit, the videos we watch, the purchases we make and
the items we reward with a Facebook "like" or a Google "+1" -- all of
that, and more, eventually melds together into a data set that lets many
of the world's most popular Web companies...
Subscribe to:
Posts (Atom)
Search
Popular Posts
-
(CNN) -- It's a truth of the modern digital age: If you're using a Web service for free, you're not the customer. You're ...
-
Rich text editors(RTE) can really save you a lot of work that is for those who do not like going the cms way.The cms comes comes with a RTE....
-
->http://voices.yahoo.com/changing-permissions-locked-folders-ubuntu-linux-2927907.html ->http://lowfatlinux.com/linux-chmod-chown.htm...
-
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 ...
-
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 Defaul...
-
Install unrar Note:The commands work only with a full path to the archive directory. sudo apt-get install unrar Using unrar to extract t...
-
Client sided solution This error can simply be an issue with cookies in your web browser, so either delete all stored cookies or selecti...
-
PostgreSQL is a powerful object-relational database management system, provided under a flexible BSD-style license.[1] PostgreSQL contains ...
-
This bug is so annoying: To fix it; click on the info icon before <?php then select html 4.0 transitional For Failing to open proje...
-
right click on the project >properties>run>then change console type to standard output
Recent Posts
Sample Text
Blog Archive
-
▼
2012
(37)
-
►
June
(10)
- Installing filezilla on linux
- Netbeans 7.1.2 refuses to include php plugin after...
- Installing a .sh file on ubuntu
- Searching for a grid?
- Installing some Microsoft Office fonts on ubuntu
- Enabling connecting to the Iinternet using a modem...
- Use a javascript confirm box to ask the user if th...
- INSTALLING MYSQL
- SETTING UP PHPMYADMIN
- LAMP
-
►
May
(14)
- reverting a single file on svn
- Enabling writing into the /var/www directory
- SSH Access
- Fatal error: Call to undefined function pg_connect...
- POSTGRE SQL
- Enabling display of php Errors
- working with tar files in ubuntu
- Enabling writing into the var/www directory
- Installing Lamp
- Removing a folder with tis content
- Linux file permissions/Folder locks
- Subversion on Ubuntu
- security on php
- checking for errors
-
►
June
(10)
Sample Text
Powered by Blogger.
Social Icons
Followers
About Me
Featured Posts
Popular Posts
-
(CNN) -- It's a truth of the modern digital age: If you're using a Web service for free, you're not the customer. You're ...
-
Rich text editors(RTE) can really save you a lot of work that is for those who do not like going the cms way.The cms comes comes with a RTE....
-
->http://voices.yahoo.com/changing-permissions-locked-folders-ubuntu-linux-2927907.html ->http://lowfatlinux.com/linux-chmod-chown.htm...
-
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 ...
-
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 Defaul...
-
Install unrar Note:The commands work only with a full path to the archive directory. sudo apt-get install unrar Using unrar to extract t...
-
Client sided solution This error can simply be an issue with cookies in your web browser, so either delete all stored cookies or selecti...
-
PostgreSQL is a powerful object-relational database management system, provided under a flexible BSD-style license.[1] PostgreSQL contains ...
-
This bug is so annoying: To fix it; click on the info icon before <?php then select html 4.0 transitional For Failing to open proje...
-
right click on the project >properties>run>then change console type to standard output