401
goffy
Re: xNewsletter 1.1
  • 2013/9/17 21:13

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27



hi tatane

1) please download nightly from simple-xoops (rev. 189), I fixed a bug I found

2) Import tool works as following:
a) adding the email to subscriber list (table xo_mod_xnewsletter_subscr)
b) subscribe this new email to the selected newsletter cat (table xo_mod_xnewsletter_catsubscr)
it seems that you have no newsletter cat
in the video in the dropdown in column "Newsletter Name" you see "no Import"
therefore no Import will be done

please create a newsletter cat first and try again




402
goffy
Re: xNewsletter 1.1
  • 2013/9/16 13:27

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


hi tatane

I made a plugin.
can you please download nightly Version from
http://www.simple-xoops.de/projekt/2:39-Download_Nightly.html
test and Report

evennews must be intalled to use the plugin



403
goffy
Re: xNewsletter 1.1
  • 2013/9/15 20:57

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi tatane

I do not know evennews, but you can send me the zipped module you use, than I can try to create a plugin.
I send you my email per pm



404
goffy
Re: xNewsletter 1.1
  • 2013/9/5 18:05

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


hi cesag

Quote:
I go away a few days, I'll be back in a week, so do not be surprised if I do not answer right away.


I'll go sailing for one week with my friends

I'll contact you after that



405
goffy
Re: xNewsletter 1.1
  • 2013/9/5 9:22

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi cesag

Quote:
I found, what you mean

I'm sorry, but I only thought I found it.

Your error normaly only appears when you subscribing, not, when unsubscribe.
I tested a lot, but I didn't get this error.

Are you testing local or on a server?
if you trust me, give me an user for a day.



Did anybody else get this error?



Quote:
... and thank you for your recent translations on Transifex

My pleasure. How does it work, if i want to give the language files from xnewsletter on transifex and how can I get than the translated files?



406
goffy
Re: xNewsletter 1.1
  • 2013/9/4 6:24

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi cesag

I found, what you mean, I'll check and resolve it and give you feedback



407
goffy
Re: xNewsletter 1.1
  • 2013/9/3 16:59

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


Hi cesag

what do you mean with
Quote:
After replacing the "categories-subscriber", newsletters are sent now (xNewsletter/admin/catsubscr.php?op=new_catsubscr).
?

Do you have minimum one subscriber?
Is this subscriber linked with a category?

What can you see in tab "Protocols"?



408
goffy
xNewsletter 1.1
  • 2013/8/27 8:36

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


xNewsletter 1.1 has been released.

Please add here, if you found a bug, if you haven suggestions or wishes for next versions.

I am very glad for each posting



409
goffy
Re: XoopsTube 1.06 beta 1 and Xoops 2.5.5 or 2.5.6
  • 2013/4/17 19:22

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


german translation done



410
goffy
Re: APCal problem with javascript date
  • 2013/1/26 14:44

  • goffy

  • Just can't stay away

  • Posts: 547

  • Since: 2010/12/27


hi

it seems to be a problem of newer xoops versions.
In index.php there is a check, which calendar should be taken, the settings in APCal.php
var $jscalendar 'jscalendar' ;

will be ignored
The check in index.php is
if( is_fileXOOPS_ROOT_PATH '/include/calendarjs.php' ) ) { 
// older jscalendar in XOOPS 2.0.x core

, but the same file exist in xoops 2.3 and newer, and I think, actual version is not fully compatible in all languages.

I solved the problem with deleting the first if-condition, because the last else means the same.

In my index.php it looks like this
if( $action == 'Edit' ) { 
        
//goffy deleted first if condition in order to use recommended jscalendar
         /* if( is_file( XOOPS_ROOT_PATH . '/include/calendarjs.php' ) ) { 
            // older jscalendar in XOOPS 2.0.x core 
            include XOOPS_ROOT_PATH.'/include/calendarjs.php' ; 
            $cal->jscalendar = 'xoops' ; 
        } else */
if( is_dirXOOPS_ROOT_PATH '/common/jscalendar' ) ) { 
            
// jscalendar in common (recommend) 
            
$jscalurl XOOPS_URL '/common/jscalendar' 
            
$xoopsTpl->assign'xoops_module_header' 
                .
$jscalurl.'/calendar-system.css" />
                 .
$jscalurl.'/calendar.js">
                 .
$jscalurl.'/lang/'.$cal->jscalendar_lang_file.'">
                 .
$jscalurl.'/calendar-setup.js">
             ' 
$xoopsTpl->get_template_vars"xoops_module_header" ) ) ; 
            
$cal->jscalendar 'jscalendar' 
        } elseif( 
is_dirXOOPS_ROOT_PATH '/class/calendar' ) ) { 
            
// jscalendar in XOOPS 2.2 core 
            
$jscalurl XOOPS_URL '/class/calendar' 
            
$xoopsTpl->assign'xoops_module_header' 
                .
$jscalurl.'/CSS/calendar-blue.css" title="system" />
                 .
$jscalurl.'/calendar.js">
                 .
$jscalurl.'/lang/'.$cal->jscalendar_lang_file.'">
                 .
$jscalurl.'/calendar-setup.js">
             ' 
$xoopsTpl->get_template_vars"xoops_module_header" ) ) ; 
            
$cal->jscalendar 'jscalendar' 
        } else { 
            
// older jscalendar in XOOPS 2.0.x core 
            
include XOOPS_ROOT_PATH.'/include/calendarjs.php' 
            
$cal->jscalendar 'xoops' 
        }

The jscalendar in folder common must be available, then it works in german version.




TopTop
« 1 ... 38 39 40 (41) 42 43 44 »



Login

Who's Online

151 user(s) are online (139 user(s) are browsing Support Forums)


Members: 0


Guests: 151


more...

Donat-O-Meter

Stats
Goal: AU$15.00
Due Date: Jul 31
Gross Amount: AU$0.00
Net Balance: AU$0.00
Left to go: AU$15.00
Make donations with PayPal!

Latest GitHub Commits