Sponsored Content
Full Discussion: Google chrome not work
Operating Systems Linux Ubuntu Google chrome not work Post 303012432 by bakunin on Sunday 4th of February 2018 10:32:28 AM
Old 02-04-2018
In addition to the questions my colleague hicksd8 asked:

- do you have any other browser (Firefox, ...) which works?

- do you use a proxy?

I hope this helps.

bakunin
 

8 More Discussions You Might Find Interesting

1. Web Development

Helpful Tip: Forcing Google to www.google.com

Helpful Tip! Sometimes when we are in another country, Google redirects our request for www.google.com to: www.google.co.in or to: www.google.co.th If you want to force Google to go to the US site, use: www.google.com/webhp (1 Reply)
Discussion started by: Neo
1 Replies

2. Google Chrome OS

Google Chrome For Linux!!!

Its not stable yet but it is in progress guys (: Early Access Release Channels ?(Chromium Developer Documentation)? (1 Reply)
Discussion started by: Dervish
1 Replies

3. Google Chrome OS

google chrome os

i want to install google chrome , but i don't from where can i get the source (2 Replies)
Discussion started by: linux_land
2 Replies

4. Google Chrome OS

Google Chrome Operating System

Google Chrome OS is an open source Google project and will be available to use at no cost in 2010, initially be targeted at netbooks. In 2009, Google will open-source Chrome OS code. The software architecture is Google Chrome running within a new window manager on top of the Linux kernel. ... (20 Replies)
Discussion started by: Neo
20 Replies

5. Google Chrome OS

Google Chrome Mobile?

I know that Google Chrome came out with the Android under a Unix based system, but did it come out yet for Windows Mobile? I have Windows Mobile 6 on my device. (0 Replies)
Discussion started by: Anna Hussie
0 Replies

6. Post Here to Contact Site Administrators and Moderators

Google Chrome is blocking access to UNIX.com

For some reason Google Chrome sees unix.com as dangerous and has start to block it. I need to select advanced and continue on own risk. Can you make an effort to remove unix.com form the list of dangerous site from Google. IE has not this problem. (5 Replies)
Discussion started by: Jotne
5 Replies

7. Red Hat

Install google chrome browser in RHEL

Hi All, This is my operating system. Red Hat Enterprise Linux Server release 5.7 (Tikanga). This is a64 bit version # cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.7 (Tikanga) # uname -a Linux oim11gdevlab 2.6.18-274.el5 #1 SMP Fri Jul 8 17:36:59 EDT 2011 x86_64... (2 Replies)
Discussion started by: pandu345
2 Replies

8. Red Hat

How to install google-chrome?

Am trying to Install Google-Chrome browser from my server to local machine.. I tried.. # yum install google-chrome-stable* (1 Reply)
Discussion started by: Adhi
1 Replies
GET_BROWSER(3)								 1							    GET_BROWSER(3)

get_browser - Tells what the user's browser is capable of

SYNOPSIS
mixed get_browser ([string $user_agent], [bool $return_array = false]) DESCRIPTION
Attempts to determine the capabilities of the user's browser, by looking up the browser's information in the browscap.ini file. PARAMETERS
o $user_agent - The User Agent to be analyzed. By default, the value of HTTP User-Agent header is used; however, you can alter this (i.e., look up another browser's info) by passing this parameter. You can bypass this parameter with a NULL value. o $return_array - If set to TRUE, this function will return an array instead of an object. RETURN VALUES
The information is returned in an object or an array which will contain various data elements representing, for instance, the browser's major and minor version numbers and ID string; TRUE/ FALSE values for features such as frames, JavaScript, and cookies; and so forth. The cookies value simply means that the browser itself is capable of accepting cookies and does not mean the user has enabled the browser to accept cookies or not. The only way to test if cookies are accepted is to set one with setcookie(3), reload, and check for the value. CHANGELOG
+--------+--------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+--------------------------------------------------+ | 4.3.2 | | | | | | | The optional parameter $return_array was added. | | | | +--------+--------------------------------------------------+ EXAMPLES
Example #1 Listing all information about the users browser <?php echo $_SERVER['HTTP_USER_AGENT'] . " "; $browser = get_browser(null, true); print_r($browser); ?> The above example will output something similar to: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040803 Firefox/0.9.3 Array ( [browser_name_regex] => ^mozilla/5.0 (windows; .; windows nt 5.1; .*rv:.*) gecko/.* firefox/0.9.*$ [browser_name_pattern] => Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:*) Gecko/* Firefox/0.9* [parent] => Firefox 0.9 [platform] => WinXP [browser] => Firefox [version] => 0.9 [majorver] => 0 [minorver] => 9 [cssversion] => 2 [frames] => 1 [iframes] => 1 [tables] => 1 [cookies] => 1 [backgroundsounds] => [vbscript] => [javascript] => 1 [javaapplets] => 1 [activexcontrols] => [cdf] => [aol] => [beta] => 1 [win16] => [crawler] => [stripper] => [wap] => [netclr] => ) NOTES
Note In order for this to work, your browscap configuration setting in php.ini must point to the correct location of the browscap.ini file on your system. browscap.ini is not bundled with PHP, but you may find an up-to-date php_browscap.ini file here. While browscap.ini contains information on many browsers, it relies on user updates to keep the database current. The format of the file is fairly self-explanatory. PHP Documentation Group GET_BROWSER(3)
All times are GMT -4. The time now is 07:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy