Author |
Message |
|
Well, does it now work?
Auron
|
|
|
I forgot about that. I don't know if you can make the range larger.
eg. 192.168
Auron
|
|
|
Why are you clicking on refresh?
When you click vote the page refreshs automatically to display the results.
If your clicking it after the results then most forms will say that, may also depend on the browser your using.
Auron
|
|
|
I wouldn't want to mess with links incase i screwed them up.
Meanwhile why odn't you create a separate page for each poll with its
own comments below and and have each page link to the next one and
forget the adv. poll list code. Much easier and safer.
Auron
|
|
|
change their permissions to what they should be, 644 is it?
If your ftp tool doesn't do it get another one...
www.smartftp.com
Auron
|
|
|
Do what Amber said straight after you login otherwise you'll get
redirected back the the login screen.
Auron
|
|
|
it should be 4 sets of numbers e.g.
192.168.0.1
|
|
|
if you know the domain name try this...
http://www.whois.sc/domainnamehere.com
Auron
|
|
|
What does the error say exactly and it should work with version 4.
Auron
|
|
|
marogiannis wrote:I have been trying to instll the Advanced Guest Book which came bundled with my hosting, but keep getting various error messages such as:
MySQL Error : Query Error
Error Number: 1146 Table 'annaapts_agbook1.book_config' doesn't exist
PHP Version : 4.3.9
Can someone kind enough assist me with this.?
Thanks
bold = problem.
didn't run sql stuff or install.php
Auron
|
|
|
I find these sorts of websites kinda stupid.
Posting all the bugs and exploits on the web so people can use them and
hack peoples sites/polls. Only covers to 2.0.2 so 2.0.3 is safe from people
trying to hack it.
Just upgrade to 2.0.3 it MUST surely be better than 2.0.2.
I liked the bit where it complained about the info.php no 1 in their right mind
(who knows PHP) would leave it there!
note- learn PHP first (at least some) then use this poll!!!
There are fixes to problems/bugs (link below) but its in some random language.
If any1 converts it to English i'll see if the same problems occur in 2.0.3.
http://www.phpsecure.info/v2/.php?zone=pPatch
Auron
|
|
|
http://members.lycos.nl/frgouverneur/guestbook/index.php
After randomly clicking things.
Auron
|
|
|
can't you keep all this in one thread??
|
|
|
Try this also...
http://proxy2.de/forum/viewtopic.php?t=3823
To EVERYONE!
THE DEMO POLLS HAVE THE CODE NEXT TO THEM WITH LITTLE TITLES BETWEEN /* AND */ INDICATING THERE ARE COMMENTS AND THEY TELL YOU WHAT THE CODE DOES, PLUS YOU HAVE THE POLL THERE IT SHOULD BE INCREDIBLY OBVIOUS!
Auron
|
|
|
Lets see now...
1. people can vote
2. people can comment on the topic which they voted for
3. the form which people can use to comment with is on the same page as the poll
4. there is a list of old poll
1. in the admin area at the top of the page, click on the last image and it'll give you the file include bit and the code. The code should look something like this...
echo $php_poll->poll_process(1);
put 1, 2, or 3 or whatever for the poll id or put newest for the newest created poll or random which does guess what!? ^^
2/3. lets go!
this constructs the comment form...
comment bits out that you don't want. for example currently the email field is commented out so they don't have to fill that in.
$php_poll->set_template("poll_form");
$php_poll->set_form_error(array(
"name" => "Please enter your name.",
// "email" => "You must specify your e-mail address.",
"message" => "You must specify a message."
));
$html_form = $php_poll->comment_process(2); --- poll id, newest or random
echo $html_form;
not sure about this one, may need to inlcude an extra file. But let me know if it works or not.
2/3. (again) to view the comments...
$php_poll->set_template("poll_comment");
$php_poll->set_comments_per_page(5); --- no of comments per page
$php_poll->set_date_format("d/m/Y H:i");
$php_poll->data_order_by("time","desc");
echo $php_poll->view_poll_comments(2); --- poll id, newest or random
echo $php_poll->get_comment_pages(2); --- poll id, newest or random
4. here's the code...
$php_poll->set_template("poll_list");
$php_poll->set_date_format("m/d/Y");
echo $php_poll->view_poll_list();
echo $php_poll->get_list_pages();
not sure about the last two, you may be able to put stuff in the brackets. I'll need to check the functions they call first so i wouldn't try unless you want to experiment and let me know for future reference.
NOTE!
I haven't used the poll much over the last year or so, so, some of the code i quoted may not be right or may need extra files to be included. Its really trial and error.
Most of the stuff here i just copied and pasted from the demo polls. I must admit though it is quite easy to get some of the code yourself. But, i thought i'd do it this time for you and for others having the same problem/s.
Auron
|
|
|