2891
Mamba
PUBLISHER 1.05 FINAL RELEASED
  • 2017/11/22 7:56

  • Mamba

  • Moderator

  • Posts: 11375

  • Since: 2004/4/23


Resized Image
Publisher 1.05 FINAL has been released.

Thanks to everybody who contributed to this release by testing, submitting and fixing bugs.

This module has been updated for XOOPS 2.5.9 and PHP 7.2 RC

DOWNLOAD: https://github.com/XoopsModules25x/publisher/releases

FORK: https://github.com/XoopsModules25x/publisher

TUTORIAL:https://docu.xoops.org/mkdocs/modules/publisher-tutorial/en/book/2administration/

Bugs Reporting: On this forum in this thread, or on GitHub
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



2892
Cifug
Re: Bugs and requests for module wgTimelines
  • 2017/11/21 11:08

  • Cifug

  • Quite a regular

  • Posts: 208

  • Since: 2007/12/13


Hi Goffy, I just started a new site and installed your latest version and when I try to create the 1st timeline I get this error and no timeline is created:
Notice: Array to string conversion in file /modules/wgtimelines/class/helper.php line 106


I have updated all the templates which is a great feature too by the way and I have cleared the cache on the site and my browser.

Do you have any suggestions?

XOOPS Version XOOPS 2.5.9
PHP Version 5.6.32
mySQL Version 5.6.38
wgtimelines 1.1RC2

Cheers,
Marty



2893
Mamba
Re: Example of Using Vue.js in Blocks
  • 2017/11/21 11:06

  • Mamba

  • Moderator

  • Posts: 11375

  • Since: 2004/4/23


Jim, I've added the block, but GitHub is only serving commits by repository, so below the XOOPS Core 2.5.x I've added links to:

Latest XOOPS Modules Commits 

Latest XOOPS Themes Commits

Latest Docs/Tutorials Commits

Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



2894
aerograf
Re: Example of Using Vue.js in Blocks
  • 2017/11/21 7:55

  • aerograf

  • Quite a regular

  • Posts: 214

  • Since: 2017/1/7 1


And the forum can
https://xoops.shmel.org/modules/newbb/viewtopic.php?post_id=36



2895
zyspec
Re: Example of Using Vue.js in Blocks
  • 2017/11/21 1:55

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


I think it's a great idea - it should be a side block onhttps://xoops.org/modules/publisher/category.php?categoryid=1

We should have a similar block for modules (XoopsModules25x) onhttps://xoops.org/modules/publisher/category.php?categoryid=2

And for themes (Xoopsthemes) on
https://xoops.org/modules/publisher/category.php?categoryid=3



2896
zyspec
Re: White Screen when accessing modules as admin
  • 2017/11/21 1:46

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


You might also want to check the Protector module logs to see if anything shows up there...



2897
aerograf
Re: NewBB 5.0 is in development
  • 2017/11/20 20:00

  • aerograf

  • Quite a regular

  • Posts: 214

  • Since: 2017/1/7 1


We need testers/developers for NewBB 5.0
1) Download or fork NewBB 5.0 fromhttps://github.com/mambax7/newbb5
2) rename it to newbb and copy to your modules, and install as usual
3) this is ALPHA, so it's only for testing/development



2898
Mamba
Example of Using Vue.js in Blocks
  • 2017/11/19 4:36

  • Mamba

  • Moderator

  • Posts: 11375

  • Since: 2004/4/23


It's easy to add Vue.js to XOOPS Blocks. How about creating a block showing latest XOOPS Core commits on GitHub? We can do it by modifying the existing code from Vue.js example "GitHub Commits" We create a new XOOPS Custom Block in Admin and paste following code:
<div id="demo">
  <
h1>Latest XOOPS Commits</h1>
  <
template v-for="branch in branches">
    <
input type="radio"
      
:id="branch"
      
:value="branch"
      
name="branch"
      
v-model="currentBranch">
    <
label :for="branch">{{ branch }}</label>
  </
template>
  <
p>XOOPS/XoopsCore25@{{ currentBranch }}</p>
  <
ul>
    <
li v-for="record in commits">
      <
:href="record.html_url" target="_blank" class="commit">{{ record.sha.slice(07) }}</a>
      - <
span class="message">{{ record.commit.message truncate }}</span><br>
      
by <span class="author"><:href="record.author.html_url" target="_blank">{{ record.commit.author.name }}</a></span>
      
at <span class="date">{{ record.commit.author.date formatDate }}</span>
    </
li>
  </
ul>
</
div>

<
style>
#demo {
  
font-family'Helvetica'Arialsans-serif;
}
li {
  
line-height1.5em;
  
margin-bottom20px;
}
.
author, .date {
  
font-weightbold;
}
</
style>

<
script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.2.4/vue.min.js"></script>

<
script>
var 
apiURL 'https://api.github.com/repos/XOOPS/XoopsCore25/commits?per_page=3&sha='

/**
 * Actual demo
 */

var demo = new Vue({

  
el'#demo',

  
data: {
    
branches: ['master'],
    
currentBranch'master',
    
commitsnull
  
},

  
created: function () {
    
this.fetchData()
  },

  
watch: {
    
currentBranch'fetchData'
  
},

  
filters: {
    
truncate: function (v) {
      var 
newline v.indexOf('n')
      return 
newline v.slice(0newline) : v
    
},
    
formatDate: function (v) {
      return 
v.replace(/T|Z/g' ')
    }
  },

  
methods: {
    
fetchData: function () {
      var 
xhr = new XMLHttpRequest()
      var 
self this
      xhr
.open('GET'apiURL self.currentBranch)
      
xhr.onload = function () {
        
self.commits JSON.parse(xhr.responseText)
        
console.log(self.commits[0].html_url)
      }
      
xhr.send()
    }
  }
})
</
script>
Save it as HTML, and we're done!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



2899
Mamba
Re: Can someone do a small hack for "User Management"
  • 2017/11/17 11:43

  • Mamba

  • Moderator

  • Posts: 11375

  • Since: 2004/4/23


In the next version of Protector, Richard has added a button for blocking IPs:

Resized Image


Maybe he will be able to add something similar to the User Management...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



2900
aerograf
Re: White Screen when accessing modules as admin
  • 2017/11/17 11:35

  • aerograf

  • Quite a regular

  • Posts: 214

  • Since: 2017/1/7 1


And what theme do you use in the admin panel? Try to change.




TopTop
« 1 ... 287 288 289 (290) 291 292 293 ... 29424 »



Login

Who's Online

168 user(s) are online (106 user(s) are browsing Support Forums)


Members: 0


Guests: 168


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Jun 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits