GolfHos
 
*
March 28, 2024, 07:34:30 PM
Username: Password: Duration:

mobile problems

 
Pages: 1 [2]   Go Down
  Print  
Author Topic: mobile problems  (Read 8358 times)
0 Members and 1 Lurker/Spider are viewing this topic.
stroh
Sleeveless Hoodie
From: Impact Crater Springs, CA

Karma: 155
Posts: 16135
Offline Offline

We're doomed!

View ProfileIgnore this user
Re: mobile problems
« Reply #15 on: June 30, 2008, 09:56:07 AM »

There's something I want to try, but I won't be able to push it out until tonight.

Now that's low hanging fruit.
Logged Return to Top
dystopia
Amazing Technicolor Dreamcoat
From: Silicon Valley

Karma: 94
Posts: 7929
Offline Offline


View ProfileIgnore this user
Re: mobile problems
« Reply #16 on: June 30, 2008, 10:08:35 AM »

 Shocked  Anonymous
Logged Return to Top
Clive
Full Metal Jacket

Karma: 77
Posts: 4358
Offline Offline


View ProfileIgnore this user
Re: mobile problems
« Reply #17 on: June 30, 2008, 10:16:39 AM »

There's something I want to try, but I won't be able to push it out until tonight.
Logged Return to Top
dystopia
Amazing Technicolor Dreamcoat
From: Silicon Valley

Karma: 94
Posts: 7929
Offline Offline


View ProfileIgnore this user
Re: mobile problems
« Reply #18 on: June 30, 2008, 10:31:24 AM »

<--- wishicouldŝhit
Logged Return to Top
stroh
Sleeveless Hoodie
From: Impact Crater Springs, CA

Karma: 155
Posts: 16135
Offline Offline

We're doomed!

View ProfileIgnore this user
Re: mobile problems
« Reply #19 on: June 30, 2008, 10:32:32 AM »

LOL   Grin
Logged Return to Top
dystopia
Amazing Technicolor Dreamcoat
From: Silicon Valley

Karma: 94
Posts: 7929
Offline Offline


View ProfileIgnore this user
Re: mobile problems
« Reply #20 on: June 30, 2008, 05:19:20 PM »

Ah, I see what's going on now.  There are actually three different mobile versions of this forum that could show up.

wap
http://www.dystopia.com/r...ex.php?topic=8527&wap

wap2
http://www.dystopia.com/r...x.php?topic=8527&wap2

imode
http://www.dystopia.com/r....php?topic=8527&imode

Code:
// Determine if this is using WAP, WAP2, or imode.  Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
$_REQUEST['wap2'] = 1;
elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
{
if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
$_REQUEST['imode'] = 1;
else
$_REQUEST['wap'] = 1;
}

There are several workarounds we could do.  One idea is to forget the mobile versions for your phone and just give you the normal, full site.  Or I could tweak your mobile version to display images and links.
« Last Edit: June 30, 2008, 05:28:26 PM by dystopia » Logged Return to Top
stroh
Sleeveless Hoodie
From: Impact Crater Springs, CA

Karma: 155
Posts: 16135
Offline Offline

We're doomed!

View ProfileIgnore this user
Re: mobile problems
« Reply #21 on: July 01, 2008, 05:12:21 AM »

Wow.  That last post really demonstrates to me just how less than little I know about computers.   Sad  I really did get left behind the technology wave.

I suppose it's somewhat relative in as much as I am very proficient in my field of expertise, and can speak in a language that others would feel equally lost, but still.... Undecided
Logged Return to Top
gleek
Flak Jacket

Karma: 107
Posts: 9510
Offline Offline

E chu ta!

View ProfileIgnore this user
Re: mobile problems
« Reply #22 on: July 01, 2008, 09:16:17 AM »

Wow.  That last post really demonstrates to me just how less than little I know about computers.   Sad  I really did get left behind the technology wave.

