Google

Events happening in the community are now at Drupal community events on www.drupal.org.
Scott Reynolds's picture

Install Instructions and NEW RECOMENDATION MODULE!

Install instructions

Simply download the project and place all modules within the /modules subdirectory.
Please make sure that you have downloaded BOTH VotingAPI and some voting module (for example: SimpleVote)

And then turn them on!

To use SimpleVote on comments

Add this function to SimpleVote.module
<?php
function simplevote_comment(&$comment, $op) {
switch ($op) {
case 'view':
$comment->comment = theme('simplevote_widget', $comment->cid, 'comment') . $comment->comment;

Read more
Scott Reynolds's picture

New Release Brings cre_query_obj and comment_recommendation.module

Just released new version. Included in the this release is the new-fangled cre query object and comment_recommendation.module which recommends comments within the current node being viewed.

The object allows for joining on any table. Please remember to use {} and a name to identify your table.

For instance node_recommendation does this:

<?php
function node_recommendation_cre_query (&$query) {
  
$query->add_table("{node} n");
  
$query->add_column("n.title");
  
$query->add_where("n.nid=d.content_id1");
}
?>
Read more
Scott Reynolds's picture

NEW VERSION RELEASED

Ok major speed fixes. Redid the query compeletly and added a average user vote table. This allows for the movelens database to run MUCH MUCH MUCH MUCH FASTER. I will begin testing it later this week and give back some scores that should be interesting. Try running the update script for me. I did not test it out and I am worried that I didn't write it properly (my first update() :-D ).

Still working on creating a query object that will prevent the one issue that is in the queue right now. More to come soon...

http://drupal.org/project/cre

Scott

Read more
Scott Reynolds's picture

Movielens Database DRUPALIZED!`

OK,

Finally finished it. Their happens to be a permission problem still though. Users not uid=1 will not be able to view the node that is recommended or access the recommendations page. Pretty sure you can fix that in the admin panel but havent done that yet. If any can shed some light on it please do. Here is where you can find the stuff: http://scottreynolds.us/Downloads/movielenssql.tar.gz

100k movielens is not done, it is in a different file format thereby requiring a different program.
Info from readme file:

Read more
kevinwalsh's picture

stability of gmap mashups

I'm about to launch a site with a gmap.module/location.module node map, but all of a sudden my map/node page broke. My Firefox status bar tells me it's either "Connecting to www.acme.com..." or "Waiting for www.google.com...", but then it times out and produces a map without any markers, where there used to be 60.

Apparently i'm not the only one having problems. [zacker.org/mapdev/: as of 1am Wed May 24, no markers appear there either].

this makes me wonder about the longterm stability of using gmap macros. any ideas?

Read more
eaton's picture

Submitted project idea: content recommendation engine

Just put a project proposal into the bin: http://drupal.org/node/61877. I'm not sure how much it would overlap with the 'similar entries/context' proposal, and the 'social network analysis' proposal, but I think it has a lot of merit as a free-standing project. Thoughts and possible improvements appreciated.

Read more
Subscribe with RSS Syndicate content