Main Menu
collapse

Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

User Info

Welcome Guest.
Please log in.

Who's Online

  • Dot Guests: 947
  • Dot Hidden: 0
  • Dot Users: 1
  • Dot Users Online:

Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]


Welcome to SimplePortal.net! You can download SimplePortal from the Downloads Area!

Did You MIss Your Activation Email printing twice in portal

Started by gietl, January 09, 2010, 01:50:32 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

gietl

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.

kai920

Check your Sources/Subs.php file and search for this:


$txt['welcome_guest_activate']


Are there 2 instances?

gietl

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.

Nathaniel

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.
SMF Friend (Former Support Specialist) | SimplePortal DeveloperMy SMF Mods | SimplePortal"Quis custodiet ipsos custodes?" - Who will Guard the Guards?Please don't send me ANY support related PMs. I will just delete them.

gietl

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)


gietl

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?

gietl

I'm not really getting anywhere with this minor issue, but would love to resolve it.

[SiNaN]

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.
And slowly, you come to realize... It's all as it should be...

gietl

Quote from: [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.

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:


<?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'), 0, 4096);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);?>


[SiNaN]

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...
And slowly, you come to realize... It's all as it should be...

gietl

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.