Re: [FOSS Nepal] Apache 301 redirection issue

2012-02-22 Thread Aadish Shrestha
You can the ServerAlias directive. No need to use the rewrite rules, but
you will need to have access to the server configuration.

On Feb 11, 2012 8:28 AM, Chandan Gupta gupta.chand...@gmail.com wrote:

 Hi All,

 I wanted to redirect all the non www links of my blog to www links
 i.e
 http://linuxcandy.com should come as www.linuxcandy.com
 for which editing .htaccess file in server helped

 RewriteEngine On
 RewriteCond %{HTTP_HOST} !^www\.
 RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

 But, it directs only the home page and not other links.
 For example if I open a link w/o www like


http://linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html


 it doesn't take me to

http://www.linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html

 Am I missing something in above code for this to work ? or I need to add
some more line too ?

 Thanks,
 Chandan

 --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/

-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


Re: [FOSS Nepal] Apache 301 redirection issue

2012-02-22 Thread Chandan Gupta
On Wed, Feb 22, 2012 at 3:55 PM, Aadish Shrestha aad...@gmail.com wrote:

 You can the ServerAlias directive. No need to use the rewrite rules, but
 you will need to have access to the server configuration.

I do have all the access to server configuration... would you mind
explaining that ServerAlias directive.. meanwhile I will try googling :)

Regards,
Chandan

 On Feb 11, 2012 8:28 AM, Chandan Gupta gupta.chand...@gmail.com wrote:
 
  Hi All,
 
  I wanted to redirect all the non www links of my blog to www links
  i.e
  http://linuxcandy.com should come as www.linuxcandy.com
  for which editing .htaccess file in server helped
 
  RewriteEngine On
  RewriteCond %{HTTP_HOST} !^www\.
  RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
 
  But, it directs only the home page and not other links.
  For example if I open a link w/o www like
 
 
 http://linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html
 
 
  it doesn't take me to
 
 http://www.linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html
 
  Am I missing something in above code for this to work ? or I need to add
 some more line too ?
 
  Thanks,
  Chandan
 
  --
  FOSS Nepal mailing list: foss-nepal@googlegroups.com
  http://groups.google.com/group/foss-nepal
  To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com
 
  Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
  Community website: http://www.fossnepal.org/

  --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/


-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


Re: [FOSS Nepal] Apache 301 redirection issue

2012-02-22 Thread bibekshres...@gmail.com
AFAIK ServerAlias will make both domains serve same content and not do a
redirect. Effectively that would be two different domains service the same
content (not good SEO wise).

Are u sure mod_rewrite is enabled and that for the directory you have
'AllowOverride All' instead of 'AllowOverride None' ?
--
Bibek Shrestha
bibekshrestha at gmail dot com
Twitter: http://twitter.com/bibstha
You mustn't be afraid to dream a little bigger, darling., Eames to
Arthur, Inception 2010



On Wed, Feb 22, 2012 at 4:32 PM, Chandan Gupta gupta.chand...@gmail.comwrote:



 On Wed, Feb 22, 2012 at 3:55 PM, Aadish Shrestha aad...@gmail.com wrote:

 You can the ServerAlias directive. No need to use the rewrite rules, but
 you will need to have access to the server configuration.

 I do have all the access to server configuration... would you mind
 explaining that ServerAlias directive.. meanwhile I will try googling :)

 Regards,
 Chandan

 On Feb 11, 2012 8:28 AM, Chandan Gupta gupta.chand...@gmail.com
 wrote:
 
  Hi All,
 
  I wanted to redirect all the non www links of my blog to www links
  i.e
  http://linuxcandy.com should come as www.linuxcandy.com
  for which editing .htaccess file in server helped
 
  RewriteEngine On
  RewriteCond %{HTTP_HOST} !^www\.
  RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
 
  But, it directs only the home page and not other links.
  For example if I open a link w/o www like
 
 
 http://linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html
 
 
  it doesn't take me to
 
 http://www.linuxcandy.com/2012/02/how-to-install-wordpress-in-ubuntudebain-system-or-server.html
 
  Am I missing something in above code for this to work ? or I need to
 add some more line too ?
 
  Thanks,
  Chandan
 
  --
  FOSS Nepal mailing list: foss-nepal@googlegroups.com
  http://groups.google.com/group/foss-nepal
  To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com
 
  Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
  Community website: http://www.fossnepal.org/

  --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/


  --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/


