Fe login need send 2x

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
jonasfer
Posts: 4
Joined: Fri 23. Sep 2011, 19:41

Fe login need send 2x

Post by jonasfer »

I have a problem with the FeLogin, you put twice the login and password to enter. After entering, if you logout and try again normally enter. If clearing the cache, you must enter the data twice.
Following address: http://www.rolabandas.com.br/index.php?mp3 user jonas pass teste
PS: excuse my English, via Google Translator.
nameless1
Posts: 878
Joined: Sun 27. Apr 2008, 23:22

Re: Fe login need send 2x

Post by nameless1 »

bonjour,

have you tried this only on one computer or on different machines? maybe its a cookie problem.

greetz

nml1
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Fe login need send 2x

Post by flip-flop »

Have you set the session for the frontend in the config?

Code: Select all

$phpwcms['SESSION_FEinit']    = 1; // set 1 to enable sessions in frontend, 0 to disable sessions in frontend
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
jonasfer
Posts: 4
Joined: Fri 23. Sep 2011, 19:41

Re: Fe login need send 2x

Post by jonasfer »

The error occurs on all PCs I tried, but it seems that after the cookie is loaded no longer occurs. Other words, if you log in after log out. When you log in again you only need enter your username and password once.
The config is correct, so that I can login, but always putting twice the username and password.
nameless1
Posts: 878
Joined: Sun 27. Apr 2008, 23:22

Re: Fe login need send 2x

Post by nameless1 »

do you use fe_login?
jonasfer
Posts: 4
Joined: Fri 23. Sep 2011, 19:41

Re: Fe login need send 2x

Post by jonasfer »

Sorry, did not understand the question.
User avatar
top
Posts: 535
Joined: Fri 11. Aug 2006, 15:03
Location: Eutin

Re: Fe login need send 2x

Post by top »

It is a Problem with the settings of the domainname.
After login on http://www.rolabandas... the side opens http://rolabandas... without www.

Check the settings in /config/phpwcms/conf.inc.php
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Fe login need send 2x

Post by flip-flop »

Very well recognized :!: :idea: :!:

conf.inc.php

Code: Select all

$phpwcms['site']              = 'http://www.example.com/';
A simple redirection to one domain in .htaccess (http://www.example.com)

Code: Select all

RewriteCond %{HTTP_HOST} !www.example.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
jonasfer
Posts: 4
Joined: Fri 23. Sep 2011, 19:41

Re: Fe login need send 2x

Post by jonasfer »

Here was my mistake, thank you all!
Post Reply