Online plugin
Moderator: Tata
Online plugin
I have had installed the Online plugin by Amir version 1.05 in XH version 1.6.10. I am now unsuccessfully trying to install in XH version 1.7.6. Previously, there has been a question about installation in XH 1.7.2, and I have made the recommended change in admin.php, but it has not worked in XH 1.7.6. Is it possible to get the Online plugin by Amir to work in XH 1.7.6? Installed in template?
Or is there another plugin for XH 1.7.6?
Or is there another plugin for XH 1.7.6?
Re: Online plugin
What plugin is it? Where have you found it?
CMSimple.sk
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.
Re: Online plugin
A very old (wonderful) plugin
You do not have the required permissions to view the files attached to this post.
Re: Online plugin
Plugin online 1.0.7
I have tried to make XH 1.7.6 compatible, but version 1.0.7. Here are the modified files index.php & admin.php.
You do not have the required permissions to view the files attached to this post.
Re: Online plugin
After installing I have got this weird line?
You do not have the required permissions to view the files attached to this post.
Re: Online plugin
Indeed. I had this too and had already fixed it, but apparently didn't save it.
Change index.php
to
Change index.php
Code: Select all
<?
Code: Select all
<?php
Re: Online plugin
Thanks, works fine now, but how can I get the line "online" on the same line with print view, sitemap, mail form and login?
And how can I delete the link to urceleb.oniton.com (as the site does not exist)?
And how can I delete the link to urceleb.oniton.com (as the site does not exist)?
You do not have the required permissions to view the files attached to this post.
Re: Online plugin
index.php change
Code: Select all
$o.=" <a href='http://urceleb.oniton.com' target='_blank'>" . $users . "</a> ";
Code: Select all
$o.=" <a href='http://urceleb.oniton.com' target='_blank'><u>" . $users . "</u></a> ";
Code: Select all
$o.= " $users ";
Code: Select all
$o.=" <u>" . $users . "</u> ";
That depends on the template. Which template are you using, fhs-simple-2019?
Plugin online index.php, change
Code: Select all
$o.="<p class='online'>";
Code: Select all
$o.="<span class='online'>";
Code: Select all
$o.="</p>";
Code: Select all
$o.="</span>";
Re: Online plugin
Here is the plugin with adjustment (in index.php and sk.php) for languages with 2 forms of plural (e.g. SK, CZ and others that use different forms for count 2,3,4 and 5 and more).
You do not have the required permissions to view the files attached to this post.
CMSimple.sk
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.
It's no shame to ask for an answer if all efforts failed.
But it's awful to ask without any effort to find the answer yourself.
Re: Online plugin
Yes using fhs-simple-2019 and everything works perfectly now - thank you so much (again).