Quantcast
Channel: Matomo forums - Latest topics
Viewing all 14008 articles
Browse latest View live

Icecast - undefined index

$
0
0

I had the log import working. But then upgraded to 3.14.0. Today, I imported logs for the last month, and am not seeing any visits. I know there were a bunch the last couple weeks. I am seeing a bunch of these errors reported:
WARNING: /var/www/html/analytics/plugins/IceCastStatistics/Widgets/GetIceCastStatistics.php(221): Notice - Undefined index: /stream - Matomo 3.14.1 - Please report this message in the Matomo forums: https://forum.matomo.org (please do a search first as it might have been reported already) (Module: IceCastStatistics, Action: getIceCastStatistics, In CLI mode: false)

and

WARNING: /var/www/html/analytics/plugins/IceCastStatistics/Widgets/GetIceCastStatistics.php(233): Notice - Trying to access array offset on value of type null - Matomo 3.14.1 - Please report this message in the Matomo forums: https://forum.matomo.org (please do a search first as it might have been reported already) (Module: IceCastStatistics, Action: getIceCastStatistics, In CLI mode: false)

I then tried to update to 3.14.1, but still seeing the errors.

3 posts - 2 participants

Read full topic


Questions about multiple users and dashboards

$
0
0

Hi there,

I was wondering if it would be possible to create multiple ‘sites’ (with various pages) and have separate dashboards for each site and be able to create these programmatically?

So for example, we have a user1 who has 3 pages on a site (site1), page1,page2 and page3.

Then another user (user2) who has the same.

Is it possible to have completely separate dashboards for each user so they can only see their own stats? And could this be done programmatically? (When I say programmatically, I mean generating the tag and creating their dashboard).

Thanks in advance!

1 post - 1 participant

Read full topic

SameSite issue with tracking cookies when using a site inside an iframe

$
0
0

Hello all,
I have the following scenario: I have Matomo tracking set up for a site that is both used directly and inside a different site’s context in an iframe.

Now I have the following problem: since the Matomo tracking cookies (_pk_id.* and _pk_ses.*) are set with a SameSite policy of “Lax”, they are inaccessible for the site inside the iframe. This means that not only is the user not recognized as the same user who is using the site outside the iframe, but each tracking request inside the iframe is issued as a new visit although it still is the same user.

Is there any way I can configure Matomo to set the tracking cookies with a SameSite policy of “None”?

2 posts - 1 participant

Read full topic

Roll Up vs. Website

Scroll-Trigger more scroll values

$
0
0

If i want to trigger on different scroll depths, i need more triggers. It would be nice to add only one trigger and enter the thresholds comma separated.

image

1 post - 1 participant

Read full topic

Scroll Trigger: Read out value

$
0
0

How can i access the value of the fixed percentage added to the trigger:

image

I only can access the “mtm.scrollHorizontalPercentage” value. But this is a float of the current scroll height.

1 post - 1 participant

Read full topic

Add Chart Title to Export as Image

$
0
0

When looking at evolution charts, specifically custom report evolution charts in our case, the chart title is not included when you export as an image. All that is viewed is the key, chart, and x/y axis benchmarks. When I am looking to export several charts for presentations, it would be really great to include the chart’s title. To work around that, I have to take a screenshot of every chart so that I can include the title easily. This results in a user taking up to four or five steps to exporting a chart as an image instead of up to two steps with the current functionality. Considering the title is easily available, I hope that this would not be too big of a lift for the export as an image functionality.

Please let me know if you have any questions or if I can elaborate more!

1 post - 1 participant

Read full topic

How to integrate matomo

$
0
0

how to integrate matomo on your pickleball paddle website ? does it have any effects on speed of website pages.

1 post - 1 participant

Read full topic


Nginx real_ip_recursive with matomo; what to do from multiple sources

$
0
0

Hi. I will try to detail this as easy as possible, maybe this will help more people in the future :

Current setup :

We have an on-premise matomo instance in our corporate environment. It tracks several websites. It resides on a server as a docker container, with another docker container containing an nginx reverse proxy to access matomo (mostly to handle tls).

Current issue :

