News:

Wondering if this will always be free?  See why free is better.

Main Menu

Message posting problems

Started by Eddy Matthews, November 26, 2010, 10:15:19 AM

Previous topic - Next topic

Eddy Matthews

I've just upgraded from 2.0RC3 to 2.0RC4, and there are a number of problems with the message posting......

#1. Smileys are not shown, even though they are all setup and enabled in Admin.

#2. The "Attachments and other options" are shown by default, I do not have to click on the option to display them.

#3. The Bulletin Board Code options are not shown at all...

Why have all those features vanished? Any help would be very welcome!

Regards
Eddy

Norv

Point 2) is intended. We have come to the conclusion that too many people don't find/don't know those options, including attachments, and don't realize where they are, thus RC4 is displaying them by default.

About the others, do you have errors in the error log?
Did you install mods yet?
To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

Eddy Matthews

No errors in the log at all....

I have the following mods installed:

SMF Gallery Pro v3.0.9a
Google Member Map 3.0 v2.0 beta 2
EZPortal v0.4.4a
Users Online Today v1.5.6
Downloads System Pro v2.0
SMF Links v2.3

Regards
Eddy

Norv

Could you please make a screenshot to see how your post or reply page looks like?
To-do lists are for deferral. The more things you write down the later they're done... until you have 100s of lists of things you don't do.

File a security report | Developers' Blog | Bug Tracker


Also known as Norv on D* | Norv N. on G+ | Norv on Github

Eddy Matthews

Here you go, Capture1 is a new topic, and Capture2 is a reply....

Regards
Eddy

Deaks

can you go to your admin panel, then go to Forum Maintenance - Routine and Check all files against current versions and let us know what it says please:)
~~~~
Former SMF Project Manager
Former SMF Customizer

"For as lang as hunner o us is in life, in nae wey
will we thole the Soothron tae owergang us. In truth it isna for glory, or wealth, or
honours that we fecht, but for freedom alane, that nae honest cheil gies up but wi life
itsel."

Eddy Matthews

Rather than try and type that little lot, here's a series of screen captures.... :)

Regards
Eddy

Deaks

ok its no language issue, thats that thought knocked out :)

Can you posts you Post.template.php please
~~~~
Former SMF Project Manager
Former SMF Customizer

"For as lang as hunner o us is in life, in nae wey
will we thole the Soothron tae owergang us. In truth it isna for glory, or wealth, or
honours that we fecht, but for freedom alane, that nae honest cheil gies up but wi life
itsel."

vbgamer45

Did a couple searches found some with similiar issues.

Check out this topic
http://www.simplemachines.org/community/index.php?topic=400008.msg2780043#msg2780043

Also if you have SMF caching enabled try disabling it saw a related post with accelerator issues and caching level 2.
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Eddy Matthews

Post.template file attached

Regards
Eddy

vbgamer45

Took another look at your site your missing a good chunk of code in your header of your theme that is similiar to the code below.

<script type="text/javascript" src="http://smfshop.com/forum/Themes/default/scripts/script.js?rc3"></script>
<script type="text/javascript" src="http://smfshop.com/forum/Themes/default/scripts/theme.js?rc3"></script>
<script type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "http://smfshop.com/forum/Themes/default";
var smf_default_theme_url = "http://smfshop.com/forum/Themes/default";
var smf_images_url = "http://smfshop.com/forum/Themes/default/images";
var smf_scripturl = "http://smfshop.com/forum/index.php";
var smf_iso_case_folding = false;
var smf_charset = "ISO-8859-1";
var ajax_notification_text = "Loading...";
var ajax_notification_cancel_text = "Cancel";
// ]]></script>


The php code should be this in your index.template.php

// Here comes the JavaScript bits!
echo '
<script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/script.js?rc3"></script>
<script type="text/javascript" src="', $settings['theme_url'], '/scripts/theme.js?rc3"></script>
<script type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "', $settings['theme_url'], '";
var smf_default_theme_url = "', $settings['default_theme_url'], '";
var smf_images_url = "', $settings['images_url'], '";
var smf_scripturl = "', $scripturl, '";
var smf_iso_case_folding = ', $context['server']['iso_case_folding'] ? 'true' : 'false', ';
var smf_charset = "', $context['character_set'], '";', $context['show_pm_popup'] ? '
var fPmPopup = function ()
{
if (confirm("' . $txt['show_personal_messages'] . '"))
window.open(smf_prepareScriptUrl(smf_scripturl) + "action=pm");
}
addLoadEvent(fPmPopup);' : '', '
var ajax_notification_text = "', $txt['ajax_in_progress'], '";
var ajax_notification_cancel_text = "', $txt['modify_cancel'], '";
// ]]></script>';
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

Deaks

Eddy please do as vbgamer suggests if this still not works ill look closer at the post.template :)
~~~~
Former SMF Project Manager
Former SMF Customizer

"For as lang as hunner o us is in life, in nae wey
will we thole the Soothron tae owergang us. In truth it isna for glory, or wealth, or
honours that we fecht, but for freedom alane, that nae honest cheil gies up but wi life
itsel."

Eddy Matthews

My apologies guys, vbgamer has hit the nail on the head!!

I'd commented out those lines when I was modifying the header logo on my site, and I'd forgotten to re-enable them!!

Now that I've done that, everything appears to be working fine....

Hey, if I had brains I'd be dangerous!!  ;D

Regards
Eddy

Deaks

always something simple like that :)
I have nmarked this as solved :)
~~~~
Former SMF Project Manager
Former SMF Customizer

"For as lang as hunner o us is in life, in nae wey
will we thole the Soothron tae owergang us. In truth it isna for glory, or wealth, or
honours that we fecht, but for freedom alane, that nae honest cheil gies up but wi life
itsel."

Advertisement: