frekel
Forum Replies Created
-
Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Photo with same nameHi Phoneyiam,
Is this still a issue??
(Lost my todo list 😉Greets,
FrankForum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] New Error w/latest updateTrue…. even with the captcha turned off, I need to get some details into the database (for futher checking along the line).
So what happens is this:
User opens viewimg.php
Cookie is set
Captcha is generated and saved with cookie id into the database
Users votes (form sends captcha, email and vote)
viewimg.php is loaded again
Hidden captcha is checked agains captcha (from database by cookie id)
If the same, the plugin saves the vote
If not the same, captcha error is printed.What happened with you is, you voted (so the cookie is set). Logged out and tried to vote again. The captcha is still (with you cookie id) in the database. So the captcha will never (hummm 99,999999% chance) be the same.
Note: The cookie is saved for 50 days (Hope to remember WHY is set it to 50 some day 😉
Forum: Fixing WordPress
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] photo contestYep, need an url 😉
But it sounds like a customization error:
snippet from the read me file:
Customization The plugin provides a config entry in wp-photocontest-config.php file to skins the pages created by WP-PhotoContest. This entry points to a directory underneath the 'skins' directory. This directory must contain the following files: * template.tpl : This file is used as template for the pages created by WP-PhotoContest (*) * theme.css : This stylesheet is used for styling the pages created by WP-PhotoContest To create a new skin, you can copy the aqua directory in the directory 'skins' into and other directory and edit as aproperiate. Then change the 'CONTESTS_SKIN' contant in wp-photocontest-config.php file. (*) Important: When using a theme, you need to copy page.php or index.php to template.tpl and replace "The_Loop" with [WP-PHOTOCONTEST CONTENT]. See for more information: 'http://codex.wordpress.org/The_Loop' There needs to be a class called 'content_wppc'. The contest will be placed in the HTML-tag with this class.Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Photo with same nameThe first problem is a funny one. Need to look into it.
Can you see if the photos are uploaded?You are using 1.5.2? Right?
And please give me some of the usernames. I know that users with dots (.) in their names have given some trouble in the past!!
The second one is a strange error. If I have time maybe I find a better error description 😉
Hi,
This is a PHP setting. Google your error and a lot of sollutions will popup 😉
Donating is (offcourse 😉 possible. Use the donate button in one of the admin pages!
This is because you have a javascript error in your website.
Most likely because you use a theme where the following code is missing in footer.php
<?php wp_footer(); ?>If it is there, open the site in firefox and download firebug extention to pinpoint the javascript error!
Please contact me by email and i Will look into it.
Antispam@ vanderstad.nl.Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Comments not showing upGreat!
That error indicated that the template.tpl file in your skins-directory was missing.
Thanks for the compliment… 😉
Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Where are the photos?send!
Great to hear you like it 😉
The plugin uses the mailaddress to set a cookie so people aren’t voting over and over.
Still like it 😉Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Where are the photos?Sure, send me an email with your request!
My email is in THE readme-file!Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Where are the photos?Note I: You have to take a look at the = Customization = part of the readme.
That will tell you howto add the plugin within your theme!Note II: Got a small bug in the viewimg.php:
http://wordpress.org/support/topic/plugin-photocontest-plugin-disable-email-verification?replies=2#post-1690120Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Where are the photos?When I goto your page I see
Enter contest
.
Looks like it is working <grin>!I think you want the see the pictures entered in the contest? Right?
If that’s the case, log into the admin-panel –> View PhotoContest and click Refresh next to the admin panel. That should do the trick!From developer to developer:
When a user uploads a picture, I wanted to update the page (with wp_update_post()). Unfortunate the user uploading the picture isn’t allowed to update posts with javascript. This is way an administrator need to trigger this event with the refresh button!Greets,
FrankYes, set the VISIBLE_VOTING to false on the settingspage and fix the bug I created by changing viewimg.php (line 443)
if (VISIBLE_VOTING != '')
to
if (VISIBLE_VOTING == true)sorry 😉
Forum: Plugins
In reply to: [PhotoContest Plugin] [Plugin: PhotoContest Plugin] Comments not showing upI have put the code:
<?php comments_template(); ?>into the template (skins/aqua/template.tpl) so it is called with every page of the plugin BUT it doesn’t work. The function comments_template checks if it is a page, has a post on it and some other checks and that fails….If I have time I will look into it!
Greets,
Frank