Giter Site home page Giter Site logo

Comments (13)

tcanani avatar tcanani commented on June 15, 2024

Same here, after updating Mautic, the Whitelabeler couldn't find the absolute path. All permissions are set correctly.

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

This does not support 2.14.1 yet. Please make sure to read the requirements to see the compatible versions. I will update it as soon as possible for 2.14.1.

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

This should work now for 2.14.1. Thanks.

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

does not support 2.15.0??

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

Yes, @pranjal2892 it does work with 2.15.0.

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

I have everything in my mautic root directory.
Path to my mautic is /var/www/html/mautic.
It contains package.json, LICENCE.txt
And my Version.txt is in app directory containing text 2.15.0-dev.
still when I run mautic on localhost as well as my server. Every time a message flashes "Mautic installation not found here." and "Mautic installation not found at this URL".
I even cleared my cache directory several times. And tried every possible solution.
Please Help !!

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

It does not officially support development versions. You can try replacing "2.15.0-dev" with "2.15.0" and running it. I would backup your files first.

If this doesn't work, look at the error log for Apache and see what the errors are saying there.

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

Thankyou for reply @nickian .
I am running nginx.

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

019/03/20 14:34:12 [error] 851#851: *1018 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined offset: 1 in /var/www/html/mautic/mautic-whitelabeler/index.php on line 57" while reading response header from upstream, client: ::1, server: localhost, request: "GET /mautic-whitelabeler/index.php?q=url&url= HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.2-fpm.sock:", host: "localhost", referrer: "http://localhost/mautic-whitelabeler/index.php"

This is the error nginx showing!!

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

I'm not sure why it's saying this is the request: GET /mautic-whitelabeler/index.php?q=url&url= HTTP/1.1

The &url= should be the URL to your Mautic files. Do you have the cURL PHP extension installed?

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

Yes, it is installed !!

from mautic-whitelabeler.

nickian avatar nickian commented on June 15, 2024

Ok, what if you try just putting this code in a PHP file somewhere on the same server and running it in your browser. What do you get?

$url = 'http://my-mautic-url.com';

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

$curl = curl_init();
curl_setopt_array($curl, array(
    CURLOPT_URL => $url.'/LICENSE.txt',
    CURLOPT_HEADER => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_NOBODY => true,
));

echo '<pre>';
print_r(curl_exec($curl));
echo '</pre>';
curl_close($curl);

from mautic-whitelabeler.

pranjal2892 avatar pranjal2892 commented on June 15, 2024

HTTP/1.1 200 OK
Server: nginx/1.14.0 (Ubuntu)
Date: Fri, 22 Mar 2019 05:20:31 GMT
Content-Type: text/plain
Content-Length: 38407
Last-Modified: Tue, 19 Mar 2019 05:52:08 GMT
Connection: keep-alive
ETag: "5c908388-9607"
Accept-Ranges: bytes

This is the response I got !!

from mautic-whitelabeler.

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.