Author |
Message |
|
download phpmyadmin and upload it to your database....
(search at google)
Then you will get a total delete/edit/recover and all that control.
Extract the zip and upload it to your server.
Open the folder where u have uploaded phpmyadmin, and you will see all things been installed onto youre database...
Delete, and then install the script again.
Inder.
|
 |
|
If you spend about 5 mins looking through the posts you will find that this question has been answered over and over and over and over again
|
 |
|
Yes please! Someone out there must be able to please walk us through the steps?
|
 |
|
I also forgot my Admin logon and password for my guestbook. So I was wondering how exactly would I add a new admin login.
|
 |
|
Hi folks,
Here are the steps you have to make sure of ..
1. Once the scripts are installed, create new poll.
2. One the Admin CP, click on Polls List
3. Click on the little notepad icon "help"
4. Copy the first scripts to your top of html index page before any html
5. Copy the second half of the script to the spot on your page where you want your poll to be viewed..
6. Change your index from index.html to index.php
You are done .... Enjoy ..
I spent quite long time until i got it right...
Abdulkareem
yousifad@hotmail.com
|
 |
|
Jack wrote:Hi...
When I embeded the scripts shown in the help file on the admin control panel into my index html page, all i get is this "poll_process(4); ?> " shown on my at the bottom of page... help is highly appreciated.
Jack
|
 |
|
Hi...
When I follow impeded the scripts shown in the help file on the admin control panel, all i get is this "poll_process(4); ?> " shown on my index page... help is highly appreciated.
Jack
|
 |
|
In the end someone posted the correct solution for the Problem. Thanx.
|
 |
|
you will just have to save your file as index.php or something.php. In order to fin out what you should put in the file. go to the admin panel of the poll and click on the little notepad on the right of the poll you want to include in your page. Now you get a page which tells u what you should put on ur website
|
 |
|
Hi!
I made the changes to the db folder:
host: localhost
Db: database name which is a db that it is already exists
user: my user name
Pass: my password
When I upload the files and run the installer I could not go beyond the first screen where it says make the chagnes to config.php ...
please help me out
|
 |
|
i have the exact same problem...............does support read this forum>?
help needed in here folks.!!
|
 |
|
i need help! the server i have my site on is messed up, so i am linking to all of the pictures from my site onto angelfire. I have the perl version of te guestbook and i do'nt know how to make the links to my pictures that are on the other server. how do you do that?
|
 |
|
Where it says:
echo $php_poll->poll_process(4); // x = Poll ID
the 4 should actually be x. The 4 is a variable that works with my polls but will not with yours unless you have a poll with the poll ID of 4.
|
 |
|
I am very new to the Advanced Poll and am not very familiar with php at all. However I have been learning this advanced poll very quickly. After looking thru the demos that come with the adv. poll I tried a snippet that I hoped would work and it did. So here is how to change wich template you would like to use. It is very easy.
Normally this code is what you would have in your html:
include_once "/var/www/htdocs/chris/yourdomain/poll/booth.php";
echo $php_poll->poll_process(4); // x = Poll ID
Now add this:
$php_poll->set_template_set("simple"); // simple = template name
And this is how it should look in the end:
include_once "/var/www/htdocs/chris/yourdomain/poll/booth.php";
$php_poll->set_template_set("simple"); // simple = template name
echo $php_poll->poll_process(4); // x = Poll ID
Hope this helps.
|
 |
|
Try this :
<?php
// Important! You have to include it before your html code
include_once "/home/viralcor/www/www/Scripts/Poll PHP/textfile/poll_cookie.php";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!-- TemplateBeginEditable name="doctitle" -->
<title>Viral-Core</title>
<!-- TemplateEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
</head>
<body>
<?php
include_once "/home/viralcor/www/www/Scripts/Poll PHP/textfile/booth.php";
echo $php_poll->poll_process(4);
?>
</body>
</html>
Try this. I have reconfigured your code to make sure everything is closed off. Only this code,
<?php
// Important! You have to include it before your html code
include_once "/home/viralcor/www/www/Scripts/Poll PHP/textfile/poll_cookie.php";
?>
Only that code(above) has to be a the very top of each page that the poll is on. The code that shows where your poll is on the page can go anywhere in the body.
Also very important: Make sure the extension of your page is .php not .html. If it is .html, simply change the extension to .php and it should work
|
 |
|