
	Scheduled Maintenance: 10-11-2025 Electricity company maintenance between 09:00 and 15:00.
3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Browser & OS in Viewtopic
- 
				killfrenzy
 
- Users 
- Posts: 118
- Joined: 06 Feb 2016, 19:22
Re: Browser & OS in Viewtopic
I tried two times but still doesn't appear in my forum. I'm using PBwow styledmzx wrote: 30 Jun 2015, 15:49 Extension Name: Browser & OS in Viewtopic
Author: dmzx special thanks to martin
Extension Description:
This extension shows browser icon and OS icon in viewtopic.
Works with new made posts and older posts will be indicated like thisuntill you edit the post.

Added Windows 10 and Spartan browser
There's nothing show in PBWOW3 style under prosilver?
Screenshots:
Older posts are indicated like this:
Extension Download:Installation:
- Download-link
- Browser-OS in Viewtopic v1.0.1
- Download the latest release.
- Unzip the downloaded release, and change the name of the folder to `browsericon`.
- In the `ext` directory of your phpBB board, create a new directory named `dmzx` (if it does not already exist).
- Copy the `browsericon` folder to `/ext/dmzx/` if done correctly, you'll have the main extension class at (your forum root)/ext/dmzx/browsericon/composer.json
- Navigate in the ACP to `Customise -> Manage extensions`
- Look for `Browser & OS in Viewtopic` under the Disabled Extensions list, and click its `Enable` link.
Compilation of Android Roms, Recoverys, Apps, Games and Tricks
Visit my blog http://androidcribs.com

			
						Visit my blog http://androidcribs.com
- Androidcribs.com
- Androidcribs

- 
				dmzx
 
- Founder 
- Posts: 6469
- Joined: 13 Jan 2014, 21:45
Re: Browser & OS in Viewtopic
Then maybe the event is not correct in your style.
Will contact you later to check some things.
			
			
									
						
										
						Will contact you later to check some things.
- 
				killfrenzy
 
- Users 
- Posts: 118
- Joined: 06 Feb 2016, 19:22
Re: Browser & OS in Viewtopic
Thanks Sir. Did you fix already?dmzx wrote: 14 Mar 2016, 18:46 Then maybe the event is not correct in your style.
Will contact you later to check some things.
- 
				sakkiotto
 
- Users 
- Posts: 7
- Joined: 31 Jul 2015, 06:03
Re: Browser & OS in Viewtopic
Some fix for tapatalk posters? after 3.1.7 or 3.1.8 update this code not works (perhaps because tapatalk update?)
			
			
									
						
										
						Code: Select all
	// Detect Tapatalk
   if ($browser == 'Tapatalk')
   {
      if ($browser_version != '')
      {
         $ver = substr($browser_version, 0, 1);
         
         if ($ver >= 2)
         {
            $browser .= ' '. $ver;
            $browser_version = '';
         }
      }
   }
   else if (!empty($browser_version) && $browser_version == '3.5.7')
   {
      if ($browser == 'Firefox')
      {
         $browser = 'Tapatalk';
         $browser_version = '';
      }
   }- 
				Peralta
 
- Donator 
- Posts: 190
- Joined: 13 Dec 2014, 17:04
Re: Browser & OS in Viewtopic
How to adjust to recognize M$ Edge?
User agent:
			
			
									
						
							User agent:
Code: Select all
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)
 Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586I speak spanish. Sorry for my bad english.
			
						- 
				dmzx
 
- Founder 
- Posts: 6469
- Joined: 13 Jan 2014, 21:45
Re: Browser & OS in Viewtopic
This should be in like:Peralta wrote: 28 Jun 2016, 20:09 How to adjust to recognize M$ Edge?
User agent:
Code: Select all
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586
Code: Select all
// Edge to Spartan
	if ($browser == 'Edge')
	{
		$browser = 'Spartan';
	}- 
				taledus
 
- Users 
- Posts: 83
- Joined: 19 Jun 2016, 05:47
Re: Browser & OS in Viewtopic
Hey dmzx, I think it would be great if you could somehow adapt this mod and turn it into a "Favorites" type mod.  Users could select their favorite OS, Browser, Games system, and a grip of other favorite things, which would display similarly.
That would help with the issue of a moderator editing and their information displaying instead of the OP.
			
			
									
						
										
						That would help with the issue of a moderator editing and their information displaying instead of the OP.
- 
				Null
 
- Users 
- Posts: 125
- Joined: 09 Oct 2015, 06:03
Re: Browser & OS in Viewtopic
Will this extension have an update with all these adjustments?
			
			
									
						
										
						- 
				dmzx
 
- Founder 
- Posts: 6469
- Joined: 13 Jan 2014, 21:45
Re: Browser & OS in Viewtopic
Need to check on that, but that will a other extension then.taledus wrote: 28 Jun 2016, 23:15 Hey dmzx, I think it would be great if you could somehow adapt this mod and turn it into a "Favorites" type mod. Users could select their favorite OS, Browser, Games system, and a grip of other favorite things, which would display similarly.
That would help with the issue of a moderator editing and their information displaying instead of the OP.
This one not.
- 
				ircfc
 
- Users 
- Posts: 61
- Joined: 04 Jun 2016, 08:32
Re: Browser & OS in Viewtopic
Hello
Please update this plugin for old threads
At the same time that Windows-browser or by putting a new thread was specified to be applied to old threads
Thanks
Bye
			
			
									
						
										
						Please update this plugin for old threads
At the same time that Windows-browser or by putting a new thread was specified to be applied to old threads
Thanks
Bye
- 
				ZippeL
 
- Users 
- Posts: 20
- Joined: 20 Aug 2016, 06:37
Re: Browser & OS in Viewtopic
Code: Select all
UPDATE `your_db`.`prefix_yourtable` SET `user_agent`='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36' WHERE `user_agent` is NULL;- 
				dmzx
 
- Founder 
- Posts: 6469
- Joined: 13 Jan 2014, 21:45
Re: Browser & OS in Viewtopic

[ Post made via Samsung Galaxy S4 ]


 
 


 
 







 
 



