Support Forum Project Downloads FAQ Documentation About Demo Tutorials Blog Plugins
November 21, 2009, 06:51:08 am *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: Private messages disabled
Caused by the massive abuse of the PM system in the past, the sending of personal messages has been disabled for all regular users on the Coppermine forum.
[more]
   Home   Help Search Board rules Login Register  
Pages: 1 ... 11 12 13 14 [15] 16 17 18 19 ... 40   Go Down
  Send this topic  |  Print  
Author Topic: Captcha (Visual Confirmation) for comments/registration/reporting/login/ecard  (Read 222686 times)
0 Members and 1 Guest are viewing this topic.
holyworld
Coppermine novice
*
Gender: Male
Posts: 20


« Reply #280 on: October 07, 2007, 09:18:12 pm »

Thanks!

I've removed a pluging called "Contact" which is using Captcha as well.. this might have cause the trouble.

Problem is not solved yet. Now instead of a red cross I do get the word "image".

http://www.unmomento.net/captcha.php

Any hints?

Thanks a lot!

PS1: Is there a way to use the plugin "contact" together with the Captcha plugin? Probably by just changing the order as you suggested..
PS2: The contact plugin by Franzt works fine.. the image is being displayed correctly...

Cheers
« Last Edit: October 07, 2007, 09:28:26 pm by holyworld » Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #281 on: October 07, 2007, 09:42:36 pm »

Your image is corrupted by a plugin that is injecting code to all pages
First of all disable all plugins except CAPTCHA and check if it's working then go ahead and install others and check

Quote
Is there a way to use the plugin "contact" together with the Captcha plugin? Probably by just changing the order as you suggested..
Sure , there shouldn't be a major problem with that
Logged

‍I don't answer to PM with support question
Please post your issue to related board
holyworld
Coppermine novice
*
Gender: Male
Posts: 20


« Reply #282 on: October 08, 2007, 07:47:04 am »

Thanks for the quick response.

--> removed ALL plugins (actually I have done this before as well)

1) Installed V1.9   --> OK
2) installed V2.0 --> OK
3) installed V3.0 --> NOT OK, red cross

reinstalled and still the red cross... no other plugins are installed.. and the Captch plugin is original. The table exists in the DB... 
All customization I have done is based on the normal framework.

right now I have installed V2.0... but would love to switch to V3.0

any other hints where to look?

Thanks!!
Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #283 on: October 08, 2007, 07:55:26 am »

just copy captcha.php from v 3.0 to your gallery root and let me know
Logged

‍I don't answer to PM with support question
Please post your issue to related board
holyworld
Coppermine novice
*
Gender: Male
Posts: 20


« Reply #284 on: October 08, 2007, 05:56:48 pm »

done, incl. switched on debug mode.

thanks
Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #285 on: October 08, 2007, 09:22:12 pm »

Sorry but you need to create cpg133_plugin_captcha table too
here is the code
Code:
CREATE TABLE  `cpg132_plugin_captcha` (
  `time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ip_addr` tinytext NOT NULL,
  `code` char(32) NOT NULL default ''
) TYPE=MyISAM COMMENT='Used to store captcha code and user ip';
you should run it under phpmyadmin by selecting your gallery databse
Logged

‍I don't answer to PM with support question
Please post your issue to related board
holyworld
Coppermine novice
*
Gender: Male
Posts: 20


« Reply #286 on: October 09, 2007, 12:51:46 am »

OK, table created successfully!

The capcha.php still return the same text: "image".

hmnn I am really wondering, why V2.0 and the Contact plugin do work.. and V3.0 not...
Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #287 on: October 09, 2007, 05:10:39 am »

Pm me
- An admin account of your gallery
- A ftp account
if it's okay with youand I'll take a look at that
Logged

‍I don't answer to PM with support question
Please post your issue to related board
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #288 on: October 09, 2007, 09:49:43 am »

@holyworld: That wasn't (directly) captcha plugin issue
you had an empty line at the very first of themes/unmomento/theme.php and that cause captcha image break
I fixed it for you Wink

