Elxis CMS Forum

Support => General => Topic started by: armpouniotis on February 06, 2013, 15:21:48

Title: Elxis Nautilus with android tablet
Post by: armpouniotis on February 06, 2013, 15:21:48
Hi All !

I was trying to log in to the admin zone in Elxis Nautilus using my android tablet, but unfortunately I got Elxis error page :D

Is there any solution to that ?

Thank you in advance
Christos
Title: Re: Elxis Nautilus with android tablet
Post by: nikos on February 07, 2013, 21:53:00
If your site is online and you see it on front-end by your tablet, then you should see and the admin zone.
Title: Re: Elxis Nautilus with android tablet
Post by: armpouniotis on February 08, 2013, 00:02:18
I also tested it on Apple iPad, and I get the same message...

Chris
Title: Re: Elxis Nautilus with android tablet
Post by: datahell on February 08, 2013, 08:34:54
What this error page says? Any message or error code?

Note: The administration area has been designed only for desktop browsers.
Title: Re: Elxis Nautilus with android tablet
Post by: armpouniotis on February 08, 2013, 13:20:23
datahell

Yes ! I was trying to access the administration zone using my tablet...

Unfortunately, I got a message saying that I can't access it !

Christos
Title: Re: Elxis Nautilus with android tablet
Post by: datahell on February 08, 2013, 13:39:55
I guess you got that message from the tablet, not Elxis, because Elxis does display any "can't access" messages.
If the message is from elxis (an error screen for example) type the exact error message.
Title: Re: Elxis Nautilus with android tablet
Post by: datahell on February 09, 2013, 14:17:12
I checked yesterday the administration area with my andoid tablet and works perfect. The navigation is easy, grids are easy tomanage with touches, buttons are also easy to touch without having to use zoom. I dont see any problem...
Title: Re: Elxis Nautilus with android tablet
Post by: armpouniotis on February 09, 2013, 16:17:16
Sorry for my delay reply !

a) I also checked it with my android tablet and it works also perfect !
b) I checked it using Apple ipad and I got this message:

Λυπουμαστε, λέει, αλλά η κονσόλα διαχείρισης δεν είναι προσβάσιμη σε συσκευές χειρός...

Christos
Title: Re: Elxis Nautilus with android tablet
Post by: datahell on February 09, 2013, 17:09:16
The following user agents/browsers/OSs are considered by Elxis "mobile devices":

BlackBerry
Windows CE
Pocket Internet Explorer
Opera Mini
Nokia Browser
Nokia S60 OSS Browser
iPhone
iPad
iPod
Android

As you see the default "Android" browser is between these. But if you use Aurora (recommended) or firefox for android it doesn't get marked as mobile device.

By default Elxis denies access to mobile devices in the administration console as it hasn't been built for such devices (although it works good).
You can overcome this restriction in several ways.

1. Mark ipad as non mobile device.
open file includes/libraries/elxis/helpers/browser.helper.php
Go to line 594 and change this:
$this->is_mobile = true;
into this:
$this->is_mobile = false;

2. Enable access to the administration area to all mobile devices
open file includes/libraries/elxis/exit.class.php
change lines 465-467 from this:
      if ($ismobile) {
         $page->message = $eLang->get('SORRY_ADMIN_NO_MOBILE');
      } else if ($message == 1) {
To this:
      //if ($ismobile) {
      //   $page->message = $eLang->get('SORRY_ADMIN_NO_MOBILE');
      if ($message == 1) {

Also change line 513 from this:
include(ELXIS_PATH.'/templates/'.$tpl.'/alogin.mobile.php');
to this:
include(ELXIS_PATH.'/templates/'.$tpl.'/alogin.php');
Title: Re: Elxis Nautilus with android tablet
Post by: armpouniotis on February 09, 2013, 21:35:18
Thank you datahell !

I will try one of the options you recomend me !

And by the way.

The new Elxis Version (Nautilus) is almost excellent !!!

Well done !

Christos
Title: Re: Elxis Nautilus with android tablet
Post by: mgrc on February 11, 2013, 07:19:42
Nice! Making websites on my phone.
 ;)