* User

Welcome, Guest. Please login or register.
Did you miss your activation email?

12 Mar 10, 00:29:13

Login with username, password and session length

Select language:

* Recent Topics



Donate

Donate for PortaMx !
Your donation is safe and helps support the issues and causes you care most about.

* Stats

  • *Total Members: 1973
  • *Latest: jimpacgr

  • *Total Posts: 9044
  • *Total Topics: 1317
  • *Online Today: 18
  • *Most Online: 157
(27 Aug 09, 03:54:53)
  • *Users: 0
  • *Guests: 12
  • *Spiders: 0
  • *Total: 12

* Themes

*

Author Topic: Important upgrade for PortaMx 0.971 / 0.971-1  (Read 1294 times)

0 Members and 1 Guest are viewing this topic.

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 2772
  • Gender: Female
Important upgrade for PortaMx 0.971 / 0.971-1
« on: 04 Jan 10, 13:54:06 »
We released the update package v0.971-2 for PortaMx v0.971 / 0.971-1.
This update fixed follow bugs we found in the version 0.971 and 0.971-1

Version 0.971:
  # Error (only php5) on scan the title icons
  # missing images for the poll block
  # the cache trigger don't work correct on remove topics in the user profile
  # the default english block title was not shown, if a user language title missing
  # a lot of errors in the error log, if you edit non cachable blocks
  # if smf caching disable and pmx cachestatus enabled, a lot of error will be produce
  # the cache cleaner not works property on block without own trigger

Version 0.971-1:
 # a lot of errors on illegal dlattach requests
 # the frontpage is not show, if the forum not visible for guests
 # redirects for language change, theme change and polls don't work always correct
 # languages can't install manually, if the portamx docserver not readable
 # on the boardindex a <meta name="robots" content="noindex" /> is inserted
 # border class not works on the old core theme

New features added:
 # Dynamic visibility option to show/hide a block on theme

For languages other then english, english-utf8, german and german-utf8 you have to add follow code
to the file /Themes/default/languages/PortaMx/AdminBlocks.language.php:
Code: [Select]
$txt['pmx_edit_ext_opts_themes'] = 'Show or Hide the block on theme';
The languages on the portamx docserver are updated.

Fel
Many are stubborn in relation to the path, a few in relation to the target.

Offline Cool

  • Free Tibet
  • Charter Member
  • *
  • Posts: 568
  • Gender: Male
  • I Hate Chinas Authority
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #1 on: 04 Jan 10, 16:55:19 »
Thank YOU!!!
Site:FikaGuide(Sv)|I Use:V0.971-2|SMF 2.0 RC2
Q: What do you do when you see a bear in the woods?
A: Play Dead!

EEE-PC:1000H-1TB_WD-2GB-Xp&Win7-BT_Gps-BT_Mouse-USB_Huawei_Hsdp

Offline xmh

  • Charter Member
  • *
  • Posts: 5
  • Gender: Male
    • UK Dragonflies
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #2 on: 04 Jan 10, 17:14:18 »
Great   Thanks

Offline waffa

  • Newbie
  • *
  • Posts: 19
  • Gender: Male
    • -Waffa-
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #3 on: 04 Jan 10, 20:06:38 »
Thank you, exactly on right time :)

(Y)

Offline antechinus

  • PortaMx Supporter
  • *
  • Posts: 656
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #4 on: 04 Jan 10, 23:31:22 »
Awesome. Grabbing a download now. Thanks. :)
Using Internet Explorer 6 on the internet is like urinating in a public swimming pool.
It's rude, there's no excuse for it, and anyone who does it should be ashamed of themselves.

Offline hartiberlin

  • Charter Member
  • *
  • Posts: 406
  • Gender: Male
    • Free energy research
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #5 on: 14 Jan 10, 08:30:33 »
When I try to install the update 971-2 from the PMX Admin panel
on one of my domain
www.travelhotelscheap.com
I get an error in the boardindex.php  file,
before installation, so I did not do the update.

On my other domain
www.Ruhleben.com
it went tthrough without any problems...
Hmm. I have to investigate this..

Was in boardindex.php the
<meta name="robots" content="index|follow|noindex|nofollow"> error ?
Because I already patched that before the update..
Hmm...

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 2772
  • Gender: Female
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #6 on: 14 Jan 10, 10:36:04 »
If you have pached a part that made by PortaMx, you have to restore the code before update.

Fel
Many are stubborn in relation to the path, a few in relation to the target.

Offline hartiberlin

  • Charter Member
  • *
  • Posts: 406
  • Gender: Male
    • Free energy research
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #7 on: 14 Jan 10, 21:42:30 »
What exactly did you change in boardindex.php
or where can I look this up ?

Many thanks.

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 2772
  • Gender: Female
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #8 on: 14 Jan 10, 22:41:08 »
this part is changed on 0.971-2 ...
Code: [Select]
<!-- BoardIndex.php -->
<file name="$sourcedir/BoardIndex.php">
<operation>
<search position="replace"><![CDATA[
if (!empty($_GET) || empty($_GET['action']) || (!empty($_GET['action']) && $_GET['action'] != 'forum'))
$context['robot_no_index'] = true;
]]></search>
<add><![CDATA[
if (!empty($_GET))
$context['robot_no_index'] = (isset($_GET['action']) && $_GET['action'] == 'forum') ? false : true;
]]></add>
</operation>
</file>

Fel
Many are stubborn in relation to the path, a few in relation to the target.

Offline hartiberlin

  • Charter Member
  • *
  • Posts: 406
  • Gender: Male
    • Free energy research
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #9 on: 15 Jan 10, 01:47:48 »
Yes, I think I removed this already manually...
So when I then install it anyway with showing the error,
will it mess up my forum or not ?
Will it change anything in the boardindex.php file then ?

Ich hatte das schon manuell damals geändert.
weil ich das robots tags in dem Meta Tag Mod reinhaben wollte...

Wenn ich nun die neue Version trotzdem installiere.
obwohl sie mir den Fehler bei Boardindex.php anzeigt,
kann ich mir dann was zerschiessen oder
ändert er dann nicht am Boardindex.php file ?

Danke.

Offline feline

  • CO PortaMx corp.
  • Administrator
  • *
  • Posts: 2772
  • Gender: Female
Re: Important upgrade for PortaMx 0.971 / 0.971-1
« Reply #10 on: 15 Jan 10, 13:22:41 »
You can install the upgrade by ignore the error. In this case the boardindex is't modify.

Fel
Many are stubborn in relation to the path, a few in relation to the target.