PDA

View Full Version : quick reply help


sabret00the
01-15-2005, 05:13 PM
ok i've got the quick reply working fine on a third party page, however if i click the quick reply icon in order to quote the post, it pulls the post from the database instead of the info i wanted, now i couldn't make out the js as i know nowt to do with js but in the php i'm guessing the lines

$originalposter = fetch_quote_username($getpost['username']);
$pagetext = trim(strip_quotes($getpost['pagetext']));
eval('$quotemessage = "' . fetch_template('newpost_quote', 1, 0) . '";');
$newpost['message'] = "$quotemessage $newpost[message]";
unset($_POST['WYSIWYG_HTML']); has something to do with it, however i've trudged through the php files and can't find the $getpost query.

am i looking for the right thing?

oh maybe it'd be easier to ask, how should i try and get it to pull the info i want rather than the info vbulletin set it to extract initially?

sabret00the
01-16-2005, 11:10 AM
*bump*

Dean C
01-17-2005, 09:52 AM
sabe - no need to bump that much ;)

sabret00the
01-17-2005, 10:24 AM
sorry dean :)

deathemperor
01-17-2005, 11:42 AM
how about using Xenon's quick reply button hack ?

otherwise: if you want to quote, then in the link button it should have been included that postid then in the quote page like abc.php?do=quote&postid=12345 you query for the post with id 12345 and include it in the textarea with the [quote] tag around the message with this postusername also.

is that your problem ?

sabret00the
01-17-2005, 01:05 PM
how about using Xenon's quick reply button hack ?

otherwise: if you want to quote, then in the link button it should have been included that postid then in the quote page like abc.php?do=quote&postid=12345 you query for the post with id 12345 and include it in the textarea with the [quote] tag around the message with this postusername also.

is that your problem ?
not really, i got a whole new script away from the forums, basically i need to find out how the query is being done, what is the clause so that i can hopefully try and overwrite it in my script when it's processing the reply.

but i can't find the $getpost query :(

deathemperor
01-17-2005, 01:36 PM
writing for a new script, that's what I was talking about.

if you want to query post from vbulletin's post table you may want to look at function_newreply.php or similar functions in includes. I don't think it's hard to do things like this manually.

Basicly you just have to get the postid, then in the quote newreply page, it's simply like posting a newreply without quotes, you query that post with the specified id and put it in the quote so that the new reply will content the correct words in it.

sabret00the
01-17-2005, 02:06 PM
let me try and explain this, the way the quick reply is set up it queries the post table with the postid and inserts the relevant text in the right place with the username, now cos i'm using an external script what i'm wanting is for it to query my table grps_post instead, however if i can't find the query i can't even begin to investigate the best method and i'm having problems finding the query at present.

deathemperor
01-18-2005, 04:53 AM
they why don't you write your own query ?

sabret00the
01-18-2005, 09:18 AM
that's what i wanna do but i need to replicate the clause

i.e. FROM grps_post
WHERE postid = quickreplyclickid

and in order to do that, i need to find out what the clause is for the $getpost query in order to steal it effectively.

Marco van Herwaarden
01-18-2005, 09:21 AM
that's what i wanna do but i need to replicate the clause

i.e. FROM grps_post
WHERE postid = quickreplyclickid

and in order to do that, i need to find out what the clause is for the $getpost query in order to steal it effectively.
Run your board in debug mode and click on explain ;)

sabret00the
01-18-2005, 09:38 AM
i found and it and mission complete and that was before reading your message too marco but thank you very much everyone that helped me in this thread, this killed about 4 days of coding :D

Marco van Herwaarden
01-18-2005, 09:44 AM
Congrats :D

deathemperor
01-19-2005, 03:49 AM
this killed about 4 days of coding
it only took me an hour or less...

I wrote my own query, I was writing something like posting new reply w/ and w/o quotes