I suppose it's somewhat relative in as much as I am very proficient in my field of expertise, and can speak in a language that others would feel equally lost, but still.... Undecided

Take heart, stroh. At least you understand what "HTFU" means.
Logged Return to Top

Woman, open the door, don't let it sting. I wanna breathe that fire again.
gleek
Flak Jacket

Karma: 107
Posts: 9510
Offline Offline

E chu ta!

View ProfileIgnore this user
Re: mobile problems
« Reply #23 on: July 01, 2008, 09:34:01 PM »

BTW, I can see a rich interface now. However, there is one annoying thing about how the threads are rendering. The posts appear to be rendered inside of a two-column table with the first column containing the information about the poster, and the second column containing the message content. On my phone, the first column is squeezed down to the width of a single character and all the information is rendered vertically like so:

Quote
s
t
r
o
h

L
if
e
l
e
s
s

P
o
s
t
e
r
.
.
.

On a long post, it ain't no thang, since I'd have to scroll down as I read anyway. But on a short Torpedo-esque post, it's rather annoying.*


*more annoying than usual, that is.
Logged Return to Top

Woman, open the door, don't let it sting. I wanna breathe that fire again.
gleek
Flak Jacket

Karma: 107
Posts: 9510
Offline Offline

E chu ta!

View ProfileIgnore this user
Re: mobile problems
« Reply #24 on: July 23, 2009, 07:50:36 AM »

Bumputty bump for reference. Looks like there was at least one tweak that was needed to get the full featured mobile template to render correctly.
Logged Return to Top

Woman, open the door, don't let it sting. I wanna breathe that fire again.
stroh
Sleeveless Hoodie
From: Impact Crater Springs, CA

Karma: 155
Posts: 16135
Offline Offline

We're doomed!

View ProfileIgnore this user
Re: mobile problems
« Reply #25 on: July 23, 2009, 08:05:27 AM »

Bumputty bump for reference. Looks like there was at least one tweak that was needed to get the full featured mobile template to render correctly.


R.L.C.  ?
Logged Return to Top
dystopia
Amazing Technicolor Dreamcoat
From: Silicon Valley

Karma: 94
Posts: 7929
Offline Offline


View ProfileIgnore this user
Re: mobile problems
« Reply #26 on: July 23, 2009, 04:47:50 PM »

There's something I want to try, but I won't be able to push it out until tonight.




Drunk man got two hammered
http://www.thesun.co.uk/s...man-got-two-hammered.html
Quote
These incredible x-rays show how Viorel Firoiu attempted to nail his severe constipation with the help of his handy tools.

The intoxicated 48-year-old turned up at his local hospital complaining of excruciating stomach pain.

Worried doctors, in Orlea, southern Romania, carried out scans and were knocked sideways to find he had not one but TWO hammerheads stuck in his rear end.

Hospital spokeswoman Dr Cristina Bontescu said: "He was a bit drunk and said he had been eating cherries that had left him badly constipated.

"He said he had a few drinks to dull the pain and then came up with the idea of poking a hammerhead up his backside in the hope of sorting out the constipation.

"But the hammerhead got stuck and then he came up with the idea of using a second hammerhead in order to try and get out the first - but then he lost the second one as well."
...
(more...)
Logged Return to Top
Pages: 1 [2]   Return to Top
  Print  
 
Jump to:  

Related Posts
nfl week 9 spoilers thread
romo on 3rd down is a lot like big ben was his 1st 2 seasons...  mobile, a
by Aske

I've just joined the 20th century and brought a mobile (cell) phone!!!
I finally brought a mobile phone.I am quite sad, as I got very excited when I re
by Jules

More financial problems for the rich and famous
his problems fell on chewed off ears.
by Aske

no problems here [Politics/Religion]
http://thinkprogress.org/2008/08/10/bush-i-dont-see-america-having-problems/
by Aske

 


 
  Powered by SMF | SMF © 2001-2009, Lewis Media

Dilber MC Theme by HarzeM