per subject :)
| Comment | File | Size | Author |
|---|---|---|---|
| #10 | send-n367589-d5upgrade.patch | 817 bytes | damienmckenna |
| #2 | send-6-views.tar_.gz | 1.4 KB | mradcliffe |
per subject :)
| Comment | File | Size | Author |
|---|---|---|---|
| #10 | send-n367589-d5upgrade.patch | 817 bytes | damienmckenna |
| #2 | send-6-views.tar_.gz | 1.4 KB | mradcliffe |
Comments
Comment #1
jerdavisYup! It's on it's way!
HEAD is already ported and seems to be working well based on testing, although it's lacking views support currently. As soon as we get views support in we'll create a d6 branch and post a development snap shot.
For now if you'd like to try it out please do so and let us know if you run into any issues!
Jer
Comment #2
mradcliffeI had some free time today so I converted it to views 2.x, mostly. Arguments and send_totals not in there yet. No default views either. I replaced most of the uid handlers with relationships to their respective tables as they are redundant.
Completed the send_views_handler_*_module classes for filter and field. Again arguments are a bit weak right now and could use some work.
Attachment contains send.views.inc, includes/, and a patch to send.module for the missing send_views_api() stuff.
Wasn't sure whether to post here or in #274104: An Upgrade to drupal ver 6.x??. One or the other is a duplicate, but this had a bit more status info.
Comment #3
gregglesA more approriate status...
Comment #4
mehmeta commentedJust got it working with the latest snapshot(6.x-1.x-dev) of Send and mimemail(6.x-1.x-dev). Required me to change to lines
return addslashes(mime_header_encode($address['name'])) .' <'. $address['mail'] .'>';
to
return '<'. $address['mail'] .'>';
in mimemail.inc, since php's mail function didn't seem to like addresses with the "%username" <%email> format.
Comment #5
one51 commentedAny update on the status? Just setting up a Drupal website, and this functionality is one that I am most looking for. Cheers!
Comment #6
RyanJLind commentedDoes this officially work with Drupal 6? I can't seem to get it set up. For example, I don't see anything under content types that allows me to add the mail a friend link to that content type. INSTALL.txt is out-of-date as it tells me to go to admin/settings/content-types which doesn't exist anymore. I also get a lot of MySQL warnings/errors
Appreciate any response
Thanks.
Comment #7
damienmckennaI've been trying to migrate a D5 site to D6 and am hitting some errors. I'll dig into it and report what I can find.
Comment #8
damienmckennaHere's the error that's given when I do an upgrade from D5 to D6:
An error occurred. http://mysite/update.php?id=1&op=do <br /> <b>Fatal error</b>: Call to undefined function send_value() in <b>sites/all/modules/contrib/send/send.install</b> on line <b>258</b><br />Comment #9
damienmckennaThe D5-D6 error occurs on this line:
This is part of the _send_install_set_default_template() function which is called from send_update_6003().
For the same reason as FeedAPI found in #576848: Don't use module API in hook_update_N(), a module's own APIs should not be used within the install and update functions.
Comment #10
damienmckennaHere's a patch for HEAD that loads the main send.module file in _send_install_set_default_template() if the send_value() doesn't exist.
Comment #11
damienmckennaSome more errors that showed up:
Functions send_update_6001() and send_update_6002() both have redundant schema modifications.
Comment #12
damienmckennaA fix was committed by jerdavis which should resolve this:
http://drupal.org/cvs?commit=281990
"Adding a module_exists() check to send.install to prevent potential errors from occuring durring an update operation when the module is not enabled"