This kinds of mistakes may effect some other functionality of gallery as well (ZIP download of favorite)
« Last Edit: October 09, 2007, 09:56:03 am by Sami » Logged

‍I don't answer to PM with support question
Please post your issue to related board
holyworld
Coppermine novice
*
Gender: Male
Posts: 20


« Reply #289 on: October 09, 2007, 11:34:31 am »

Indeed it is fixed.. for both issues!!

Thanks a lot for this fantastic help!

Cheers

PS I see now what price has to be payed, when you customize these themes too much!... I had issues as well with Highslide.. but its working now....
Logged
jlove
Coppermine novice
*
Posts: 41


« Reply #290 on: October 13, 2007, 02:09:18 am »

I tried upgrading from 1.8 to 3.0, and
1. the captcha image didn't show up.
2. I got a critical database error when I tried to log back in. I had to delete the plugin in order to login.
Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #291 on: October 13, 2007, 08:32:01 am »

- Enable debug and post actual error (not debug info) here
- Post a link to gallery
Logged

‍I don't answer to PM with support question
Please post your issue to related board
Gianpaolo64
Contributor
***
Posts: 6


WWW
« Reply #292 on: October 18, 2007, 09:40:41 pm »

I upgraded from 1.7 to 3.0, installation was ok and also plugin is working as expected. There is only a small problem with ecards, if you preview an ecard the "textarea" with the message in the preview is empty. I fixed the problem by adding the following line:
Code:
$message = get_post_var('message');
after
Code:
case 'ecard.php':

in function captcha_main()
I don't know whether this is the correct way to do it but now it works.

Gianpaolo
Logged
Sami Topic starter
Dev Team member
****
Gender: Male
Iran, Islamic Republic of Iran, Islamic Republic of

Posts: 3689


BMossavari


WWW
« Reply #293 on: October 20, 2007, 11:01:00 am »

Thanks for pointing that out I'll add it to next version
Logged

‍I don't answer to PM with support question
Please post your issue to related board
jarodsafehouse71
Coppermine novice
*
Posts: 43


« Reply #294 on: November 04, 2007, 03:06:17 pm »

Hi!

I installed this plugin, but the image verification IMAGE isn't loading. What am I missing here?

http://www.jarodsafehouse.com/mtwscrapbook/displayimage.php?album=lastup&cat=0&pos=0
Logged
Hein Traag
Dev Team member
****
Gender: Male
Netherlands Netherlands

Posts: 2153


A, B, Cpg


WWW
« Reply #295 on: November 04, 2007, 03:57:39 pm »

Do not forget to put captcha.php at the root of your coppermine.

Quote
3.Copy captcha.php to gallery root
Logged

suwii
Coppermine newbie

Gender: Female
Posts: 14


WWW
« Reply #296 on: November 05, 2007, 07:19:01 am »

My captcha.php image breaks as well....gallery is http://a-scott.for-fan.org/gallery
here is the debug code:

Removed

really want this to work Sad i've uploaded all the other stuff
« Last Edit: November 05, 2007, 07:25:04 am by suwii » Logged
Joachim Müller
Administrator
*****
Gender: Male
Germany Germany

Posts: 45051


aka "GauGau"


WWW
« Reply #297 on: November 05, 2007, 07:21:41 am »

Don't post debug_output unless requested. Posting a link to your gallery might help more.
Logged
suwii
Coppermine newbie

Gender: Female
Posts: 14


WWW
« Reply #298 on: November 05, 2007, 07:24:18 am »

oh sorry! i just edited my post with the link Smiley
Logged
suwii
Coppermine newbie

Gender: Female
Posts: 14


WWW
« Reply #299 on: November 05, 2007, 12:13:54 pm »

sorry i need help asap
haveta always delete it so i can log back in again since the image verification isnt loading so i can't even log into admin panel...
Logged
Pages: 1 ... 11 12 13 14 [15] 16 17 18 19 ... 40   Go Up
  Send this topic  |  Print  
 
Jump to:  

Powered by SMF 1.1.10 | SMF © 2006-2009, Simple Machines LLC
Page created in 0.086 seconds with 17 queries.