vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Wysiwyg (https://vborg.vbsupport.ru/showthread.php?t=176174)

PaulSonny 04-15-2008 01:54 AM

Wysiwyg
 
Hello Everyone,

I'm trying to get text from the WYSIWYG and place it in a database field. I have got all the other information to store like username and userid but I cant get the message to store.

Code:

$message = $vbulletin->input->clean_gpc('WYSIWYG_HTML', 'message', TYPE_STR);
        if (isset($WYSIWYG_HTML))
        {
                require_once('./includes/functions_wysiwyg.php');
                $message = convert_wysiwyg_html_to_bbcode($WYSIWYG_HTML, $vboptions['allowhtml']);
        }
        else
        {
                $message = trim($message);
        }
        $vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX ."helpcenter_ticket(title, departmentid, postusername,
        postuserid, lastposter, lastupdate, dateline) VALUES ('" . addslashes(htmlspecialchars_uni($_REQUEST['title'])) . "',
        '" . intval($_REQUEST['departmentid']) . "','" . addslashes($vbulletin->userinfo['username']) . "',
        '" . intval($vbulletin->userinfo['userid']) . "','" . addslashes($vbulletin->userinfo['username']) . "'," . TIMENOW . ",
        " . TIMENOW . ")");
        $ticketid = $vbulletin->db->insert_id();
        $vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "helpcenter_ticketreply(ticketid, username, userid,
        dateline, pagetext, ipaddress) VALUES (" . intval($ticketid) . ",'" . addslashes($vbulletin->userinfo['username']) . "',
        " . intval($vbulletin->userinfo[userid]) . "," . TIMENOW . ",'" . addslashes($message) . "',        '" . addslashes(IPADDRESS) . "'
        )");

Can anyone see anything wrong?

Thanks, Paul.

Dismounted 04-15-2008 06:46 AM

You are using the clean_gpc() function wrong.

mixed &clean_gpc (array $source, string $varname, [integer $vartype = TYPE_NOCLEAN])

PaulSonny 04-15-2008 09:47 AM

Still not working, and I dont know what i'm doing wrong. All the other information goes into the DB but not the contents of the message box.

Code:

if ($_REQUEST['do'] == 'submitnewticket'){
        $vbulletin->input->clean_array_gpc('r', array('message' => TYPE_STR));
        $message = $vbulletin->GPC['message'];
        if (isset($WYSIWYG_HTML))
        {
                require_once('./includes/functions_wysiwyg.php');
                $message = convert_wysiwyg_html_to_bbcode($WYSIWYG_HTML, $vboptions['allowhtml']);
        }
        else
        {
                $message = trim($message);
        }
        $vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX ."helpcenter_ticket(title, departmentid, postusername,
        postuserid, lastposter, lastupdate, dateline) VALUES ('" . addslashes(htmlspecialchars_uni($_REQUEST['title'])) . "',
        '" . intval($_REQUEST['departmentid']) . "','" . addslashes($vbulletin->userinfo['username']) . "',
        '" . intval($vbulletin->userinfo['userid']) . "','" . addslashes($vbulletin->userinfo['username']) . "'," . TIMENOW . ",
        " . TIMENOW . ")");
        $ticketid = $vbulletin->db->insert_id();
        $vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "helpcenter_ticketreply(ticketid, username, userid,
        dateline, pagetext, ipaddress) VALUES (" . intval($ticketid) . ",'" . addslashes($vbulletin->userinfo['username']) . "',
        " . intval($vbulletin->userinfo['userid']) . "," . TIMENOW . ",'" . addslashes($message) . "',        '" . addslashes(IPADDRESS) . "'
        )");
        //Insert AutoResponse Mail Here
        $vbulletin->url = "helpcenter.php?$session[sessionurl]do=ticket&tid=".$ticketid;
        eval(print_standard_redirect('redirect_postthanks'));
}

Thanks, Paul.

Marco van Herwaarden 04-15-2008 09:51 AM

PHP Code:

$vbulletin->input->clean_array_gpc('r', array('message' => TYPE_STR)); 

Not sure, but i think this is a post variable, so:
PHP Code:

$vbulletin->input->clean_array_gpc('p', array('message' => TYPE_STR)); 


PaulSonny 04-15-2008 10:00 AM

Nope still not storing in the database. Starting to drive me insane lol.

Thanks, Paul.

Dismounted 04-15-2008 10:04 AM

Check that the variable actually has something in it...

PaulSonny 04-15-2008 10:52 AM

Quote:

globalize($_POST, array('WYSIWYG_HTML', 'message' => STR));
How can I convert this line?

Thanks, Paul.


All times are GMT. The time now is 12:15 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01260 seconds
  • Memory Usage 1,735KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete