Welcome Guest, Not a member yet? Register   Sign In
A3M - Account Authentication & Authorization Module

[eluser]Hermes Alves[/eluser]
My native sign in works! A3M sign in works fine.

My .htaccess

<IfModule rewrite_module>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

My config.php
$config['index_page'] = "";
$config['uri_protocol'] = "AUTO";

[eluser]Peng Kong[/eluser]
why didn't you use the default .htaccess i provided?

RewriteEngine on
RewriteRule ^$ /index.php [L]
RewriteCond $1 !^(index\.php|css|img|js|scripts|system|uploads|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]

[eluser]Hermes Alves[/eluser]
I did a fresh install and now the error changed, click the link to see:

http://www.codeigniter.com.br/a3m/accoun..._in_google

Thanks!

[eluser]Hermes Alves[/eluser]
The error 404 is for anywhere account

index.php/account/sign_in_yahoo/verify?janrain_nonce=2010-09-23

Yahoo, google, twiiter and other.

The return of yahoo, google or twitter display 404 page.

I was using the .htaccess default now.

[eluser]Peng Kong[/eluser]
[quote author="Hermes Alves" date="1285268609"]I did a fresh install and now the error changed, click the link to see:

http://www.codeigniter.com.br/a3m/accoun..._in_google

Thanks![/quote]

it's a server config issue.

what server are your running?

you're getting error because the openid library can't find a source of randomness
which should be available on *nix machines and not on windows machines

but for windows machines i already added

if (PHP_OS == "WIN32" || PHP_OS == "WINNT") define('Auth_OpenID_RAND_SOURCE', NULL);

all you need to do to get it to work is go to

modules/account/plugins/openid_pi.php

and remove

if (PHP_OS == "WIN32" || PHP_OS == "WINNT")

so you define 'Auth_OpenID_RAND_SOURCE' as NULL

but you should of cause configure your source of randomness for security reasons.

[eluser]Peng Kong[/eluser]
[quote author="Hermes Alves" date="1285282667"]The error 404 is for anywhere account

index.php/account/sign_in_yahoo/verify?janrain_nonce=2010-09-23

Yahoo, google, twiiter and other.

The return of yahoo, google or twitter display 404 page.

I was using the .htaccess default now.[/quote]

that's cuz you messed up the htaccess. use the default.

[eluser]Hermes Alves[/eluser]
I'm using. Htaccess

RewriteEngine on
RewriteRule ^$ /index.php [L]
RewriteCond $1 !^(index\.php|css|img|js|scripts|system|uploads|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]

The server is linux
Kernel version 2.6.18-194.11.1.el5.centos.plusxen
CPanel Version 11.26.9
X86_64
MySQL version 5.0.91-community

[eluser]Hermes Alves[/eluser]
I increased the limits of redirections the Apache and hung mod_security, it worked. This was the problem. Thank you for your attention!

[eluser]Peng Kong[/eluser]
cool!

[eluser]electronik_0[/eluser]
Hello, the aplication error facebook connect


API Error Code: 100
API Error Description: Invalid parameter
Error Message: next is not owned by the application.




Theme © iAndrew 2016 - Forum software by © MyBB