Membership plugin won't recognize dedicated ip
3 posts by 2 authors in: Forums > CMS Builder: Plugins & Add-ons
Last Post: October 20, 2010 (RSS)
Hello,
I am currently trying to set up the Membership plugin but have run into a bit of a problem. Right now we are working off a dedicated ip address until the site is ready and will then switch the DNS to point to the new site. The problem is that I'm getting this message when I try to access the sign-up page:
Warning: require_once(cmsAdmin/lib/viewer_functions.php) [function.require-once]: failed to open stream: No such file or directory in /home/davgol20/goldcastleholdings.com/login/signup.php on line 2
Fatal error: require_once() [function.require]: Failed opening required 'cmsAdmin/lib/viewer_functions.php' (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/davgol20/goldcastleholdings.com/login/signup.php on line 2
Now i think the problem lies where it says goldcastleholdings.com. Since the domain hasn't been switched over yet and we are using the dedicated ip instead it is choking. Is there a way I can get this to work using a dedicated ip instead of the actual domain name? I hope I'm being clear.
I am currently trying to set up the Membership plugin but have run into a bit of a problem. Right now we are working off a dedicated ip address until the site is ready and will then switch the DNS to point to the new site. The problem is that I'm getting this message when I try to access the sign-up page:
Warning: require_once(cmsAdmin/lib/viewer_functions.php) [function.require-once]: failed to open stream: No such file or directory in /home/davgol20/goldcastleholdings.com/login/signup.php on line 2
Fatal error: require_once() [function.require]: Failed opening required 'cmsAdmin/lib/viewer_functions.php' (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/davgol20/goldcastleholdings.com/login/signup.php on line 2
Now i think the problem lies where it says goldcastleholdings.com. Since the domain hasn't been switched over yet and we are using the dedicated ip instead it is choking. Is there a way I can get this to work using a dedicated ip instead of the actual domain name? I hope I'm being clear.
Re: [Dan Maitland] Membership plugin won't recognize dedicated ip
By Chris - October 13, 2010
Hi Dan,
The error you're getting is due to a path issue, not a domain issue.
There's a line at the top of signup.php like this:
Because your signup.php script is in your login/ directory, it's looking for viewer_functions.php in login/cmsAdmin/lib/viewer_functions.php. The solution is to fix the line above to provide the correct path to viewer_functions.php. You can either copy-and-paste some code which does this out of any page generated by the CMS Builder Code Generator, or guess at the path.
If I had to make a wild guess, it'd be:
I hope this helps. Please let me know if you have any questions.
The error you're getting is due to a path issue, not a domain issue.
There's a line at the top of signup.php like this:
<?php require_once "cmsAdmin/lib/viewer_functions.php"; ?>
Because your signup.php script is in your login/ directory, it's looking for viewer_functions.php in login/cmsAdmin/lib/viewer_functions.php. The solution is to fix the line above to provide the correct path to viewer_functions.php. You can either copy-and-paste some code which does this out of any page generated by the CMS Builder Code Generator, or guess at the path.
If I had to make a wild guess, it'd be:
<?php require_once "../cmsAdmin/lib/viewer_functions.php"; ?>
I hope this helps. Please let me know if you have any questions.
All the best,
Chris
Chris
Re: [chris] Membership plugin won't recognize dedicated ip
That did the trick Chris, thank you very much.