• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Form to Forum Submission

Form to Forum Submission 15 years 9 months ago #7925

Is it possible to have this map out to several places once filled out? Such as, one copy to an email or several emails and one copy to a forum page?
The administrator has disabled public write access.

Re:Form to Forum Submission 15 years 8 months ago #8103

  • JBHawaii
  • JBHawaii's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
I would like to see such a thing like submit to new forum post... However, after searching through these forums it saddens me to see how many unanswered threads are here. Would be nice if one of the developers or moderators could at least reply. I don't even want to start a new thread out of the fear that it too will go unanswered.


MODS OR DEVELOPERS an answer to these functions would be appreciated. I know this is my first post... but, I ain't new to how customer service should be for paying customers. A simple effort to answer a simple question doesn't cost anyone a cent, And it also keeps paying customers happy.

No offense intended... but there are to many unanswered threads in this forum.

Mahalo,
JBHawaii
Last Edit: 15 years 8 months ago by JBHawaii.
The administrator has disabled public write access.

Re:Form to Forum Submission 15 years 8 months ago #8107

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
Hello,

The Support Policy located here states:
A public forum is available to registered members on the website for community-based support. RSJoomla! does not guarantee responses on the forum nor that we commit to monitor it.

However, we do provide support for our subscribers using our tickets system, under Customer Support > Ask a question.

Furthermore, there's a message on top of the forum's first page stating exactly what I've written above. We'll have to move it so that it displays on all forum posts because it seems that it's not read.

Regards!
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:Form to Forum Submission 15 years 8 months ago #8109

  • JBHawaii
  • JBHawaii's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
@octavian,

I read them and realize what they state. However, as I said in my previous post is it that hard to simply respond to a post? Sometimes even if a request is not possible due to limitations, it's just common courtesy to respond to any form of communication.

I understand I can submit a ticket for support, but I would like to also allow the community to benefit from my experience. Therefore, I think it's appropriated to also ask questions in the forum and receive a response even if it's not a response to solve any problems I may be having.

I hope you can understand my point of view, not trying to make you guys look bad I am just expressing my opinion of my observations of these forums.
Last Edit: 15 years 8 months ago by JBHawaii.
The administrator has disabled public write access.

Re:Form to Forum Submission 15 years 8 months ago #8110

  • JBHawaii
  • JBHawaii's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
@Vorpel85,

Matius a developer at kunena.com provided this preliminary script that might give you an idea how you can accomplish auto-submitting to a forum post. My level of php coding is limited and I really can't tell you if this will work or not hopefully you are familiar with php...
<?php
 
// Preparations
$db = &JFactory::getDBO();
$db->setQuery("SELECT id FROM #__menu WHERE link='index.php?option=com_kunena' AND published='1'");
$kunenaItemid = $kunena_db->loadResult();
if ($kunenaItemid < 1) $kunenaItemid = 0;
$kunenaItemid = "&Itemid=" . $kunenaItemid;
 
$user = &JFactory::getUser();
 
/*
 * SETTINGS, PLEASE FILL THESE
 */
 
$authorName = $user->username; // OR '$user->name' for real name
$catid = 2; // Fill your category into here
$msgparent = 0; // If you want to have one thread for all messages, add parent id
$maxsubject = 35; // Max length of subject
$subject = ''; // Inital subject
 
/*
 * END OF SETTINGS
 */
 
?>
 
<form action="<?php echo JRoute::_('index.php?option=com_kunena&func=post' . $kunenaItemid); ?>" method="post" name="postform" enctype="multipart/form-data">
<input type="hidden" name="parentid" value="<?php echo $msgparent;?>" />
<input type="hidden" name="catid" value="<?php echo $catid;?>" />
<input type="hidden" name="action" value="post" />
<input type="hidden" name="contentURL" value="empty" />
<input type="text" name="subject" size="35" class="inputbox" maxlength="$maxsubject" value="<?php echo $subject;?>" />
<textarea class="inputbox" name="message" rows="6" cols="60" style="height: 100px; width: 100%; overflow:auto;"></textarea>
<input type="submit" name="submit" value="Submit" />
<input type="reset" name="reset" value = "Reset" />
</form>
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!