Giter Site home page Giter Site logo

I dont understand about mobile-detect HOT 8 CLOSED

ioempire avatar ioempire commented on June 18, 2024
I dont understand

from mobile-detect.

Comments (8)

microchip8 avatar microchip8 commented on June 18, 2024

it's MobileDetect.php

Not Mobile_Detect.php

from mobile-detect.

serbanghita avatar serbanghita commented on June 18, 2024

@ioempire you downloaded 4.x version which contains the file /src/MobileDetect.php

thank you @microchip8

from mobile-detect.

ioempire avatar ioempire commented on June 18, 2024

Thanks
Now I get this error:

[16-Jan-2024 09:49:03 UTC] PHP Fatal error: Uncaught Error: Class "Detection\Cache\Cache" not found in /home/friudeni/public_html/Mobile-Detect/src/MobileDetect.php:1032
Stack trace:
#0 /home/friudeni/public_html/index.php(30): Detection\MobileDetect->__construct()
#1 {main}
thrown in /home/friudeni/public_html/Mobile-Detect/src/MobileDetect.php on line 1032

In line 30 I have:
$detect = new MobileDetect();

I Use php version 8.0

from mobile-detect.

serbanghita avatar serbanghita commented on June 18, 2024

@ioempire it's because you're not using composer autoload like in this example https://github.com/serbanghita/Mobile-Detect/blob/4.8.x/scripts/example.php

you will have to manually include all dependent files from https://github.com/serbanghita/Mobile-Detect/tree/4.8.x/src

from mobile-detect.

ioempire avatar ioempire commented on June 18, 2024

But what is this line:
require_once DIR . '/../vendor/autoload.php';
vendor and autoload.php is not in the Mobile-Detect directory

from mobile-detect.

ioempire avatar ioempire commented on June 18, 2024

Now my code look like this:
$mobil=0;

include($_SERVER['DOCUMENT_ROOT']."/Mobile-Detect/src/Cache/CacheException.php");
include($_SERVER['DOCUMENT_ROOT']."/Mobile-Detect/src/Cache/Cache.php");
include($_SERVER['DOCUMENT_ROOT']."/Mobile-Detect/src/Cache/CacheItem.php");
include($_SERVER['DOCUMENT_ROOT']."/Mobile-Detect/src/Exception/MobileDetectException.php");
require($_SERVER['DOCUMENT_ROOT']."/Mobile-Detect/src/MobileDetect.php");

use Detection\MobileDetect;
$detect = new MobileDetect();
$detect->setUserAgent();
if( $detect->isMobile() && !$detect->isTablet() )
$mobil =1;

And I get this error:
[16-Jan-2024 10:56:06 UTC] PHP Fatal error: Uncaught Error: Interface "Psr\SimpleCache\CacheInterface" not found in /home/friudeni/public_html/Mobile-Detect/src/Cache/Cache.php:7
Stack trace:
#0 /home/friudeni/public_html/index.php(30): include()
#1 {main}
thrown in /home/friudeni/public_html/Mobile-Detect/src/Cache/Cache.php on line 7

from mobile-detect.

serbanghita avatar serbanghita commented on June 18, 2024

@ioempire 4.8 is meant to be used with composer with composer require mobiledetect/mobiledetectlib, in the above case you're missing a dependency.

I'm sorry for misguiding you, I didn't realised that 4.8 is fully dependent on composer autoload (which is kinda like what modern PHP env looks like).

Just start from scratch use the code from 2.8 branch
https://github.com/serbanghita/Mobile-Detect/tree/2.8.x then you don't need to include anything, see https://github.com/serbanghita/Mobile-Detect/blob/2.8.x/examples/test.php - it's the same detection, but the code is compatible with classic way of manually including the class.

from mobile-detect.

serbanghita avatar serbanghita commented on June 18, 2024

In summary:

4.8 - use composer and example https://github.com/serbanghita/Mobile-Detect/blob/4.8.x/scripts/example.php
2.8.x - you can use classic include - https://github.com/serbanghita/Mobile-Detect/blob/2.8.x/examples/test.php

from mobile-detect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.