Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: xena1997 on January 09, 2018, 04:25:39 PM

Title: help two problem
Post by: xena1997 on January 09, 2018, 04:25:39 PM
1 problem duplicated installation

(https://i.imgur.com/PbowzBd.jpg)

2 problem mod Restrict Posts Per Board

https://custom.simplemachines.org/mods/index.php?mod=3586

I would like to use this mod to set a limit of responses to users
but when I go to apply the settings, I get this error

{"result":false,"data":"Opps! It seems your session is invalid, please try again"}

can you solve or is there a way to limit responses to users?
Title: Re: help two problem
Post by: SaltedWeb on January 09, 2018, 04:34:16 PM
The Mod issue can probably best be helped by posting the question with the mod developer including any other mods you may have installed.
The mods discussion url.
https://www.simplemachines.org/community/index.php?topic=494061.0 (https://www.simplemachines.org/community/index.php?topic=494061.0)
Title: Re: help two problem
Post by: Shambles on January 09, 2018, 04:41:05 PM
Quote from: xena1997
1 problem duplicated installation

(https://i.imgur.com/PbowzBd.jpg)


Attach your theme's index.template.php file and we'll correct it.
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 04:43:42 PM
ok, always kind friend
the theme template file in use?
I take it from the theme folder in use by da cpanel?
Title: Re: help two problem
Post by: Shambles on January 09, 2018, 04:51:17 PM
Yep.
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 04:53:35 PM
bro file
Title: Re: help two problem
Post by: Sir Osis of Liver on January 09, 2018, 05:11:51 PM
That's interesting.  Which theme are you using?
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 05:14:52 PM
theme
The Gray
Title: Re: help two problem
Post by: Sir Osis of Liver on January 09, 2018, 05:24:03 PM
Your template is broken, doesn't work in The Gray theme.  Is that the file from your production forum?
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 05:26:14 PM
my forum e theme work

https://crackingeurope.eu/index.php

I just have to correct a double-appearing entry
Title: Re: help two problem
Post by: Sir Osis of Liver on January 09, 2018, 05:42:10 PM
Look for this in index.english.php (or your corresponding language file) -



$forum_copyright = '<a href="' . $scripturl . '?action=credits" title="Simple Machines Forum" target="_blank" class="new_win">%1$s</a> |
<a href="http://www.simplemachines.org/about/smf/license.php" title="License" target="_blank" class="new_win">SMF &copy; 2017</a>, <a href="http://www.simplemachines.org" title="Simple Machines" target="_blank" class="new_win">Simple Machines</a>';



Mods may have added duplicate lines.
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 05:48:49 PM
hello not practic

@ sǝ ๅ qɯɐɥS I'm waiting for him to correct the file
Title: Re: help two problem
Post by: Sir Osis of Liver on January 09, 2018, 05:53:48 PM
There's nothing wrong with the index template you posted, the code is correct.  $forum_copyright contains the copyright text, and it's pulled into the template from the language file.
Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 05:58:02 PM
friend as in the image you see that there are double written?

(https://i.imgur.com/PbowzBd.jpg)
Title: Re: help two problem
Post by: Sir Osis of Liver on January 09, 2018, 06:09:19 PM
<sigh>  You're not paying attention.  The copyright text is in the language file.  It's called in index.template.php by theme_copyright() function -



// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
echo '
<div id="footer_section"><div class="frame">
<ul class="reset">
<li class="copyright">', theme_copyright(), '</li>
<li><a id="button_xhtml" href="http://validator.w3.org/check?uri=referer" target="_blank" class="new_win" title="', $txt['valid_xhtml'], '"><span>', $txt['xhtml'], '</span></a></li>
', !empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']) ? '<li><a id="button_rss" href="' . $scripturl . '?action=.xml;type=rss" class="new_win"><span>' . $txt['rss'] . '</span></a></li>' : '', '
<li class="last"><a id="button_wap2" href="', $scripturl , '?wap2" class="new_win"><span>', $txt['wap2'], '</span></a></li>
</ul>';

// Show the load time?



Which is put together in Subs.php -



// Show the copyright...
function theme_copyright($get_it = false)
{
global $forum_copyright, $context, $boardurl, $forum_version, $txt, $modSettings;

// Don't display copyright for things like SSI.
if (!isset($forum_version))
return;

// Put in the version...
$forum_copyright = sprintf($forum_copyright, $forum_version);

echo '
<span class="smalltext" style="display: inline; visibility: visible; font-family: Verdana, Arial, sans-serif;">' . $forum_copyright . '
</span>';
}



The actual text is in the language file -



$forum_copyright = '<a href="' . $scripturl . '?action=credits" title="Simple Machines Forum" target="_blank" class="new_win">%1$s</a> |
<a href="http://www.simplemachines.org/about/smf/license.php" title="License" target="_blank" class="new_win">SMF &copy; 2017</a>, <a href="http://www.simplemachines.org" title="Simple Machines" target="_blank" class="new_win">Simple Machines</a>';



Look in the language file for the duplicate code.

Title: Re: help two problem
Post by: xena1997 on January 09, 2018, 06:12:24 PM
thanks bro

@sǝๅqɯɐɥS
I prefer to wait for him to correct the template
so I just have to load it
Title: Re: help two problem
Post by: Shambles on January 09, 2018, 06:49:43 PM
Follow the advice given above:

https://www.simplemachines.org/community/index.php?topic=558210.msg3956558#msg3956558

That will lead you to the solution
Title: Re: help two problem
Post by: Kindred on January 09, 2018, 07:00:32 PM
Also, a few things...
1- problems with mods should be asked for help in the thread dedicated to supporting that specific mod.
(this is the second or third mod problem that you asked in the smf general support -- ask in the mod support next time, please)

2- if the mod double installed that code, there is a good change that other code was also double installed and you will have to manually remove the other duplicated code.
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 12:43:08 AM
I'm not practical to make changes anyone can help me edit the template?
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 06:54:43 AM
I only have the index.english.php file in the theme folder in use
there is no index.italian file, php
I enclose the file index.english.php in the post

p.s while in the default theme I found the index.italian.php file
I also attach this thanks
Title: Re: help two problem
Post by: Kindred on January 10, 2018, 07:01:00 AM
Quote from: Kindred on January 09, 2018, 07:00:32 PM

1- problems with mods should be asked for help in the thread dedicated to supporting that specific mod.
(this is the second or third mod problem that you asked in the smf general support -- ask in the mod support next time, please)

Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 07:19:24 AM
I do not speak more than mod now I ask assistance in this discussion only
for the index file
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 07:52:30 AM
Can you attach your Sources/Subs.php file please?
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 08:01:23 AM
sure my friend
here is the file
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 08:23:35 AM
Hmm.. can we just get a look at your QueryString.php file too please?
Title: Re: help two problem
Post by: Illori on January 10, 2018, 08:24:18 AM
is it possible the copyright is added with hooks and the hooks could be duplicated somehow to cause this?
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 08:26:37 AM
The SMF copyright only appears once, but you know what these smfpacks people are like with their copyright strings...
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 08:28:21 AM
bro file query
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 08:39:53 AM
Ok, looks like we might have found the problem.

Replace your QueryString.php file with the attached:

Depending on how it then looks we may need to make a further edit to it.
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 10:19:26 AM
now I replace the file and then you link to the forum so see if everything is OK?
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 10:20:05 AM
Go for it
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 10:26:03 AM
As suspected, another edit is required. Try this version now:
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 10:29:56 AM
friend there is still a small double written error
can you correct?

https://crackingeurope.eu/index.php
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 10:31:47 AM
Yes. Both "SMF ads" and "Simple Audio Video Embedder" mods have been multi-installed.

The below should fix it, or at least get really close to it.
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 10:33:52 AM
sembra tutto ok cosa dici tu?



    SMF 2.0.15 | SMF © 2017, Simple Machines
    XHTML RSS WAP2

Pagina creata in 0.318 secondi con 17 interrogazioni al database.
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 10:36:13 AM
Yes, unfortunately all mod copyrights have disappeared, try this:
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 10:38:33 AM
no friend better the one without rights
this made it all double back
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 10:40:37 AM
Yes. Leave it with me while I try and sort it out correctly.
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 10:41:37 AM
I'm waiting for your news thanks friend
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 11:24:23 AM
It's a tough one to debug, this.

The copyrights/banners are being added dynamically to the output buffer (which is ok) but it looks like QueryString function ob_sessrewrite is being called twice in succession, duplicating the addition of the copyrights/banners.

Looking at your Subs.php I can now see the duplicated call as described above.

Please replace your QueryString.php file with the one you originally supplied then upload the edited Subs.php as attached.
Title: Re: help two problem
Post by: xena1997 on January 10, 2018, 12:17:15 PM
the leggend very very thanks

Now everything seems correct you can watch?

https://crackingeurope.eu/index.php
Title: Re: help two problem
Post by: Shambles on January 10, 2018, 12:18:36 PM
Looks good to me mate :)