[DEV] Mobile phpBB 3

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Suggested Hosts
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

Whit this mod, I can put my forum in the apple/android store to download it as a app? If so, how? Thank you.
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

pink86wt wrote:Whit this mod, I can put my forum in the apple/android store to download it as a app? If so, how? Thank you.
No, you can not, because my module is a mobile web solution, not a mobile app. (binary executable file/app. store) solution.

While, my module is easy to use than app. store one: after webmaster installing this module, end users open their (mobile) browsers, input "http://m.yoursite.com" in address bar, then they can have the mobile friend phpBB.

Any question, feel free to ask me.
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

Thank you!
Just another question: users can be able to register to my forum through iphone? I don't see the register button, there's only log-in.
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

pink86wt wrote:Thank you!
Just another question: users can be able to register to my forum through iphone? I don't see the register button, there's only log-in.
I am sorry register and private message are not available at this time, this module is still under development.
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

Ok, thanks again.
Last question, I promise :)
How do I redirect automatically to the jquery version instead of the html one?
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

pink86wt wrote:Ok, thanks again.
Last question, I promise :)
How do I redirect automatically to the jquery version instead of the html one?
Questions are always welcome.

Regarding your question, you can bookmark the jQuery Mobile index page after you get into jQuery Mobile theme. Next time, open this bookmark instead of http://m.yoursite.com .

Actually, there is device detection and redirection function in my web site: flexplat.com . While, sometimes this function does not work, because the detection depends web browser User Agent string; some iPhone/Android browsers do not include "iPhone/Android" within their User Agent string, so end users are redirect to xHTML theme by default.
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

I'm using a php redirection.

http://auditrisknet.net/phpbb3/mobile.php <-- this redirect to the html version

mobile.php

Code: Select all

<?php
header('Location: http://flexplat.com/index.php?flx-system=mophpbb3&flx-url=http://auditrisknet.net/phpbb3/index.php');
?>
http://auditrisknet.net/phpbb3/mobil.php <-- this should redirect to the jquery version, but it doesn't work. (I've tried it only on my pc)

mobil.php

Code: Select all

<?php
header('http://flexplat.com/index.php?flx-system=mophpbb3&flx-style=jquery-mobile&flx-url=http://auditrisknet.net/phpbb3/index.php&sid=ee2857c5ee717f6f661ddcc2334b4899');
?>

However, doesn't this script add automatically the device detection there http://auditrisknet.net/phpbb3/ ? I have to do something more?
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

pink86wt wrote:I'm using a php redirection.

http://auditrisknet.net/phpbb3/mobile.php <-- this redirect to the html version

mobile.php

Code: Select all

<?php
header('Location: http://flexplat.com/index.php?flx-system=mophpbb3&flx-url=http://auditrisknet.net/phpbb3/index.php');
?>
http://auditrisknet.net/phpbb3/mobil.php <-- this should redirect to the jquery version, but it doesn't work. (I've tried it only on my pc)

mobil.php

Code: Select all

<?php
header('http://flexplat.com/index.php?flx-system=mophpbb3&flx-style=jquery-mobile&flx-url=http://auditrisknet.net/phpbb3/index.php&sid=ee2857c5ee717f6f661ddcc2334b4899');
?>

However, doesn't this script add automatically the device detection there http://auditrisknet.net/phpbb3/ ? I have to do something more?
To make the jQuery Mobile redirection work, the code should be:

Code: Select all

<?php
header('Location: http://flexplat.com/index.php?flx-system=mophpbb3&flx-style=jquery-mobile&flx-url=http://auditrisknet.net/phpbb3/index.php');
?>
You lost "Location", and the "sid" is not necessary.

You need not install any "device detection and redirection" script, you only need to let your forum users remember the following url: "http://auditrisknet.net/phpbb3/mobile.php".
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

Thank you :)

but there isn't a way to auto-redirect users when the go to http://auditrisknet.net/phpbb3/index.php through theys mobile browsers?
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

pink86wt wrote:Thank you :)

but there isn't a way to auto-redirect users when the go to http://auditrisknet.net/phpbb3/index.php through theys mobile browsers?
There is solution on internet. You can Google to find it. There is one solution in this phpBB forum. The searching key word are: "mobile device detect redirect". (I am sorry I am not good at this topic.)

I recommend you go to http://mobiforge.com/ and search answer there. There are several dedicated articles discussing this topic. You can even raise question in their users forum.

Good luck.
pink86wt
Registered User
Posts: 72
Joined: Thu Apr 28, 2011 1:30 pm

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by pink86wt »

ok, thanks again for your help :)
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

Aruba Release Load 7.1
  • improvement: security improvement
Please update the module from http://mobileonlinestyle.com/mophpbb3-download

For more information, please go to: http://mobileonlinestyle.com/mobile-online-phpbb3
karimla131
Registered User
Posts: 189
Joined: Sat Feb 12, 2011 10:50 pm
Location: Cairo - Egypt
Name: kareem Khalil

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by karimla131 »

hi

i like this mod so much thanks but i want the Arabic

thanks language because i cant find it
karimla131
Registered User
Posts: 189
Joined: Sat Feb 12, 2011 10:50 pm
Location: Cairo - Egypt
Name: kareem Khalil

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by karimla131 »

hi ..

i am sorry it worked great but when i enter any forum or category it gives me this error ::
Fatal error: Cannot redeclare deregister_globals() (previously declared in /home/ricke2/public_html/flexplat/data_capri_7_3/mophpbb3/aruba_7_1/lib/phpbb3/common.php:26) in /home/ricke2/public_html/flexplat/data_capri_7_3/mophpbb3/aruba_7_1/lib/phpbb3/common.php on line 88

and i am sorry but where can i find "device detection and redirection" ... for phpbb




thanks
rickey29
Registered User
Posts: 259
Joined: Tue Apr 27, 2004 11:35 am
Location: Beijing, China

Re: [DEV] Mobile Online phpBB3 (iPhone, Android, iPad friend

Post by rickey29 »

karimla131 wrote:hi ..

i am sorry it worked great but when i enter any forum or category it gives me this error ::
Fatal error: Cannot redeclare deregister_globals() (previously declared in /home/ricke2/public_html/flexplat/data_capri_7_3/mophpbb3/aruba_7_1/lib/phpbb3/common.php:26) in /home/ricke2/public_html/flexplat/data_capri_7_3/mophpbb3/aruba_7_1/lib/phpbb3/common.php on line 88

and i am sorry but where can i find "device detection and redirection" ... for phpbb




thanks
Hi there,

I am sorry for the inconvenience. Could you let me know your forum URL? I would like to debug this issue. You can PM the link if you want.

Regarding "device detection and redirection", go to "http://mobiforge.com", input "detect" in its searching bar, there are several solution/discussion. If you still confuse, feel free to ask me. (I will add "mobile device detection and redirection" to my web page FAQ section, since there are several questions on this topic recently.)

Thanks,

Rickey

Return to “[3.0.x] MODs in Development”