Help: My Join Button Is Not Working

I just noticed that my join button is not working. Here http://bit.ly/h94EZg

What do I do? The page is not throwing up any error message. Help.

Quote · 28 Feb 2011

what have you changed, because clearly your join button was working previously.

When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support
Quote · 28 Feb 2011

Something's been altered with your join form/page as your date of birth calender doesn't pop-up and starts from the yeah 0001.The error on join is:

Fatal error: Call to undefined function isRestrictedLogin() in /home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function on line 1

...therefore I'd have a look at reverting to an older copy of  BxDolProfileFields.php, or reversing the changes you'd made... or download an unchanged copy from Boonex.

Quote · 28 Feb 2011

 

Something's been altered with your join form/page as your date of birth calender doesn't pop-up and starts from the yeah 0001.The error on join is:

Fatal error: Call to undefined function isRestrictedLogin() in /home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function on line 1

...therefore I'd have a look at reverting to an older copy of  BxDolProfileFields.php, or reversing the changes you'd made... or download an unchanged copy from Boonex.

Just reverted the theme to the boonex default template, and was able to see that error. I cannot remember exactly the change I made, but its likely it did not save properly.

So how do I download this exact file so I can replace the one with error.
I mean the on in bold. I run D7.0.5 Any idea on this?

Quote · 28 Feb 2011

The function it says it can't find is isRestrictedLogin()

I cannot find that function anywhere in dolphin. So it has to be an addition.

Try restoring a fresh copy of inc/classes/BxDolProfileFields.php from the dolphin 7.0.5 zip file.

Considering the line this error is occurring on, it may also be a problem with one of the check functions in the profile fields in the database. Did you recently make any changes to any profile field. Primarily changes to any of the check values.




https://www.deanbassett.com
Quote · 28 Feb 2011

http://www.boonex.com/trac/dolphin/browser/trunk/inc/classes/BxDolProfileFields.php

Quote · 28 Feb 2011

It's the toolbar at the bottom of your page, remove it and see if the join button work.

Quote · 1 Mar 2011

 

It's the toolbar at the bottom of your page, remove it and see if the join button work.

The Wibya is on UNI theme and not the custom theme which am running. Its been long the tool bar was added and the site functioned well then. All the same I have removed it, but my Join Button its still not working.

Quote · 1 Mar 2011

I add the Wibya toolbar and my join button stop working, I removed it and all is fine.  Check some of your other added Java scripts, one of them is interfering with Dolphin script.

Quote · 1 Mar 2011

 

 

It's the toolbar at the bottom of your page, remove it and see if the join button work.

The Wibya is on UNI theme and not the custom theme which am running. Its been long the tool bar was added and the site functioned well then. All the same I have removed it, but my Join Button its still not working.

I see this error when I've tried login :

<br />
<b>Fatal error</b>:  Call to undefined function isRestrictedLogin() in <b>/home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function</b> on line <b>1</b><br />

Try to delete this method isRestrictedLogin from join process!

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 2 Mar 2011

 

 

 

It's the toolbar at the bottom of your page, remove it and see if the join button work.

The Wibya is on UNI theme and not the custom theme which am running. Its been long the tool bar was added and the site functioned well then. All the same I have removed it, but my Join Button its still not working.

I see this error when I've tried login :

<br />
<b>Fatal error</b>:  Call to undefined function isRestrictedLogin() in <b>/home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function</b> on line <b>1</b><br />

Try to delete this method isRestrictedLogin from join process!

Please how do I delete that?

Quote · 2 Mar 2011

 

 

 

 

It's the toolbar at the bottom of your page, remove it and see if the join button work.

The Wibya is on UNI theme and not the custom theme which am running. Its been long the tool bar was added and the site functioned well then. All the same I have removed it, but my Join Button its still not working.

I see this error when I've tried login :

<br />
<b>Fatal error</b>:  Call to undefined function isRestrictedLogin() in <b>/home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function</b> on line <b>1</b><br />

Try to delete this method isRestrictedLogin from join process!

Please how do I delete that?

It's looked like as daeno's redirect module.... Did you install it early?

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 2 Mar 2011

^^^
I don't have that mod. What I have is Deanos Tools and MTools. From the activities on Members calendar its obvious I had last registration in Febuary 3rd. I really don't know what happened on that day.

Quote · 2 Mar 2011

 

^^^
I don't have that mod. What I have is Deanos Tools and MTools. From the activities on Members calendar its obvious I had last registration in Febuary 3rd. I really don't know what happened on that day.

OK make a ticket on support page! Make sure also that you'll assign it to eSASe

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 2 Mar 2011

Moreover, I have replaced join.php and BxDolProfileFields.php still nothing. Please I need help.

How do I get this done - Try to delete this method isRestrictedLogin from join process!

Quote · 2 Mar 2011

Fatal error: Call to undefined function isRestrictedLogin() in /home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function on line 1

Here is the code from the page with the error . Highlighted is the line complained. Thanks as you help on this.

 

367    function checkPostValueForCheck( $aItem, $mValue ) {
368        $sCheck = $aItem['Check'];
369        if( empty($sCheck) )
370            return true;
371       
372        $sFunc = create_function( '$arg0', $sCheck );
373       
374        if( !$sFunc( $mValue ) )
375            return false;
376       
377        return true;
378    }

Quote · 2 Mar 2011

 

Fatal error: Call to undefined function isRestrictedLogin() in /home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function on line 1

Here is the code from the page with the error . Highlighted is the line complained. Thanks as you help on this.

 

367    function checkPostValueForCheck( $aItem, $mValue ) {
368        $sCheck = $aItem['Check'];
369        if( empty($sCheck) )
370            return true;
371       
372        $sFunc = create_function( '$arg0', $sCheck );
373       
374        if( !$sFunc( $mValue ) )
375            return false;
376       
377        return true;
378    }

Try to find and delete this function isRestrictedLogin in your DB - sys_profiles_fields

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 2 Mar 2011

 

 

Fatal error: Call to undefined function isRestrictedLogin() in /home/thecoalc/public_html/inc/classes/BxDolProfileFields.php(372) : runtime-created function on line 1

Here is the code from the page with the error . Highlighted is the line complained. Thanks as you help on this.

 

367    function checkPostValueForCheck( $aItem, $mValue ) {
368        $sCheck = $aItem['Check'];
369        if( empty($sCheck) )
370            return true;
371       
372        $sFunc = create_function( '$arg0', $sCheck );
373       
374        if( !$sFunc( $mValue ) )
375            return false;
376       
377        return true;
378    }

Try to find and delete this function isRestrictedLogin in your DB - sys_profiles_fields

No such function found.

Quote · 2 Mar 2011

From the activities on Members calendar its obvious I had last registration in February 3rd. I have attached the error log from my Cpanel from Feb 1st to Feb 15th. Can is there anything suspicious from the log?

error_log.txt · 122.7K · 269 downloads
Quote · 3 Mar 2011

you created this error on Feb 6, is when that PHP FATAL ERROR starts being produced.

so whatever you done on Feb 6, in regards to the members join or access, is what is a problem.

[01-Feb-2011 17:17:41] PHP Warning:  parse_url(/join.php///index.php?_SERVER[DOCUMENT_ROOT]=http://www.magmareport.com//one.txt??) [<a href='function.parse-url'>function.parse-url</a>]: Unable to parse URL in /home/thecoalc/public_html/inc/classes/BxDolSEO.php on line 140

do you see your SEO gig is breaking the site. BxDolProfileFields.php has an issue with the isRestrictedLogged() so find that and remove it or remove the mod you installed on Feb 6 - 7

 

also, you need to lose that magmareport gig for your SEO, its broken, and none of the urls are being parsed.

 

From the activities on Members calendar its obvious I had last registration in February 3rd. I have attached the error log from my Cpanel from Feb 1st to Feb 15th. Can is there anything suspicious from the log?

 

When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support
Quote · 3 Mar 2011

Thanks DosDawg and everyone for you support. I have tried everything including uninstalling the SEO mod but to no avail. Although I have not been able to find and delete this isRestrictedLogged()

Am facing the option of starting all over again with a new installation. But have one question, is there a way to salvage some section of my site - like members profile, blog and photos? It will hurt a lot if I loose them (from SE ranking to the pain of re-doing it all over).

Quote · 5 Mar 2011

A site Im building - aiming at launching in 2 weeks has just the same problem!!!

 

Join button does nothing. Doesnt give any red exclamation marks either, it just does nothing.

Quote · 12 May 2011

Do you have the Wibiya toolbar installed too?

Quote · 12 May 2011

 

Do you have the Wibiya toolbar installed too?

No.

Only a couple of mods that Ive tried and tested on an identical site.

Cant understand whats stopping it? It was working as I built a test account a while ago.

Is there somewhere I can see error reporting on this even though its not throwing up any errors?

Quote · 12 May 2011

my cpanel error log is only showing me that the following image is not being found

images/icons/_dbtopmenu_right.png

images/icons/_dbtopmenu_left.png

 

I cant see how this would effect the join.php not working though...

Other than that, no errors are being shown.

Quote · 12 May 2011

Does anyone know the answer to this question please:

When a member logs in on a particular page lets say the view video url, then the site lets you log in and it's fine and shows you logged in but not on the page you actually logged in on? So once logged in it displays you are in as 'username' bla bla bla but go back to the view video page from where you initially logged in on and it still shows the page as a visitor? 'welcome guest text'

Quote · 28 Jun 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.