Some tracked websites are accessed from the internal network (other teams, from 162.0.0.0/8), some are accessed by our users from VPN (from 100.0.0.0/8, some are accessed from the outside world (load balancers IPs are in 150.0.0.0/8). Docker containers talk through 172.0.0.0/8 network (reverse proxy).

We usually either get :
client -> vpn -> reverse proxy -> matomo
client -> internal -> reverse proxy -> matomo
client -> outsideworld -> reverse proxy -> matomo

Currently, Matomo shows these IPs as source in the UI and not the clients IPs. We would like to log the real clients IPs.

Current config :

Regarding proxy configurations (faq/how-to-install/faq_98/) we are using the following in the config.ini.php file :

[General]
; Uncomment line below if you use a standard proxy
proxy_client_headers[] = HTTP_X_FORWARDED_FOR
proxy_host_headers[] = HTTP_X_FORWARDED_HOST

and nginx.conf :

#Matomo nginx config
#made by Quardah Sept 11th 2020
#inspired by : https://github.com/matomo-org/matomo-nginx

server {

    listen 443 ssl;
    server_name matomo.internal.corp.ca;
    access_log /var/log/nginx/matomo.access.log;
    error_log /var/log/nginx/matomo.error.log;
    ssl_certificate /etc/nginx/conf.d/matomo.internal.corp.pem;
    ssl_certificate_key /etc/nginx/conf.d/matomo.key;

    add_header Referrer-Policy origin always; # make sure outgoing links don't show the URL to the Matomo instance
    add_header X-Content-Type-Options "nosniff" always;
    add_header X-XSS-Protection "1; mode=block" always;
    client_max_body_size 0;
    set_real_ip_from 150.0.0.0/8;
    set_real_ip_from 162.0.0.0/8;
    set_real_ip_from 172.0.0.0/8;
    set_real_ip_from 10.0.0.0/8;
    real_ip_header X-Forwarded-For;
    real_ip_recursive on;

    location / {
        proxy_pass         http://172.18.0.3:80/;
        proxy_read_timeout  900;
        proxy_pass_header   Server;
        proxy_cookie_path   ~*^/.* /;
        proxy_set_header    X-Forwarded-Port  $server_port;
        proxy_set_header    X-Forwarded-Proto $http_x_forwarded_proto;
        proxy_set_header    X-Forwarded-For   $remote_addr;
        proxy_set_header    X-Forwarded-Host  $http_host;
    }
}
# vim: filetype=nginx

My Understanding :

Using these three documentations :

nginx documentation on core modules (ngx_http_core_module.html)

I figured out the remote_addr string should contain the client_ip, and it’s recursively stacked in X-Forwarded-For header.

But i just can’t figure out how to always point to the client IP.

We could also do with simply displaying all X-Forwarded-For IPs to know what path the tracker takes to report the action. If that’s possible that would also be nice and do the job.

The most important ones are the ones coming from clients from the outside world (we need this info) but all their records have IPs in the 150.0.0.0/8

Please let me know what you think, i can also post some more informations if you need.

Thank you for your time.
Quardah

2 posts - 1 participant

Read full topic

How can I use my own ip database to get visitor's location?

$
0
0

My company has its own IP database, how can I use this database to display visitor location information?
Currently matomo can only use DBIP and mindmax databases?

1 post - 1 participant

Read full topic

Is it possible to revert a logfile import?

$
0
0

Hi folks,

unfortunately, our trainee imported ten days from logfiles into an existing custommers site and now these ten days are a total mess.

Is there any way to revert this? - The data recorded by the site’s matomo-js should remain, so everything will be beautiful again.

Many thanks for any hint

2 posts - 2 participants

Read full topic

Delete some data from a segment

$
0
0

Hi,

I had 2 segments based on page url contains.
Segment 1: page url contains dm-home
Segment 2: page url contains edm-home

Recently, i realized that all data in segment 2 is also in segment 1. Then i changed the 2 segments to this:
Segment 1: page url contains /dm-home/
Segment 2: page url contains /edm-home/

Now, i want to delete all the old data that match edm-home from the segment 1 archive. Is this possible ? If yes, how do i do this ?

Thank you in advance for your reply.

1 post - 1 participant

Read full topic

Google Abalytics Importer - Re-Import

$
0
0

Hello,
I have the following problem - I added data to a SiteId via Google Analytics importer and after the import was completed, I also deleted it from the GAI. Now I’ve found that some not correct data and I have to do a re-import. Now the page is no longer listed for re-import in the GAI. How or what do I have to do?

Greetings Mitch

1 post - 1 participant

Read full topic

How to link IP address to an organization

$
0
0

I have the IP addresses from the visitor’s log and I am trying to tie it back to an owner or more specifically, to an organization.

Is that possible within Matomo? Because I only see the visitor’s ID which does not make a lot of sense to me when it comes to tying it to an individual.

Any suggestions are welcome. Thanks in advance.

1 post - 1 participant

Read full topic

Nach Database restore keine Archivdaten

$
0
0

Hallo, ich habe meine Matomo Datenbank zu einem neuem Hoster umgezogen und die config.ini entsprechend angepasst. Beim ersten Aufruf verlangt Matomo nun ein Datenbankupdate von 3.11 auf 3.13, obwohl die Dateien und die DB zur gleichen Zeit gesichert wurden und umgezogen sind. Das Tracking funktioniert sofort problemlos, aber meine Archivdaten sind weg.
Hat Jemand eine Idee was ich falsch mache?

1 post - 1 participant

Read full topic


/bin/sh: /opt/alt/phpWAR/usr/bin/php: No such file or directory

$
0
0

Helllo,

I’ve recently started having problems with one existing Matomo install. It’s been running fine for about five years. It seems to have started when I updated to php7.4 from 7.2. Reverting to 7.2 does not seem to have fixed the issue. The Matomo version is the latest 3.14.1.

I use the default archiving as it’s a very low traffic site. Matomo sends me the following error email every hour from the Cron Daemon:

/opt/alt/phpWAR/usr/bin/php /home/terraner/public_html/piwik/console core:archive --url=http://[snipped]/piwik/ > /dev/null from (Cron Daemon)

the message is:

/bin/sh: /opt/alt/phpWAR/usr/bin/php: No such file or directory

Any help on how to fix this would be most appreciated. I’m just a website designer, so troubleshooting this stuff is quite above knowledge level.

Thanks!

1 post - 1 participant

Read full topic

Google Ads und Matomo

$
0
0

Hallo zusammen,
ich habe das Paid Advertising Plugin von Matomo und möchte gern das Google Ads anbinden. Allerdings erhalte ich folgende Fehlermeldung:

An error occurred within the OAuth process. Please try again and ensure you accept the requested permissions.
An unknown error occurred while fetching the profile information

Hat jemand das gleiche Problem und kann mir hier weiterhelfen?

Vielen Dank
Nicole

1 post - 1 participant

Read full topic

Paid Advertising Plugin

$
0
0

Hello everbody,

i would like Google Ads connect with Matomo and I have a Plugin names PAID ADVERTISING PERFORMANCE.
Now I receive an Error:
An error occurred within the OAuth process. Please try again and ensure you accept the requested permissions.
An unknown error occurred while fetching the profile information

But I don´t know, what is the problem.

Can you help please?

Thanks
Nicole

1 post - 1 participant

Read full topic

Segment AND clause not working

$
0
0

I tried the visitor ID filter on its own and it works.

When I append it as the 2nd criteria to a segments’ AND clause it doesn’t work, no visitors are shown.

The 1st criteria filters out all visit times < 1s.

It seems like a bug to me.

1 post - 1 participant

Read full topic

PageTitle transitions bug

$
0
0

Hi,
we track visitors in multiple sites/accounts with our matomo installation.
For one of our websites we have a “bug” in the section Behaviour -> Page titles. When I click on “transitions” at any of the page titles, it will always show the same information, no matter which page I select. And the numbers are completely wrong, e.g. 20 incoming and 7000 outgoing.

Strangly this does not occur at any of the other sites/accounts in our installation. Any ideas, why this is happening?

I searched the forum for reports on this but couldn’t find anything. Apologies if this has been mentioned already.

Veit

1 post - 1 participant

Read full topic

Viewing all 14008 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>