SimplePortal

Support => English Support => Topic started by: gietl on January 09, 2010, 01:50:32 AM

Title: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 09, 2010, 01:50:32 AM
SMF 1.1.11
SP 2.3.1
http://www.rmcb5.com

For guest users this appears twice both in the top nav and in the left User Info block.

I am running the portal home as standalone, just upgraded to 2.3.1, SMF is 1.1.11. Had the same issue with SP 2.3

I tried searching for this subject to no avail, if it is a repeat my apologies.
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: kai920 on January 09, 2010, 11:07:49 AM
Check your Sources/Subs.php file and search for this:

Code: [Select]
$txt['welcome_guest_activate']

Are there 2 instances?
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 09, 2010, 01:09:25 PM
Thanks for the response, it's in there just once. It's only the portal though, because if you click Forum it does not happen anywhere outside the Portal.

Could there be something with the changes in index.php

I ask because while trying to get the standalone to work properly I mistakenly put the standalone file as index.php into the SMF directory and needed to manually recreate it. Yes we all make mistakes.

Anyway, I followed the manual instructions for that file, that is about the only thing I can think of.
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: Nathaniel on January 12, 2010, 09:16:21 AM
Check your index.php to see if the following function is being called twice "setupThemeContext", that function should only be called once, that could be your problem.

If you are unsure what to do, then please attach your index.php file.
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 12, 2010, 11:50:59 PM
I do not see that function being called in the index.php under my forum root or my site root (which is the standalone file renamed index.php)

Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 14, 2010, 10:15:34 PM
I found usages of setupThemeContext()

1 in SSI.psp

and the function its;f as well as a call to it in Subs.php

I am unable to find a reference to it anywhere.

However. I do know the standalone calls SSI.php, and does that call Subs.php as well? Might that cause any issue?
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 19, 2010, 10:07:29 AM
I'm not really getting anywhere with this minor issue, but would love to resolve it.
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: [SiNaN] on January 20, 2010, 03:53:39 PM
You are using an outdated version of PortalStandalone.php file.

Download PortalStandalone.php file which is in your forum root. Open it with a text editor and change the 'path/to/forum' code according to your forum. Then rename it to index.php and upload to your website root, replacing your current file.
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 20, 2010, 04:59:05 PM
You are using an outdated version of PortalStandalone.php file.

Download PortalStandalone.php file which is in your forum root. Open it with a text editor and change the 'path/to/forum' code according to your forum. Then rename it to index.php and upload to your website root, replacing your current file.

Thank you for the response, I'm not sure that is the case as far as I can tell. I did it again just to try and there is no change. The version in the 2.3.1 package is the same as what I am posting below.

This is what is in my now index.php:

Code: [Select]
<?php
/**********************************************************************************
* PortalStandalone.php                                                            *
***********************************************************************************
* SimplePortal                                                                    *
* SMF Modification Project Founded by [SiNaN] (sinan@simplemachines.org)          *
* =============================================================================== *
* Software Version:           SimplePortal 2.3                                    *
* Software by:                SimplePortal Team (http://www.simpleportal.net)     *
* Copyright 2008-2009 by:     SimplePortal Team (http://www.simpleportal.net)     *
* Support, News, Updates at:  http://www.simpleportal.net                         *
***********************************************************************************
* This program is free software; you may redistribute it and/or modify it under   *
* the terms of the provided license as published by Simple Machines LLC.          *
*                                                                                 *
* This program is distributed in the hope that it is and will be useful, but      *
* WITHOUT ANY WARRANTIES; without even any implied warranty of MERCHANTABILITY    *
* or FITNESS FOR A PARTICULAR PURPOSE.                                            *
*                                                                                 *
* See the "license.txt" file for details of the Simple Machines license.          *
* The latest version can always be found at http://www.simplemachines.org.        *
**********************************************************************************/

/*

This file here, unbelievably, has your portal within.

In order to use SimplePortal in standalone mode:
+ Go to "SPortal Admin" >> "Configuration" >> "General Settings"
+ Select "Standalone" mode as "Portal Mode"
+ Set "Standalone URL" as the full url of this file.
+ Edit path to the forum ($forum_dir) in this file.

See? It's just magic!

*/

global $sp_standalone;

// Should be the full path!
$forum_dir '/xxxxxx/xxxxxxxx/xxxxxxxxxxx/rmcb5.com/public_html/forums';

// Let them know the mode.
$sp_standalone true;

// Hmm, wrong forum dir?
if (!file_exists($forum_dir '/index.php'))
die('Wrong $forum_dir value. Please make sure that the $forum_value variable points to your forum\'s directory.');

// Get out the forum's SMF version number.
$data substr(file_get_contents($forum_dir '/index.php'), 04096);
if (
preg_match('~\*\s*Software\s+Version:\s+(SMF\s+.+?)[\s]{2}~i'$data$match) != 0)
$forum_version $match[1];

// Call the SSI magic.
require_once($forum_dir '/SSI.php');

// Wireless? We don't support you, yet.
if (WIRELESS)
redirectexit();

// Get our main file.
require_once($sourcedir '/PortalMain.php');

// Re-initialize SP.
sportal_init(true);

// Get the page ready.
sportal_main();

// Here we go!
obExit(true);

?>

Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: [SiNaN] on January 22, 2010, 09:25:07 AM
I see. It looks like this wasn't fixed in SMF 1.1.

Sources/Subs.php

Code: (Find) [Select]
// Get some news...
Code: (Replace) [Select]
static $loaded;
if (!empty($loaded))
return;
$loaded = true;

// Get some news...
Title: Re: Did You MIss Your Activation Email printing twice in portal
Post by: gietl on January 22, 2010, 12:19:06 PM
Perfect! Thanks for looking into it and posting the solution! Everything else works great and I know that was pretty trivial.

I appreciate the help and the great mod.
SimplePortal 2.3.8 © 2008-2024, SimplePortal