Showing posts with label enable. Show all posts
Showing posts with label enable. Show all posts

Wednesday, February 22, 2017

Enable 3D desktop effects in ubuntu 10 10

Enable 3D desktop effects in ubuntu 10 10


3d_desktop_effects_in_ubuntu_10_10



Ubuntu 10.10 Maverick Meerkat or any Linux Based Operating System which uses GNOME or KDE as Desktop can enable funky 3D effects in a couple of clicks.So this post will eventually lead to the explanation of 3D effects on Ubuntu 10.10.To generate some elegant 3D effects ‘Compiz’ is used.Compiz is a compositing manager or in other words compiz enhances the overall user interaction by adding some fancy effects to your windows e.g Desktop Cube or Expo view.The other important point is that this will run with almost any hardware configuration.

On Ubuntu 10.10,compiz is partially installed only few components needed to be installed in order to work everything properly.Compiz Configure Settings Manager(CCSM) is specifically required to configure and manage the 3d effects.You can install it either from Command Line or from Synaptic Package Manager.

From Command Line
Open the terminal and Type the following command in the terminal followed by your ubuntu login password.

sudo apt-get install compiz compizconfig-settings-manager
 
That’s All ..you are done!

From Synaptic Package Manager
Search for ‘ccsm’ or ‘compiz’ in the quick search bar of Synaptic Package Manager.Then Mark the packages you Required and click on ok if it asks for dependencies.Next,click on Apply button to begin the installation procedure….and wait until the installation step is finished.

Configuring Compiz for 3D Effects
After installing compiz and it’s other components like setting manager you need to configure it i.e you have to select which features you want or not if yes then how…..Rest of thing is self explanatory just move to System->Preferences->CompizConfig-Setting-Manager and change the settings as you like ..in a couple of clicks.I think you are enjoying funky 3D effects …still confused ..see here 3D Effects in Ubuntu.

Available link for download

Read more »

Saturday, February 11, 2017

Enable htaccess Apache in Ubuntu

Enable htaccess Apache in Ubuntu



Enable htacces for directories

we know that htaccess permission must on apache web server like making SEF urls, directory permissions..etc.here we discuss about how to check .htaccess enabled.
Before we begin this tutorial, please make sure you make a backup copy of the originalhttpd.conf apache configuration file located in apache installation folder in case we make a mistake, this way we can always go back to the original configuration file
Now open
httpd.conf
file with note pad and find the below text
<directory />
Options FollowSymLinks
AllowOverride none
Order deny,allow
Deny from all
Satisfy all
</directory>
Then replace AllowOverride none to AllowOverride All. Modified version looks as below
<directory />
Options FollowSymLinks
AllowOverride all
Order deny,allow
Deny from all
Satisfy all
</directory>
Above change tells the apache to use .htaccess as per directory bases.
Now we can use .htaccess files .

Remember

Remember while uploading .htaccess file to remote server make sure the file transfer in ASCII mode, generally with windows operating system FTP programs use binary mode.
Generally FTP programs doesn’t display the .htaccess files by default ,we must force the FTP program to show hidden files like .htaccess files.
When you save .htaccess file with note pad it saves as .htaccess.txt .Make sure .htaccess is a file extension not a file name with empty name.


Available link for download

Read more »

Monday, January 30, 2017

Enable Autoplay for YouTube Embedded videos

Enable Autoplay for YouTube Embedded videos


As you all know that Youtube is worlds most popular video sharing website, Over 3 billion videos watched every single day on Youtube, Every internet user knows what is Youtube due to its popularity. when we want to produce a useful guide or trying to promote any product or services on our blog or website then YouTube is first name which comes in our mind.

Auto-play feature for YouTube embedded video

YouTube Auto-play


YouTube introduce autoplay feature for embedded videos, With this feature Youtube eliminated the need for third party plugin.


If you are trying to produce promotional or introductory video, you might be looking for a way to autoplay video as and when visitors land on your pages instead of asking them to click and start the video. If you think autoplay would be the right choice for you then have a look below procedure,

Turn Auto-play ON


1. First off, grab your embedded video code.
2. you would just add the parameter at the end of the Youtube URL. Start with the “?” symbol to indicate you are adding parameter.

For example one embedded code displayed below,

<iframe width=”560? height=”315? src=”http://www.youtube.com/embed/V3oJR5IAMxM” frameborder=”0? allowfullscreen></iframe>

Now you need to do to enable autoplay is to add the parameter “?autoplay=1? to the end of the video URL in the embed code

<iframe width=”560? height=”315? src=”http://www.youtube.com/embed/V3oJR5IAMxM?autoplay=1” frameborder=”0? allowfullscreen></iframe>

Now Youtube video will start autoplay without waiting for user response.

Note - Dont apply autoplay on multiple videos on same pages.

Available link for download

Read more »