A attemis Member Nov 26, 2013 #1 Hello, is it possible to create a new thread in xenForo threw an external php script? Greets attemis
LPH Well-known member Nov 27, 2013 #2 Yes. Take a look at the Model directory in XenForo to get an idea.
A attemis Member Nov 27, 2013 #3 Okay thanks Edit: I can't find it... :/ Is it a function which moves a post into a new thread? Last edited: Nov 27, 2013
Jeremy in memoriam 1991-2020 Nov 27, 2013 #4 Moves a post? You need to split the thread and then merge the post into a new post. Which action are you actually attempting to replicate?
Moves a post? You need to split the thread and then merge the post into a new post. Which action are you actually attempting to replicate?
A attemis Member Nov 27, 2013 #5 I just want to create a new thread in a specific forum in xenforo But im new to xenforo and the zenframework...
I just want to create a new thread in a specific forum in xenforo But im new to xenforo and the zenframework...
Jeremy in memoriam 1991-2020 Nov 27, 2013 #6 Creating a new thread within a specified is rather easy and does not require the use of the XenForo Model's at all, but rather requires the use of the XenForo DataWriters. Do you have the XenForo framework initialized within your script?
Creating a new thread within a specified is rather easy and does not require the use of the XenForo Model's at all, but rather requires the use of the XenForo DataWriters. Do you have the XenForo framework initialized within your script?
P Paul B XenForo moderator Staff member Nov 27, 2013 #7 I guess you will need to extend the forum controller, specifically actionCreateThread.
A attemis Member Nov 27, 2013 #8 Yes i created an addon which comunicates with my php script thanks @Brogan i will try this