Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#73 2010-02-26 17:47:57

wornout
Member
From: Italy
Registered: 2009-01-20
Posts: 256
Website

Re: jmd_rate: A CSS star rater

I am using clean urls.
But I try in both modes…

Offline

#74 2010-04-12 02:06:51

surfwax95
Member
Registered: 2008-04-04
Posts: 38
Website

Re: jmd_rate: A CSS star rater

I’m getting this error:

Tag error: <txp:if_jmd_rate_votes> -> Textpattern Warning: tag does not exist on line 1120

and the plugin doesn’t appear to be working at all. I’ve checked everything I know to check, but I’m still coming up short.


Caps lock is cruise control for cool. —Unknown

Offline

#75 2010-04-12 09:29:15

the_ghost
Plugin Author
From: Minsk, The Republic of Belarus
Registered: 2007-07-26
Posts: 907
Website

Re: jmd_rate: A CSS star rater

surfwax95 wrote:

I’m getting this error: Tag error: <txp:if_jmd_rate_votes> -> Textpattern Warning: tag does not exist on line 1120

Mostly this happens when plugin isn’t installed or is not enabled at plugins tab


Providing help in hacking ATM! Come to courses and don’t forget to bring us notebook and hammer! What for notebook? What a kind of hacker you are without notebok?

Offline

#76 2010-04-12 16:06:59

surfwax95
Member
Registered: 2008-04-04
Posts: 38
Website

Re: jmd_rate: A CSS star rater

The plugin is properly installed in the Plugins tab and in the Extensions tab.

Any help or alternatives to this plugin?


Caps lock is cruise control for cool. —Unknown

Offline

#77 2010-04-16 20:16:42

NicolasGraph
Plugin Author
From: France
Registered: 2008-07-24
Posts: 860
Website

Re: jmd_rate: A CSS star rater

wornout a écrit:

I’ve got some problems using plug-in.
I see the list of votes but after selecting one of these the pages reload the same and no record is insert in DB.
I don’t know where is the problem!!!
I use Txp 4.2.0

Is there a known solution to this problem?
I’ve got the same.

Thanks for your answers.

Nicolas


Nicolas
Follow me on Twitter and GitHub!
Multiple edits are usually to correct my frenglish…

Offline

#78 2010-05-23 19:11:02

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

wornout a écrit:

I’ve got some problems using plug-in.
I see the list of votes but after selecting one of these the pages reload the same and no record is insert in DB.
I don’t know where is the problem!!!
I use Txp 4.2.0

NicolasGraph wrote:

Is there a known solution to this problem?
I’ve got the same.

I may or may not have had the same issue you are describing. When you say “the list of votes” I assume you mean the rating entry links that <txp:jmd_rate_display/> generates. For me, these were completely non-functional:

It seemed that since I was using gbp_permanent_links to make clean urls for my individual articles (because I don’t want the article title anywhere in my url, as in all of Textpattern’s clean url options), <txp:jmd_rate_display/> was not able to produce functional rating entry links: every link was just a plain link to the current article. I tried manually adding ?rating=3 to the end of a clean url, but this didn’t result in a rating getting logged in the database.

Later, I realized that manually entering dirty rating entry links, as in

<a href='http://yoursite.com/index.php?id=<txp:article_id/>&rating=3'>3</a>

…worked perfectly. This may be due to the fact that with gbp_permanent_links, you are supposed to leave the Admin Preferences setting on ?=messy. Maybe there is even a way to get gbp_permanent_links and the <txp:jmd_rate_display/> tag to play nice together, but I haven’t figured it out if so.

So for now, I just need to hand code the rating entry links instead of using <txp:jmd_rate_display/>. Of course, this is not good because you lose all the functionality of that tag, and I have yet to actually devise a hand-made solution that completely duplicates it, but it’s on my list of to-do’s.

Maybe you are not in the exact same situation, but have you tried manually entering a dirty rating entry url like that with any success?

Last edited by aswihart (2010-05-23 19:44:39)

Offline

#79 2010-05-23 19:12:08

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

just a (small?) feature request: add attribute offset for jmd_rate_article like in article_custom. Trying to get a hand-made pagination system that I made for article_custom lists working with article lists sorted by rating, and this is all I need.

Offline

#80 2010-05-24 03:38:47

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

aswihart, if you add the offset to these places, it’ll probably work:

function jmd_rate_article($atts)
{
    extract(lAtts(array(
        'offset'     => '', // <--
        'author'     => '',
    // ...
        $out .= article_custom(array(
            'offset'    => $offset, // <--
            'author'    => $author,
            'category'  => $category,

Sorry for the lack of support and buggy mess. I haven’t made time for plugins since I moved last year, but I’m hoping to complete some much needed updates to the various *jmd_** spawn this summer.

Last edited by jm (2010-05-24 03:39:07)

Offline

#81 2010-05-26 13:48:00

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

Hey JM, thanks for the tips. Coincidentally, I actually I tried putting those two lines in, and I just tried again to reconfirm, unfortunately, it doesn’t work for me. If I include the offset attribute in the jmd_rate_article tag and set to anything but “0” , it returns nothing. What about for you?

Offline

#82 2010-07-02 15:54:24

jm
Plugin Author
From: Missoula, MT
Registered: 2005-11-27
Posts: 1,746
Website

Re: jmd_rate: A CSS star rater

Hi all,

I’m working on jmd_rate again — I checked the crappy 0.4 version into a repository. I tested on TXP 4.2-SVN (Apache 2 + PHP 5.3.2 and Lighttpd + PHP 5.3.2 servers), and it works fine. If you have any issues, please post them to the tracker. Sorry about the hassle, but it makes it easier for me to find out what’s wrong with the plugin.

Thanks,
JM

Offline

#83 2010-07-04 11:46:12

aswihart
Member
From: Pittsburgh, PA
Registered: 2006-07-22
Posts: 345
Website

Re: jmd_rate: A CSS star rater

Great to hear you are back jm, your plugin continues to work very well for me, and I’m looking forward to the improvements you may have coming for us.

The IP logging feature is great, and to add even more robustness in the area of preventing rating spam, I would like to submit a feature request if I may: to only allow one vote per user. I’m already using rvm_privileged to hide the rating links from anyone who isn’t logged in, so this feature would just make a lot of sense.

Last edited by aswihart (2010-07-05 22:55:29)

Offline

#84 2010-07-06 19:23:08

Katalonian
Member
From: Baku, Azerbaijan
Registered: 2010-04-18
Posts: 219
Website

Re: jmd_rate: A CSS star rater

can i use this plugin as a standart poll pluin without stars?


<txp:txp_me />

Offline

Board footer

Powered by FluxBB