Post-installation - error msgs during signups

15 years 9 months ago #67288 by zencowboy
Replied by zencowboy on topic Re:Post-installation - error msgs during signups
That's been my experience as well...disabling the FTP layer gives the second error, having the FTP layer enabled gives both.

In my case, I installed CB after several other extensions. Since I hadn't yet opened my site for user traffic, I blew it up and did a fresh J1.5.3 install about an hour ago and will add CB next just to see what happens.

I am using PHP 5 on a shared hosting setup through GoDaddy...not sure what other details of the install would be relevant to chasing this down.

Please Log in to join the conversation.

15 years 9 months ago #67379 by ernst67
And here are my errors with FTP enabled. There seems to be some error with the FTP login, but the secons error line keeps appearing..



* JFTP::connect: Could not connect to host "192.168.1.12" on port 21
* JClientHelper::setCredentialsFromRequest failed

Using Joomla 1.5.2 on a Windows box with PHP 5.

Please Log in to join the conversation.

15 years 9 months ago #67382 by beat
I tried hard reproducing here on my 1.5.3 test installation without luck. :S

Also took a serious look at code, but I'm quite sure CB doesn't use any Joomla FTP layers in front-end !

Do you have any 3pd CB plugins, or Joomla mambots (plugins) installed ?

If yes, if you unpublish all of those 3pd plugins, do you still get the error ?

If still yes, it would help me to have access to such a site, or a test-site with just Joomla+CB 1.2 RC2, which has this problem to debug remotely (would need CB 1.2 RC 2 installed, super-admin access, as well as FTP access, for debuging this). Please PM me access with URL to this thread, so we can get rid of this one efficiently... :) Thanks

Beat - Community Builder Team Member

Before posting on forums: Read FAQ thoroughly -- Help us spend more time coding by helping others in this forum, many thanks :)
CB links: Our membership - CBSubs - Templates - Hosting - Forge - Send me a Private Message (PM) only for private/confidential info

Please Log in to join the conversation.

15 years 9 months ago #67462 by zencowboy
Replied by zencowboy on topic Re:Post-installation - error msgs during signups
Beat, would having admin access to the back end of my site assist you at all?

Please Log in to join the conversation.

15 years 9 months ago #67475 by beat
zencowboy wrote:

Beat, would having admin access to the back end of my site assist you at all?


Thanks got your PM, registered, yes, admin access + FTP would help debug efficiently.

Beat - Community Builder Team Member

Before posting on forums: Read FAQ thoroughly -- Help us spend more time coding by helping others in this forum, many thanks :)
CB links: Our membership - CBSubs - Templates - Hosting - Forge - Send me a Private Message (PM) only for private/confidential info

Please Log in to join the conversation.

15 years 9 months ago #67560 by beat
Thanks to zencowboy giving me access to his installation (it allowed me to put this single line of debug at line 325 of libraries/joomla/client/ftp.php to catch the backtrace of the problem, analyze it and then remove the line, no other changes made on your site except registering users beat and beat2 to trigger the bug, you can now remove my accesses please):

[code:1]ECHO 'unableToLogin'; var_dump(debug_backtrace()); exit();[/code:1]

which allowed me to find that this access is made by sh404sef 1.0.7_Beta - build_133 - Joomla 1.5.x !

It looks like sh404sef tries to do an FTP access from the *frontend* when someone registers !!! to get language configurations ???

I would strongly recommend to not do any FTP access triggered by a frontpage access for performance and security reasons.

Here the backtrace which will allow the sh404sef developers to catch the problem:

[code:1]unableToLoginarray(13) {
[0]=>
array(7) {
["file"]=>
string(71) "/html/libraries/joomla/client/helper.php"
["line"]=>
int(127)
["function"]=>
string(5) "login"
["class"]=>
string(4) "JFTP"
...
[1]=>
array(6) {
["file"]=>
string(71) "/html/libraries/joomla/client/helper.php"
["line"]=>
int(229)
["function"]=>
string(14) "setCredentials"
["class"]=>
string(13) "JClientHelper"
...
[2]=>
array(6) {
["file"]=>
string(93) "/html/administrator/components/com_sh404sef/sh404sef.class.php"
["line"]=>
int(2179)
["function"]=>
string(25) "setCredentialsFromRequest"
["class"]=>
string(13) "JClientHelper"
...
[3]=>
array(4) {
["file"]=>
string(93) "/html/administrator/components/com_sh404sef/sh404sef.class.php"
["line"]=>
int(2235)
["function"]=>
string(28) "shGetFrontEndActiveLanguages"
["args"]=>
array(0) {
}
}
[4]=>
array(4) {
["file"]=>
string(93) "/html/administrator/components/com_sh404sef/sh404sef.class.php"
["line"]=>
int(1171)
["function"]=>
string(20) "shGetActiveLanguages"
["args"]=>
array(0) {
}
}
[5]=>
array(7) {
["file"]=>
string(93) "/html/administrator/components/com_sh404sef/sh404sef.class.php"
["line"]=>
int(841)
["function"]=>
string(18) "shInitLanguageList"
["class"]=>
string(9) "SEFConfig"
["object"]=>
object(SEFConfig)#100 (172) {
["version"]=>
string(107) "1.0.7_Beta - build_133 - Joomla 1.5.x - <a href="extensions.siliana.com/">extensions.Siliana.com"
["Enabled"]=>
bool(false)
["replacement"]=>
string(1) "-"
...
[6]=>
array(7) {
["file"]=>
string(61) "/html/plugins/system/shsef.php"
["line"]=>
int(155)
["function"]=>
string(9) "SEFConfig"
["class"]=>
string(9) "SEFConfig"
...
[7]=>
array(7) {
["file"]=>
string(61) "/html/plugins/system/shsef.php"
["line"]=>
int(51)
["function"]=>
string(11) "shGetConfig"
["class"]=>
string(8) "shRouter"
...
[/code:1]

I'm PMing zencowboy the complete backtrace (removed any site-specific information from the above extract).

Please contact the sh404sef team with URL to this post.

This is *not* a CB 1.2 RC 2 issue, but an issue in sh404sef 1.0.7_Beta - build_133 - Joomla 1.5.x - extensions.Siliana.com

I didn't search for a workaround in sh404sef very hard, but didn't see a quick-fix.

Thanks for reporting this issue.

Beat - Community Builder Team Member

Before posting on forums: Read FAQ thoroughly -- Help us spend more time coding by helping others in this forum, many thanks :)
CB links: Our membership - CBSubs - Templates - Hosting - Forge - Send me a Private Message (PM) only for private/confidential info

Please Log in to join the conversation.

Moderators: beatnantkrileon
Time to create page: 0.321 seconds

Facebook Twitter LinkedIn