-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


[FOSS Nepal] Ubuntu Wireless issue in my Dell.

2012-02-22 Thread Ashish Pokharel
Hi,
I am new to LINUX, I have a DELL studio1537. I installed Ubuntu 11.10 in it
alongside windows.
I have a wireless setup and it has a good signal but for some reason i
cannot use the internet in Ubuntu. Down the menu from the network icon it
says something like firmware not found.

Could you please help with this, how do i get the internet running in my
syste. Also please suggest which brand of laptop supports Linux the most?

Ashish

-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


[FOSS Nepal] Copyright law about re-distributing newspaper content

2012-02-22 Thread bibekshres...@gmail.com
Hi Group,

Does anyone know if Newspapers can be redistributed from a separate source
other than the webpage of the newspaper?
What kind of copyright laws cover newspaper contents? Also what about
advertisements in Newspaper? Are they also copyrighted?


--
Bibek Shrestha
bibekshrestha at gmail dot com
Twitter: http://twitter.com/bibstha
You mustn't be afraid to dream a little bigger, darling., Eames to
Arthur, Inception 2010

-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


Re: [FOSS Nepal] Ubuntu Wireless issue in my Dell.

2012-02-22 Thread Avash Mulmi
Can you please post the output of:

lspci | grep Network
so that we can know the chipset of your wireless card and give you proper
solution.

As, I have seen and heard, almost all thinkpads support Linux the most.


On Wed, Feb 22, 2012 at 12:53 PM, Ashish Pokharel clubor...@gmail.comwrote:

 Hi,
 I am new to LINUX, I have a DELL studio1537. I installed Ubuntu 11.10 in
 it alongside windows.
 I have a wireless setup and it has a good signal but for some reason i
 cannot use the internet in Ubuntu. Down the menu from the network icon it
 says something like firmware not found.

 Could you please help with this, how do i get the internet running in my
 syste. Also please suggest which brand of laptop supports Linux the most?

 Ashish

 --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/




-- 
Avash Mulmi
OLPC Volunteer
http://support.laptop.org/

-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/


Re: [FOSS Nepal] Ubuntu Wireless issue in my Dell.

2012-02-22 Thread Ashish Pokharel
Actually i googled a lot and found the solution. It was becoz i had b43
driver and ubuntu tried to use it with its own driver which caused the
problem.

I installed firmware b43 using a wired network and removed bcmwl.

Thankyou anyways. :)
On Feb 22, 2012 4:00 PM, Avash Mulmi avashmu...@gmail.com wrote:

 Can you please post the output of:

 lspci | grep Network
 so that we can know the chipset of your wireless card and give you proper
 solution.

 As, I have seen and heard, almost all thinkpads support Linux the most.


 On Wed, Feb 22, 2012 at 12:53 PM, Ashish Pokharel clubor...@gmail.comwrote:

 Hi,
 I am new to LINUX, I have a DELL studio1537. I installed Ubuntu 11.10 in
 it alongside windows.
 I have a wireless setup and it has a good signal but for some reason i
 cannot use the internet in Ubuntu. Down the menu from the network icon it
 says something like firmware not found.

 Could you please help with this, how do i get the internet running in my
 syste. Also please suggest which brand of laptop supports Linux the most?

 Ashish

 --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/




 --
 Avash Mulmi
 OLPC Volunteer
 http://support.laptop.org/


  --
 FOSS Nepal mailing list: foss-nepal@googlegroups.com
 http://groups.google.com/group/foss-nepal
 To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

 Mailing List Guidelines:
 http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
 Community website: http://www.fossnepal.org/


-- 
FOSS Nepal mailing list: foss-nepal@googlegroups.com
http://groups.google.com/group/foss-nepal
To unsubscribe, e-mail: foss-nepal+unsubscr...@googlegroups.com

Mailing List Guidelines: 
http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines
Community website: http://www.fossnepal.org/