×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC: Cant see captcha letters

Cant see captcha letters 15 years 1 month ago #2695

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear friends:

We cant post comments due to the problem that we cant see tha cpatcha letters. There is a blank field like missing image. What to do?

Thanks for your reply.

Jonathan

Cant see captcha letters 15 years 1 month ago #2723

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Is your problem solved?

Cant see captcha letters 15 years 1 month ago #2732

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear Daniel:

Thanks for your concerns.

The problem has not been solved, unfortunately! I cant use the program!

All the best and again thank you for replying!

Jonathan

Cant see captcha letters 15 years 1 month ago #2733

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Jonathan, don't give up so easily. We will fix the problem. :)
We need more information and more patience from your side :)

Cant see captcha letters 15 years 1 month ago #2734

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear Daniel:

What kind of info would you need?

Website: www.uncli.rog

Thanks so much

Jonathan

Cant see captcha letters 15 years 1 month ago #2737

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Hey Jonathan,
Please give me a link to an article with the comment form turned on.
I must see if the captcha is leading to an internal server error, then I can give you more info.

Cant see captcha letters 15 years 1 month ago #2741

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear Daniel:

Thanks for your help. Follwoing one link. I could grant you access if you need, just let mke know.

www.uncli.org/index.php?option=com_conte...o&Itemid=64#JOSC_TOP

Yours Jonathan

Cant see captcha letters 15 years 1 month ago #2742

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Here you have it:
www.uncli.org/components/com_comment/jos...e43fd63e05a9f4eafb7f

Common reasons for this error are:

* Incorrect file/directory permissions: Above 755.

In order files to be processed by the webserver, their permissions have to be equal or below 755. You can update file permissions with a FTP client or through cPanel's File Manager.
* Incorrect Apache directives inside .htaccess file.

Make sure you have not specified unsupported directives inside the local .htaccess file. Such include PHP settings and Apache module settings.

Cant see captcha letters 15 years 1 month ago #2744

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear Daniel:

The permisson is set to 755.

What shall I do with the htaccess - thats too much for my knowledge!

Thanks
Jonathan

Cant see captcha letters 15 years 1 month ago #2745

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Away
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081

If you are the webmaster of this site please log in to Cpanel and check the Error Logs. You will find the exact reason for this error there.


Please check the error log and paste the error message here.

Cant see captcha letters 15 years 1 month ago #2749

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dear Daniel:

There is no error log. Following the htaccess.txt.

Thanks Jonathan


##
# @version $Id: htaccess.txt 10492 2008-07-02 06:38:28Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
# mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section

Cant see captcha letters 15 years 1 month ago #2750

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Dera Daniel:

Coul you communicate via Skype?

my Skype: mabelsuwe

Thanks a lot
Jonathan

Cant see captcha letters 15 years 1 month ago #2752

  • Jonathan
  • Jonathan's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Lieber Daniel:

Wir danken Dir recht herzlich für die großartige Hilfe und Unterstützung. Wir werden Euch empfehlen und selbstverständlich wie besprochen an Deinen Programm teilnehmen.

Herzlichst
Jonathan

Dear Daniel:

We thank you for your great help and support. We will recommand you und of course we gone participate on your program!

Sincerely Yours
Jonathan


Estimado Daniel:

Muchisimas gracias por tu apoyo y suporte. Nosotros recomendaremos a ustedes a participaremos, como dicho, en tu programa.

Saludos
Jonathan
  • Page:
  • 1
Time to create page: 0.138 seconds