News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

SimplePortal

Started by SimplePortal Team, March 10, 2008, 11:16:07 PM

Previous topic - Next topic

apashi

i allready installed romanian language (romanian-utf8)

this is also my default forum language!


kat


Angelina Belle

Do you have any errors in your log file?
You may have a problem similar to Flamechica's above.
Did you have any errors on install?

Can you check Subs.php against the manual install instructions, to see if all the changes for the button menu got made?
Never attribute to malice that which is adequately explained by stupidity. -- Hanlon's Razor

apashi

i solved the problem! :D

Thanks AngelinaBelle, you were right, i found some problem in my subs.php file  :o

thanks again!  ;)


MoreBloodWine

Can this import block and article data from TP SQL tables or would I have to rip them from the DB and then enter into SP ?
Want a sig like mine for your BTCGuild stats ? Then check this out: Spend-ur-Bits


flamechica

#3467
Quote from: AngelinaBelle on August 27, 2010, 10:26:05 AM
Are you still getting the error 8: Undefined variable: modSettings

Yes


Quote from: AngelinaBelle on August 27, 2010, 10:26:05 AMBut I just looked at your file again, and I see there is more missing.  Is this your default theme?
The install should have gotten all of this right .

Please do the following:
Take out the change I just asked you to make.

Check on all the changes described in the manual install instructions at http://custom.simplemachines.org/mods/index.php?action=parse;mod=1104;attach=139821;smf_version=1.1.11 for the file index.template.php

I can see you don't have all the required changes to this file.

Yes, this is my default theme and it is what the installer put in there. I am not sure what you think is missing...I have gone through the manual install about a hundred times and just went through it again and still didn't find a single thing that was different or missing from the manual install instructions. Attached my index.template.php again... If I am being blind maybe you should clue me in if you saw it

Angelina Belle

Quote from: flamechica on August 30, 2010, 02:44:19 AM
Yes, this is my default theme and it is what the installer put in there.
Yes the installer failed. Partially. And it should have given you a "test failed" message.
In the file you just attached, I can see, in template_menu, that you have

$current_action = 'home';

But you need to have

global $modSettings;
$current_action = $modSettings['sp_portal_mode'] == 3 && empty($context['standalone']) && empty($context['disable_sp']) ? 'forum' : 'home';


When I posted before, I thought you had other problems as well, but it looks like this is the only missed in index.template.php.
This missed edit should account for both the missing $modSettings and the missing forum button.
Never attribute to malice that which is adequately explained by stupidity. -- Hanlon's Razor

Angelina Belle

Quote from: MoreBloodWine on August 28, 2010, 06:25:57 AM
Can this import block and article data from TP SQL tables or would I have to rip them from the DB and then enter into SP ?
SimplePortal is not set up to import anything from other portals.
In SimplePortal 2.3.2, articles are designated topic posts from any of the forum's boards.
Never attribute to malice that which is adequately explained by stupidity. -- Hanlon's Razor

muxen

#3470
SMF version: 1.1.11
SP version: 2.3.2
Hello!

As you can see if you open up my site (starcraft2.si), there are no smileys displayed in news post (it should display zerg icon, but it only shows :zerg: text). When you open up topic, smileys are visible.
I googled and searched on this forum for this error, but didn't find anything similar.
Thanks for help.

Angelina Belle

Never attribute to malice that which is adequately explained by stupidity. -- Hanlon's Razor

muxen


saibaworld

My forum is 1.1.11 smf software and i want to install simple portal.

which release of sp is most stable with smf 1.1.11?

Am simply scared stiff of destabilizing my template cos tho i'v done some edits, am stil not so gud at understanding complex php language. thanks for the help
"The magician and the politician have much in common: they both have to draw our attention away from what they are really doing." - Ben Okri
"The one being carried does not realize how far away the town is." - Nigerian proverb

ANF Forum  ||  Study & Scholarships || Jobs & Careers || The Internist

yakyakyak

2.3.2 has only failed for me on server installs for friends (where no ftp was available) and i was not able to make a /temp directory.

Templates have all gone ok.

shoutbox is a non-documented bug when running with Aeva (it don't work if Aeva Galleries are on the same page)

minor problems with curved themes when adding bespoke header designs in blocks

overall stable but some long-time unanswered support questions on their site which is starting to show


saibaworld

Quote from: yakyakyakshoutbox is a non-documented bug when running with Aeva (it don't work if Aeva Galleries are on the same page)

minor problems with curved themes when adding bespoke header designs in blocks

Thanks. The installed mods on my site are: Aeva6.9.99, eFloatingbar0.1.1 and Ad Mgt modv2-3.

I do not think my template version (ie smf 1.1.11) has curved themes; but are u saying Aeva has problems wit sp?
"The magician and the politician have much in common: they both have to draw our attention away from what they are really doing." - Ben Okri
"The one being carried does not realize how far away the town is." - Nigerian proverb

ANF Forum  ||  Study & Scholarships || Jobs & Careers || The Internist

yakyakyak

If you canvas the simple portal support site it would appear so

I have had the same problem on both test and live sites with 1.3a and 2.3.2 trying shoutbox. The shoutbox works but there's no input box for text.

Angelina Belle

If you know of any posts at simpleportal.net showing this connection (AEVA + shoutbox = no shoutbox text box) please give a link.
This could be valuable information for the developers!

Thanks
Never attribute to malice that which is adequately explained by stupidity. -- Hanlon's Razor

AZMazda3

Just attempted to update SimplePortal 2.2.2 to 2.3 and the site crashed. Reloaded the backup and now the site shows 2.2.2 at bottom of page but in the packages it lists 2.3 as installed. I am pretty sure what is really installed is 2.2.2 but we really would like to update it the most current version. How should I proceed?

flamechica

Quote from: AngelinaBelle on August 30, 2010, 12:16:04 PM
Quote from: flamechica on August 30, 2010, 02:44:19 AM
Yes, this is my default theme and it is what the installer put in there.
Yes the installer failed. Partially. And it should have given you a "test failed" message.
In the file you just attached, I can see, in template_menu, that you have

$current_action = 'home';

But you need to have

   global $modSettings;
   $current_action = $modSettings['sp_portal_mode'] == 3 && empty($context['standalone']) && empty($context['disable_sp']) ? 'forum' : 'home';


When I posted before, I thought you had other problems as well, but it looks like this is the only missed in index.template.php.
This missed edit should account for both the missing $modSettings and the missing forum button.

Ah ha!!! Thank you SOOOOOOOOOOOOOO Much for your patience! I see what I was doing wrong! Originally, I never got an error message from the installer, which is weird. But anyways, when I went in and tried to edit the code by hand, I tried to put that code in a completely different part of the file that had $current_action = 'home'; but once you specified the "template_menu" I figured it out. Again, thank you very much!

Advertisement: