News:

Welcome to SMF Ads Support Forum

Main Menu
Coinbase

Edits for ad_mod_1-1-1_v2-3

Started by bigguy, January 11, 2007, 07:42:32 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

bigguy

These are the edits for the ad mod version 2.3

In index.php look for:

'trackip' => array('Profile.php', 'trackIP'),

Before that add:

'admod' => array('Ads.php', 'Ads'),

In the same file search for:

require_once($sourcedir . '/Security.php');

Before that add:

if (file_exists($sourcedir . '/LoadAds.php'))
require_once($sourcedir . '/LoadAds.php');


In the same file search for:

loadPermissions();

Before that add:

// Load all the ads up
if (function_exists("loadAds"))
loadAds();


Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



In your Sources Directory find and open Subs.php, Search for:

loadLanguage('Admin');

Before that add:

loadLanguage('Ads');

In the same file search for:

'manage_themes' => '<a href="' . $scripturl . '?action=theme;sa=admin;sesc=' . $sc . '">' . $txt['theme_admin'] . '</a>',

Before that add:

'edit_addmod' => '<a href="' . $scripturl . '?action=admod">' . $txt['ad_management'] . '</a>',

Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



In your theme directory find and open index.template.php and search for:

<body>';

After that add:

//Display ads on the top of the page
if (function_exists("show_topofpageAds"))
{
$ads = show_topofpageAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

</td>

After that add:

';
//Welcome Ads
if (function_exists("show_welcomeAds"))
{
$ads = show_welcomeAds();
if(!empty($ads))
{
echo '<td class="windowbg2">';
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
echo '</td>';
}
unset($ads);
}
echo '


In the same file find:

template_menu();

After that add:

//Below the menu ads
if (function_exists("show_indexAds") && function_exists("show_towerleftAds") && function_exists("show_towerrightAds"))
{
$ads = show_indexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);

//Tower left Ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '<table><tr><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td><td width="100%" valign="top">';

unset($ads);
//Tower Right Ads
$ads = show_towerrightAds();
if(!empty($ads))
echo '<table><tr><td width="100%" valign="top">';
unset($ads);
}


In the same file find:

// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!

Before that add:

//Close table for towerright ads
if (function_exists("show_towerrightAds") && function_exists("show_towerleftAds") && function_exists("show_bottomAds"))
{
$ads = show_towerrightAds();
if(!empty($ads))
echo '</td><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td></tr></table>';

unset($ads);
//Close table for towerleft ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '</td></tr></table>';
unset($ads);

//Show ads on the bottom of the page
$ads = show_bottomAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In BoardIndex.template.php find:

// Show some statistics next to the link tree if SP1 info is off.

Before that add:

//Display ads on the board index
if (function_exists("show_boardAds"))
{
$ads = show_boardAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

echo '
</div>';


After that add:

//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In Display.template.php find:

global $context, $settings, $options, $txt, $scripturl, $modSettings;

After that add:

//Display ads on the thread page
if (function_exists("show_threadAds"))
{
$ads = show_threadAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

// Get all the messages...

And replace with:

//Ad Counter
$adcounter =0;
// Get all the messages...
while ($message = $context['get_message']())
{
$adcounter++;


In the same file find:

</td></tr>';
}


And replace with:

</td></tr>';
if (function_exists("show_posts"))
{
if ($adpost = show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '

<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr><td class="windowbg3">
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $context['forum_name'], '</b>
<div class="smalltext">
</div>
</td>
<td valign="top" width="85%" height="100%">
<table width="100%" border="0"><tr>
<td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
<td valign="middle">
<div style="font-weight: bold;" id="subject_', $message['id'], '">
<a href="', $message['href'], '">', $message['subject'], '</a>
</div>
<div class="smalltext">&#171; <b>', !empty($message['counter']) ? $txt[146] . ' #' . $message['counter'] : '', ' ', $txt[30], ':</b> ', $message['time'], ' &#187;</div></td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
', $reply_button, '';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
', $reply_button, '';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
', $modify_button, '';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
', $remove_button, '';

// What about splitting it off the rest of the topic?
if ($context['can_split'])
echo '
', $split_button, '';
echo '
</td>
</tr></table>
<hr width="100%" size="1" class="hrcolor" />
<div class="post">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</div>
</td>
</tr>
<tr>
<td valign="bottom" class="smalltext" width="85%">
<table width="100%" border="0" style="table-layout: fixed;"><tr>
<td colspan="2" class="smalltext" width="100%">
</tr><tr>
<td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
<img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
</td>
</tr></table>
</tr>
</table>
</td></tr>
</table>
</td></tr>';
}
else
echo '
<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="windowbg3">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</td>
</tr>
</table>
</td></tr>';
}

}

}

if(function_exists("show_lastpostAds") && function_exists("show_posts"))
{
if(($ads = show_lastpostAds()) && !show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '

<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr><td class="windowbg3">
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $context['forum_name'], '</b>
<div class="smalltext">
</div>
</td>
<td valign="top" width="85%" height="100%">
<table width="100%" border="0"><tr>
<td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
<td valign="middle">
&nbsp;</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
', $reply_button, '';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
', $reply_button, '';


echo '
</td>
</tr></table>
<hr width="100%" size="1" class="hrcolor" />
<div class="post">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</div>
</td>
</tr>
<tr>
<td valign="bottom" class="smalltext" width="85%">
<table width="100%" border="0" style="table-layout: fixed;"><tr>
<td colspan="2" class="smalltext" width="100%">
</tr><tr>
<td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
<img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
</td>
</tr></table>
</tr>
</table>
</td></tr>
</table>
</td></tr>';
}
else
echo '
<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="windowbg3">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</td>
</tr>
</table>
</td></tr>';

}

}




In MessageIndex.template.php find:

global $context, $settings, $options, $scripturl, $modSettings, $txt;

After that add:

//Display Ads on the Message index
if (function_exists("show_threadindexAds"))
{
$ads = show_threadindexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

echo '
</table>
</div>';


After that add:

//Display Ads on the Message index
if (function_exists("show_underchildren"))
{
$ads = show_underchildren();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In ManagePermissions.php in the sources directory find:

'pm' => array(

And replace with:

'ad_manage' => array(
'ad_manageperm' => false,
),
'pm' => array(


Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



ONLY If installing manually you will require these 2 files to be in your Sources Directory:

Ads.php
LoadAds.php

And this file to be in your theme directory:

Ads.template.php

And this file to be in your Langauge directory:

Ads.english.php

sasawawa

Thanks, Biggue, just installed successful ,really cool ! ;)

blessing2006

hi, bigguy.

I uploaded ad management v2.3 to my smf forum using the admin panel. However, my adsense ads do not show anywhere.

Your post suggest i need to edit some files. But then i'm confused because you say "NOTE: Only do this edit if installing manually".

Should i do these edits even though i uploaded the ad management mod using the admin panel?

What else should i do to make the adsense ads show?

my site is . . .

http://www.nigerianewsjournal.com/forum/


bigguy

All you need to do is edit 4 template files in the theme you are using from the edits above.

DawnsWebDesigns

I'm using SMF 1.1.1., TinyPortal v0.9.7,  & Aero79 design by Bloc.  Your latest ad mod wouldn't install automatically...it had problems with Index.template.php & Display.template.php.  So I manually did those 2 & all is well.

The problem is trying to transfer it to the Aero79 theme.  I'm having a problem with Index.template.php & BoardIndex.template.php.  The coding you're telling me to look for either doesn't exist or it's written differently.  I wasn't able to add a couple of things at all.  Yet the ads appear & I get no error messages?  Still...I'd like it "right".

For instance...under BoardIndex.template.php you have: <search position="after"><![CDATA[// Show some statistics next to the link tree if SP1 info is off.]]></search>

I don't even have that.  So I did this:

function template_main()
{
   global $context, $settings, $options, $txt, $scripturl, $modSettings, $ID_MEMBER;

//Display ads on the board index
   if (function_exists("show_boardAds"))
   {
      $ads = show_boardAds();
      if(!empty($ads))
         if($ads['type']==0)
            echo $ads['content'];
         else
            eval($ads['content']);
      unset($ads);
   }

   // Show the news fader?  (assuming there are things to show...)


And it works.  So is it ok?

Next you have: <search position="before"><![CDATA[      echo '
   </div>';]]></search>.  I don't have that either.  So I've got:

echo '
</table>
<br />';
//Display ads Between cats
   if (function_exists("show_category"))
   {
      $ads = show_category($category['id']);
      if(!empty($ads))
         if($ads['type']==0)
            echo $ads['content'];
         else
            eval($ads['content']);
      unset($ads);
   }
   }

   if ($context['user']['is_logged'])


But again it works...so is it ok?

I wasn't able to add

';
//Welcome Ads
if (function_exists("show_welcomeAds"))
{
$ads = show_welcomeAds();
if(!empty($ads))
{
echo '<td class="windowbg2">';
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
echo '</td>';
}
unset($ads);
}
echo '


or

//Below the menu ads
if (function_exists("show_indexAds") && function_exists("show_towerleftAds") && function_exists("show_towerrightAds"))
{
$ads = show_indexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);

//Tower left Ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '<table><tr><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td><td width="100%" valign="top">';

unset($ads);
//Tower Right Ads
$ads = show_towerrightAds();
if(!empty($ads))
echo '<table><tr><td width="100%" valign="top">';
unset($ads);
}
   

to index.template.php yet it still works/there's no error messages?  How can I get help with this?  Should I post a copy of the default index.template & the theme index.template?  Thanks, in advance, for any help.  :)

bigguy

If it is working and you get no errors then leave it. I probably would have done exactly the same thing. In some of the ad mods I install I can't put all the edits in because the code is not there. As you have found out it still works so I would leave it.

DawnsWebDesigns

Quote from: bigguy on January 30, 2007, 11:11:28 AM
If it is working and you get no errors then leave it. I probably would have done exactly the same thing. In some of the ad mods I install I can't put all the edits in because the code is not there. As you have found out it still works so I would leave it.

Yeah they're working.  I've got ads at the bottom of the pages...on the board index...after posts...& under child boards.  And no error messages. :)  It's a miracle.  :o  Thanks for your post & a great mod.  ;)

webmistress

I'm having the same issue of the ads or even the word testing to show up in the position where I have checked the ads. I thought "classic" was the default theme. So I see how to do everything that comes after this:

In index.php look for:

I have an index.php that came with the ad mod and it doesn't have much in it at all

<?php

// Try to handle it with the upper level index.php.  (it should know what to do.)
if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))
include (dirname(dirname(__FILE__)) . '/index.php');
else
exit;

?>


In other words I'm not finding this code in either index.php file I have or any file for that matter. 'trackip' => array('Profile.php', 'trackIP'),

How can I get mine to work if I can't do this first step but I can do the rest?

bigguy

Only edit the template files. The index.php and all others should not have to be done if you have it installed. So only 4 template files to edit.

webmistress

#9
Okay, thank you so much. Do I need to do this part or not?

Ads.php
LoadAds.php

And this file to be in your theme directory:

Ads.template.php

And this file to be in your Langauge directory:

Ads.english.php


And which one of these in the template file? </td>
The one after smflogo.gif?

webmistress

I'm also not finding this in the board index file. I have classic installed. Does it go before the news fader code?

echo '
</div>';


Should I refer to this thread instead since I have classic?

http://www.smfads.com/forums/index.php?topic=22.0

blessing2006

hi.

There are 7 files mentioned above. You say in my case i need to edit only 4 of them.

What are the 4 files?

bigguy

messageindex.template.php
display.template.php
Boardindex.templeta.php
index.template.php

Farmacija

in the first message in isnt precised which </td> tag we should find [ there is a lot </td> tags in different places] and add ad code in index,template.php file. you should correct that!

bigguy

The edit for the ad mod that goes after the </td> is for the welcome user area of the template so you know it is going to be higher in the template file. What theme are you using. ???

Farmacija

// display user name
echo '
<table width="100%" cellpadding="0" cellspacing="0" border="0" >
<tr>';

if($context['user']['is_logged'])
echo '
<td class="titlebg2" height="32">
<span style="font-size: 130%;"> ', $txt['hello_member_ndt'], ' <b>', $context['user']['name'] , '</b></span>
</td>';

// display the time
echo '
<td class="titlebg2" height="32" align="right">
<span class="smalltext">' , $context['current_time'], '</span>';

// this is the upshrink button for the user info section
echo '
<a href="#" onclick="shrinkHeader(!current_header); return false;"><img id="upshrink" src="', $settings['images_url'], '/', empty($options['collapse_header']) ? 'upshrink.gif' : 'upshrink2.gif', '" alt="*" title="', $txt['upshrink_description'], '" align="bottom" style="margin: 0 1ex;" /></a>
</td>

</tr>
<tr id="upshrinkHeader"', empty($options['collapse_header']) ? '' : ' style="display: none;"', '>
<td valign="top" colspan="2">
<table width="100%" class="bordercolor" cellpadding="8" cellspacing="1" border="0" style="margin-top: 1px;">
<tr>';

if (!empty($context['user']['avatar']))
echo '
<td class="windowbg" valign="middle">', $context['user']['avatar']['image'], '</td>';

echo '
<td colspan="2" width="100%" valign="top" class="windowbg2"><span class="middletext">';

// If the user is logged in, display stuff like their name, new messages, etc.
if ($context['user']['is_logged'])
{
echo '
<a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a> <br />
<a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a><br />';

}
// Otherwise they're a guest - send them a lovely greeting...
else
echo $txt['welcome_guest'];

// Now, onto our second set of info, are they logged in again?
if ($context['user']['is_logged'])
{
// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<b>', $txt[616], '</b><br />';

// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '<br />';

// Show the total time logged in?
if (!empty($context['user']['total_time_logged_in']))
{
echo '
', $txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
}
echo ' </span>';
}


this is welcome user area i suppose?
but there isnt tag </td> but there IS tag </td>';, but it isnt the same.
and i'm currious where i can put the ad code then?

bigguy

Ok, try this. take the '; off the end of that </td> and place the code after it. So it would look something like this:

EXAMPLE

</td>

';
//Welcome Ads
if (function_exists("show_welcomeAds"))
{
$ads = show_welcomeAds();
if(!empty($ads))
{
echo '<td class="windowbg2">';
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
echo '</td>';
}
unset($ads);
}
// display the time
echo '
<td class="titlebg2" height="32" align="right">
<span class="smalltext">' , $context['current_time'], '</span>';


Also take the echo off the end of the ad code.

liberte

does this apply to all kind themes?

bigguy

If you have this version of the ad mod then these eedits apply to you. The ones that are posted on page 1 of this thread.

Polymath

#19
Hi Bigguy.  Been a while..

I am having trouble with those instructions. So much so I can't add it. Most of everything not there.

Find  echo '
   </div>';

or

<td>
<tr>  just don't work for me....that is very vague and I just don't have them or have any idea about just putting it somewhere.

A little of your professional help..so I can get closer to getting my site back online.

These are for TP_Shadowrun Theme.. SMF 1.1.2  with TP v0.9.7

Thanks

(\__/)
(O.o )   *If You need help, best not to ask me*
(> < )

bigguy

Try these, there are no welcome ads. BAckup before trying.

ahrasis

I cannot edit the theme Long Orange. It display error messages each time I try to rectify them. Anyone who had edited the theme please help?

dafisher1951

using smf 1.1.2 and uploaded the ad mod 2.3 template is enterprise. once finished I now get this message

Table 'dafisher_engforum.dafisher_ads' doesn't exist
File: /home/dafisher/public_html/chaospt/Sources/LoadAds.php
Line: 33

dafisher1951

I tried the file changes on the previous page and got the following message"

forum1.1.2 enterprise theme ad mod 2.3

Table 'dafisher_engforum.dafisher_ads' doesn't exist
File: /home/dafisher/public_html/chaospot/Sources/LoadAds.php
Line: 33

dafisher1951


Sineksekiz

Hi bigguy.

I have read manual installation trough and tried to do it myself. But there is so many things that I can not find in the theme files.

I use Smf 1.1.2 with TP 0.9.8 thee alienation11final_tp.

I currently have no mods at all.

I am sending you to neccesary documents below. If you have a look I will be most appereciated.

Thank you.

iBug

Please someone helps me !! i tried to add these codes millions of time but it kept given me this error !!1

QuoteTemplate Parse Error!
There was a problem loading the /Themes/classic/Display.template.php template or language file. Please check the syntax and try again - remember, single quotes (') often have to be escaped with a slash (\). To see more specific error information from PHP, try accessing the file directly.

You may want to try to refresh this page or use the default theme.
--------------------------------------------------------------------------------


Parse error: syntax error, unexpected $end in .../Themes/classic/Display.template.php on line 882

873:    if ($context['calendar_post'])
874:       $moderationButtons[] = '<a href="' . $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0;sesc=' . $context['session_id'] . '">' . ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/linktocal.gif" alt="' . $txt['calendar37'] . '" border="0" />' : $txt['calendar37']) . '</a>';
875:
876:    if ($context['can_remove_post'] && !empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1)
877:       $moderationButtons[] = $settings['use_image_buttons'] ? '<input type="image" name="submit" src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/delete_selected.gif" alt="' . $txt['quickmod_delete_selected'] . '" style="background-color: transparent;" />' : '<a href="javascript:document.forms.quickModForm.submit();">' . $txt['quickmod_delete_selected'] . '</a>';
878:
879:    return implode($context['menu_separator'], $moderationButtons);
880: }
881:
882: ?>883:
884:

please someone helps me !! i'm using classic them + 1.1.2

iBug

Shall I add or delete the ?> or what ???


iBug

#29
Quote from: bigguy on May 27, 2007, 01:01:48 PM
Try this:
GOD BLESSSSSSSSSSS YOU Bigguy ! you are the man ! thank you very much ! it works just fine  :)


but when i added the ads... it gave me this error
QuoteParse error: syntax error, unexpected '<' in /home/ran4the/public_html/forum/Sources/Load.php(1727) : eval()'d code(641) : eval()'d code on line 1

bigguy


iBug

This is the load file.. i donno where is the problem  :-\

bigguy

the ad mod does not touch the Load.php What error are you getting. ???

iBug

I put it add code and display it @ the top and bottom ... but when i went to check if it really there

i got this error at the top
QuoteParse error: syntax error, unexpected '<' in /home/ran4the/public_html/forum/Sources/Load.php(1727) : eval()'d code(15) : eval()'d code on line 1

and this one at the btm

QuoteParse error: syntax error, unexpected '<' in /home/ran4the/public_html/forum/Sources/Load.php(1727) : eval()'d code(641) : eval()'d code on line 1

There is no other hacks in the forum, so i did not edite the load.php before?

bigguy

See if the LoadAds.php file is in the Sources directory and also check the index.php file in the ROOT of your SMF install to see if all the edits are done there.

iBug

I checked them.. all the files are there and the addition codes are there in index.php

bigguy

What other mods do you have installed. ???

iBug

Quote from: bigguy on May 27, 2007, 02:32:33 PM
What other mods do you have installed. ???
I did not install any other mod there " only the ads " and the " body list mod " that is all 1

bigguy

Uninstall the mods and replace the load.php file and see what happens.

iBug

Quote from: bigguy on May 27, 2007, 05:42:35 PM
Uninstall the mods and replace the load.php file and see what happens.
I could not find a clean load file :S ciz the downloading from sm.org is down donno why !?!
but I uninstalled the modz.. and i could add HTML adz but not PHP !!??

bigguy

It should be up now if you would like to try. :)

anakmacan


iBug

OMG !! i could not download the file !! i was trying for 3 days now !!! could someone please give me that file ! the load.php file !!?

anakmacan



Ive finished editting all theme files as said on first post, but i  dont know how to put tables into database >.< or to run install.php :(( Help me, pls, anyone?

Quote from: iBug on June 01, 2007, 08:22:16 AM
OMG !! i could not download the file !! i was trying for 3 days now !!! could someone please give me that file ! the load.php file !!?

Loadads.php you mean?

iBug

Thank you Anakmacanm, I ment the load.php... i found it  anyway...

bigguy.. i did I replace the load.php after removing all other mods.. but i still have the problem.. I cannot post PHP adds only HTML
QuoteParse error: syntax error, unexpected '<' in /home/ran4the/public_html/forum/Sources/Load.php(1726) : eval()'d code(16) : eval()'d code on line 1

iBug


teclive

Quote from: anakmacan on June 01, 2007, 08:45:04 AM


Ive finished editting all theme files as said on first post, but i  dont know how to put tables into database >.< or to run install.php :(( Help me, pls, anyone?



I found this...

http://www.smfads.com/forums/index.php?topic=679.0


teclive

Quote from: dafisher1951 on May 16, 2007, 05:27:40 PM
I tried the file changes on the previous page and got the following message"

forum1.1.2 enterprise theme ad mod 2.3

Table 'dafisher_engforum.dafisher_ads' doesn't exist
File: /home/dafisher/public_html/chaospot/Sources/LoadAds.php
Line: 33

if you did the install manually, you need to add the tables to your db using phpmyadmin, check out this post

http://www.smfads.com/forums/index.php?topic=679.0


asd

#48
QuoteIn your theme directory find and open index.template.php and search for:

Code:

<body>';


After that add:

Code:

   //Display ads on the top of the page
   if (function_exists("show_topofpageAds"))
   {
      $ads = show_topofpageAds();   
      if(!empty($ads))
         if($ads['type']==0)
            echo $ads['content'];
         else
            eval($ads['content']);   
      unset($ads);
   }
I cant find it, I only find <body>

AND I use pdx-dk-09i

rmg

^I'm trying to do that.. I downloaded the index.template.php file on my comp, edited it and when I tried to save it, the codes looks so screwed up! is it ok? =/

rmg

I had errors on line 3 :
   if (function_exists("show_topofpageAds"))

what to do now? help please..  :-\

whatchamccallum

Just a quick note for some of you that are trying to follow these instructions. The location that Bigguy is giving you won't always exist the way he put it in your themes. You need to be able to read the code and interpret where the ads belong on your site and find the end of table, row, column, beginning of page ect.... exists.

It would be helpful Bigguy if you spelled it out a little clearer where you were expecting the certain block of code to go. ex. ad thread on board index or at top of page, under menu ect... Maybe provide a few examples on what the text could look like.

I'm not sure how much you have vested in helping people edit their themes but it took me a few minutes to catch onto this when I started.

Also this task is not one to be taken by someone that does not know how to read code. You should have a decent amount of experience reading through programming code.

By the way thanks for the thread Bigguy. It was a big help for me I'm just offering up some constructive (hopefully) criticism.  :D

iBug

Please someone help me I'm going crazy .. i unistall the forum and them install it again and after puting the ad mod I'm still getting this problem !!

Parse error: syntax error, unexpected '<' in /home/ran4the/public_html/Sources/Load.php(1726) : eval()'d code(744) : eval()'d code on line 1

iBug

Quote from: iBug on June 28, 2007, 08:21:41 AM
Please someone help me I'm going crazy .. i unistall the forum and them install it again and after puting the ad mod I'm still getting this problem !!

Parse error: syntax error, unexpected '<' in /home/ran4the/public_html/Sources/Load.php(1726) : eval()'d code(744) : eval()'d code on line 1

Oh .. Hey guys .. I solved the problem ! I'm really sorry for the trble i caused...

the problem was in the <?php .. I removed the " php " and everything went okay ..

however, i tried then to change the ?> @ the end of the file by puting space before it and keeping the <?php and again it worked !

bigguy


adrenalinerider

Bigguy:  ;D my brain has just popped up  :D .... I guess I need to first search for all these files some where :D ... i know its stupid to say this but ... let me try once ... wont be bad atleast

bigguy

I answered in your other post. :)

sinaevil

Hi i have some kind of problem with my theme "smfox" after edit this two code in display.template the forum did not work

In the same file find:


Code:
   // Get all the messages...
And replace with:


Code:
   //Ad Counter
   $adcounter =0;
   // Get all the messages...
   while ($message = $context['get_message']())
   {
      $adcounter++;
In the same file find:


Code:
   </td></tr>';
   }
And replace with:


Code:
   </td></tr>';
if (function_exists("show_posts"))
{
   if ($adpost = show_posts($adcounter))
   {
      if($modSettings['ads_lookLikePosts'])
      {
         echo '

   <tr><td style="padding: 1px 1px 0 1px;">
      <table width="100%" cellpadding="3" cellspacing="0" border="0">
         <tr><td class="windowbg3">
            <table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
               <tr>
                  <td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
                     <b>', $context['forum_name'], '</b>
                     <div class="smalltext">
                     </div>
                  </td>
                  <td valign="top" width="85%" height="100%">
                     <table width="100%" border="0"><tr>
                        <td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
                        <td valign="middle">
                           <div style="font-weight: bold;" id="subject_', $message['id'], '">
                              <a href="', $message['href'], '">', $message['subject'], '</a>
                           </div>
                           <div class="smalltext">&#171; <b>', !empty($message['counter']) ? $txt[146] . ' #' . $message['counter'] : '', ' ', $txt[30], ':</b> ', $message['time'], ' &#187;</div></td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
      if ($context['can_reply'] && !empty($options['display_quick_reply']))
         echo '
               ', $reply_button, '';

      // So... quick reply is off, but they *can* reply?
      elseif ($context['can_reply'])
         echo '
               ', $reply_button, '';

      // Can the user modify the contents of this post?
      if ($message['can_modify'])
         echo '
               ', $modify_button, '';

      // How about... even... remove it entirely?!
      if ($message['can_remove'])
         echo '
               ', $remove_button, '';

      // What about splitting it off the rest of the topic?
      if ($context['can_split'])
         echo '
               ', $split_button, '';
echo '
                        </td>
                     </tr></table>
                     <hr width="100%" size="1" class="hrcolor" />
                     <div class="post">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</div>
                  </td>
               </tr>
               <tr>
                  <td valign="bottom" class="smalltext" width="85%">
                     <table width="100%" border="0" style="table-layout: fixed;"><tr>
                        <td colspan="2" class="smalltext" width="100%">
                     </tr><tr>
                        <td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
                        </td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
                           <img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
                        </td>
                     </tr></table>
               </tr>
            </table>
         </td></tr>
      </table>
   </td></tr>';
      }
      else
         echo '
            <tr><td style="padding: 1px 1px 0 1px;">
               <table width="100%" cellpadding="3" cellspacing="0" border="0">
                  <tr>
                     <td class="windowbg3">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</td>
                  </tr>
               </table>
            </td></tr>';         
   }
   
}

   }
   
   if(function_exists("show_lastpostAds") && function_exists("show_posts"))
   {
      if(($ads = show_lastpostAds()) && !show_posts($adcounter))
      {
         if($modSettings['ads_lookLikePosts'])
         {
               echo '

   <tr><td style="padding: 1px 1px 0 1px;">
      <table width="100%" cellpadding="3" cellspacing="0" border="0">
         <tr><td class="windowbg3">
            <table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
               <tr>
                  <td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
                     <b>', $context['forum_name'], '</b>
                     <div class="smalltext">
                     </div>
                  </td>
                  <td valign="top" width="85%" height="100%">
                     <table width="100%" border="0"><tr>
                        <td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
                        <td valign="middle">
                           &nbsp;</td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
      if ($context['can_reply'] && !empty($options['display_quick_reply']))
         echo '
               ', $reply_button, '';

      // So... quick reply is off, but they *can* reply?
      elseif ($context['can_reply'])
         echo '
               ', $reply_button, '';


echo '
                        </td>
                     </tr></table>
                     <hr width="100%" size="1" class="hrcolor" />
                     <div class="post">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</div>
                  </td>
               </tr>
               <tr>
                  <td valign="bottom" class="smalltext" width="85%">
                     <table width="100%" border="0" style="table-layout: fixed;"><tr>
                        <td colspan="2" class="smalltext" width="100%">
                     </tr><tr>
                        <td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
                        </td>
                        <td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
                           <img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
                        </td>
                     </tr></table>
               </tr>
            </table>
         </td></tr>
      </table>
   </td></tr>';
         }
         else
            echo '
               <tr><td style="padding: 1px 1px 0 1px;">
                  <table width="100%" cellpadding="3" cellspacing="0" border="0">
                     <tr>
                        <td class="windowbg3">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</td>
                     </tr>
                  </table>
               </td></tr>';            
         
      }
      
   }
--------------------------------------------------------------------------------

slvreagl

#58
I got everything to work but my Display.template.php page. I followed the instructions but I keep getting an error ....

Quote
Template Parse Error!
There was a problem loading the /Themes/helios_multi11_rc3_tp/Display.template.php template or language file. Please check the syntax and try again - remember, single quotes (') often have to be escaped with a slash (\). To see more specific error information from PHP, try accessing the file directly.

You may want to try to refresh this page or use the default theme.
--------------------------------------------------------------------------------

syntax error, unexpected $end

I uploaded the Display.template.php you had recoded for Polymath on page two of this topic and it works flawlessly I try my version again and I get the same error... :'( Can you re-code my Display.template.php file for me too? I run a moded site with the helios_multi11_rc3_tp theme and dont want to miss out on any of my mod functions. Thanks in advance!

I just noticed there is a topic area for my exact request so I will re-post it there...
http://www.smfads.com/forums/index.php?topic=974.msg5116#new

slackerpunk

Anyone with Themis_TP version have working template files? I am using 1.1.3 and TP 0.9.7 the ad management mod works fine if I am using the default theme but when I try to use Themis_TP nothing shows up I tried to edit the 4 template files manually but I cannot find the lines need to be edited not sure why

if anyone can help please I have attached the 4 template files since reading 4 pages it tells me that if the adworks and is installed then I should just be editing template files inside the theme folder that I want


slackerpunk


xxxnewbiexxx

Hi bigguy and SMFads Members,

I am trying to install the Ad Management mod (version 2.3) but I am facing some problems ...

I am using SMF 1.1.3 with Blackrain Theme in PORTUGUESE Language.

I read this entire post searching for help.

I will explain you the steps I made to install this mod:

- I installed the ad mod using the admin panel (after that, I realized that the button to control the ads in the admin panel wasn´t there ... ?)

- SO, as I understood, by installing the ads mod using the admin panel, you need to change just 4 files (messageindex.template.php, displaytemplate.php, boardindex.template.php and index.template.php)

The first problem I faced was, the file - display.template.php doesn´t exist in the Blackrain folder theme.

Second, I was not able to find the code bellow on the boardindex.template.php:

echo '
</div>';


I made all the others changes, upload the changed files to the server and still can´t see the option to control the ads in the admin panel ... ? What should I do ? What do I missed ?

Thanks in advance for your kindly help !

Jeff Seabrook

#62
Unable to load the 'admin_above' template.

This is what I get after doing everything step by step - and in all the 4 files I did not see anything calling for "admin_above" or in the originals...

I can't access my admin area now...anybody have any ideas? checked subs.php - no luck.

Jeff Seabrook

fixed - subs.php - restored that file, then edited again.

hartiberlin

Hmm, after installation via package manager
of Version Admod 2.3 on SMF 1.1.3 and TP 0.983 and
editing all 4 template files
I am getting now this error,
when I want to go in Admin area to the
Ad Management at:
http://www.overunity.com/index.php?action=admod


Then I get an error saying:

Warning: call_user_func(Ads): First argument is expected to be a valid callback in /mounted-storage/home4/sub002/sc11940-GNVW/overunity/index.php on line 136

and in the main windows I get:
An Error Has Occurred!
Unable to load the 'main' template.


In my index.php file at line 136 is:
// What function shall we execute? (done like this for memory's sake.)
call_user_func(smf_main());


So I can not control the ads,
so what must I change to get into the
Ad Management Admin area ?

Can´t he find the normal default theme template or what ?
I am using a modded Azure theme.

Many thanks.

Regards, Stefan.

hartiberlin

Okay, the above errors were related to the some files like
Ads.php
and
LoadAds.php

Having only 0 ( zero) Bytes after the automatic installation.
I uploaded again the PHP files from the admod and now the
admin area works.

I only get at the Settings area:

Settings
Disable ads for admins    
Notice: Undefined index: ads_displayAdsAdmin in /mounted-storage/home4/sub002/sc11940-GNVW/overunity/Themes/default/languages/Ads.english.php (eval?) on line 403
/>
Disable Reports    
Notice: Undefined index: ads_updateReports in /mounted-storage/home4/sub002/sc11940-GNVW/overunity/Themes/default/languages/Ads.english.php (eval?) on line 407
/>
Disable all ads    
Notice: Undefined index: ads_quickDisable in /mounted-storage/home4/sub002/sc11940-GNVW/overunity/Themes/default/languages/Ads.english.php (eval?) on line 411
/>
Ads within posts look like actual posts    
Notice: Undefined index: ads_lookLikePosts in /mounted-storage/home4/sub002/sc11940-GNVW/overunity/Themes/default/languages/Ads.english.php (eval?) on line 415
/>


============

What could this be ?
Thanks.

murdocklawless

#66
there is no display.template.php file in dilbermc theme which you said we have to edit. some ads doesn't appear in dilbermc. for example Display ads on every page right below the menu. ads shown just for a second maybe less and it disappears when page load fully complete.

Raji

#67
I was using SMF version 1.1 RC3 and upgraded to 1.1.4
after completion of upgrading process following error is displaying.

Quote
Fatal error: Call to undefined function: show_topofpageads() in /hsphere/local/home/nohani/baask.com/diwan/Sources/Load.php(1726) : eval()'d code on line 170


here are my files of default theme I could not find mentioned lines (in Page 1) to place edits

I need more specific guidance.

Thanks in advance.

Regards
Raji

BSMdood

#68
OK, I've been through zillions (it seems) posts on getting the admod to work with other themes, and I'm VERY confused.

Mostly because I'm not sure WHICH index.php file to edit, and where it belongs... what files to edit / place where... etc.

I'm running:
SMF 1.1.4
SMF 1.0.12 / 1.1.4 / 2.0 b1.1 Update 1.0
Ad Managment 2.3 
THEME IS: bright_forest 110

Hope you can help - I have no trouble doing the edits myself, and I've tried, but they keep "spooging" my board. I'm thinking I'm editting the wrong files, but not sure. As a result I have restored everything (using my backups of course) so at present, no files are touched except for the mod / update and the them installed.

Please help !

UPDATE:

Well, I tried it AGAIN.
The theme only has 3 of the 4 files mentioned - the "display.template.php" is missing, so I copied it to the theme directory for the theme I'm using (see above) from the default theme - and noticed the updates were all there, so I did not change it.

NOW I keep getting a "parse error" on the "index.template" file. I've restored the original, and re-applied the edits THREE TIMES, but still get the error.

I'd give up and go with the default theme, but it just doesn't fit into the scheme of the website being developed.

ANYONE out there having troubles like this??

Snoopy_inc

Hi,

I have Oxygen Theme with Tiny portal installed.
The install was successful for my default theme.  For the oxygen theme nothing shows up.  I know i have to edit the files for the theme but having trouble finding certain areas.

</td>
This area is very hard to find in the code as i have multiple versions of this not to mention that i cant find the welcome area either.  I will paste the code at the end of the post from my index.template.php out of my oxygen theme directory.

Many thanks for your help on this issue :)

<?php

// Version: 1.1; index

/* This template is, perhaps, the most important template in the theme. It
contains the main template layer that displays the header and footer of
the forum, namely with main_above and main_below. It also contains the
menu sub template, which appropriately displays the menu; the init sub
template, which is there to set the theme up; (init can be missing.) and
the linktree sub template, which sorts out the link tree.

The init sub template should load any data and set any hardcoded options.

The main_above sub template is what is shown above the main content, and
should contain anything that should be shown up there.

The main_below sub template, conversely, is shown after the main content.
It should probably contain the copyright statement and some other things.

The linktree sub template should display the link tree, using the data
in the $context['linktree'] variable.

The menu sub template should display all the relevant buttons the user
wants and or needs.

For more information on the templating system, please see the site at:
http://www.simplemachines.org/
*/

// Initialize the template... mainly little settings.
function template_init()
{
global $context$settings$options$txt;

/* Use images from default theme when using templates from the default theme?
if this is 'always', images from the default theme will be used.
if this is 'defaults', images from the default theme will only be used with default templates.
if this is 'never' or isn't set at all, images from the default theme will not be used. */
$settings['use_default_images'] = 'never';

/* What document type definition is being used? (for font size and other issues.)
'xhtml' for an XHTML 1.0 document type definition.
'html' for an HTML 4.01 document type definition. */
$settings['doctype'] = 'xhtml';

/* The version this template/theme is for.
This should probably be the version of SMF it was created for. */
$settings['theme_version'] = '1.1';

/* Set a setting that tells the theme that it can render the tabs. */
$settings['use_tabs'] = false;

/* Use plain buttons - as oppossed to text buttons? */
$settings['use_buttons'] = false;

/* Show sticky and lock status seperate from topic icons? */
$settings['seperate_sticky_lock'] = false;
}

// The main sub template above the content.
function template_main_above()
{
global $context$settings$options$scripturl$txt$modSettings;

// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"'
$context['right_to_left'] ? ' dir="rtl"' '''><head>
<meta http-equiv="Content-Type" content="text/html; charset='
$context['character_set'], '" />
<meta name="description" content="'
$context['page_title'], '" />', empty($context['robot_no_index']) ? '' '
<meta name="robots" content="noindex" />'
'
<meta name="keywords" content="PHP, MySQL, bulletin, board, free, open, source, smf, simple, machines, forum, wellinformed.co.za, Well, Informed, Community, Unity, Interlinking, Forums" />
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/script.js?fin11"></script>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "'
$settings['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'], '";
// ]]></script>
<title>'
$context['page_title'], '</title>';

// The ?fin11 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/style.css?fin11" />
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/print.css?fin11" media="print" />';

/* Internet Explorer 4/5 and Opera 6 just don't do font sizes properly. (they are big...)
Thus, in Internet Explorer 4, 5, and Opera 6 this will show fonts one size smaller than usual.
Note that this is affected by whether IE 6 is in standards compliance mode.. if not, it will also be big.
Standards compliance mode happens when you use xhtml... */
if ($context['browser']['needs_size_fix'])
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/fonts-compat.css" />';

// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="help" href="'
$scripturl'?action=help" target="_blank" />
<link rel="search" href="' 
$scripturl '?action=search" />
<link rel="contents" href="'
$scripturl'" />';

// If RSS feeds are enabled, advertise the presence of one.
if (!empty($modSettings['xmlnews_enable']))
echo '
<link rel="alternate" type="application/rss+xml" title="'
$context['forum_name'], ' - RSS" href="'$scripturl'?type=rss;action=.xml" />';

// If we're viewing a topic, these should be the previous and next topics, respectively.
if (!empty($context['current_topic']))
echo '
<link rel="prev" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=prev" />
<link rel="next" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=next" />';

// If we're in a board, or a topic for that matter, the index will be the board's index.
if (!empty($context['current_board']))
echo '
<link rel="index" href="' 
$scripturl '?board=' $context['current_board'] . '.0" />';

// We'll have to use the cookie to remember the header...
if ($context['user']['is_guest'])
$options['collapse_header'] = !empty($_COOKIE['upshrink']);

// Output any remaining HTML headers. (from mods, maybe?)
echo $context['html_headers'], '
  <script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
 var current_leftbar = '
, empty($options['collapse_leftbar']) ? 'false' 'true'';

 function shrinkHeaderLeftbar(mode)
 {'
;

  // Guests don't have theme options!!
  if ($context['user']['is_guest'])
 echo '
document.cookie = "upshrink=" + (mode ? 1 : 0);'
;
  else
 echo '
smf_setThemeOption("collapse_leftbar", mode ? 1 : 0, null, "'
$context['session_id'], '");';
  echo '
document.getElementById("upshrinkLeftbar").src = smf_images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");

document.getElementById("leftbarHeader").style.display = mode ? "none" : "";

current_leftbar = mode;
 }
 // ]]></script>
 <script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
 var current_rightbar = '
, empty($options['collapse_rightbar']) ? 'false' 'true'';

 function shrinkHeaderRightbar(mode)
 {'
;

  // Guests don't have theme options!!
  if ($context['user']['is_guest'])
 echo '
document.cookie = "upshrink=" + (mode ? 1 : 0);'
;
  else
 echo '
smf_setThemeOption("collapse_rightbar", mode ? 1 : 0, null, "'
$context['session_id'], '");';

  echo '
document.getElementById("upshrinkRightbar").src = smf_images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");

document.getElementById("rightbarHeader").style.display = mode ? "none" : "";

current_rightbar = mode;
 }
  // ]]></script>

<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var current_header = '
, empty($options['collapse_header']) ? 'false' 'true'';

function shrinkHeader(mode)
{'
;

// Guests don't have theme options!!
if ($context['user']['is_guest'])
echo '
document.cookie = "upshrink=" + (mode ? 1 : 0);'
;
else
echo '
smf_setThemeOption("collapse_header", mode ? 1 : 0, null, "'
$context['session_id'], '");';

echo '
document.getElementById("upshrink").src = smf_images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");

document.getElementById("upshrinkHeader").style.display = mode ? "none" : "";

current_header = mode;
}
// ]]></script>
</head>
<body>'
;
//Display ads on the top of the page
if (function_exists("show_topofpageAds"))
{
$ads show_topofpageAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}

// TinyPortal start
  if($context['TPortal']['fixed_width']!=0)
 echo '<table align="center" width="'.$context['TPortal']['fixed_width'].'" cellpadding="0" cellspacing="0" border="0"><tr><td>';
// TinyPortal end

  // Because of the way width/padding are calculated, we have to tell Internet Explorer 4 and 5 that the content should be 100% wide. (or else it will assume about 108%!)
  echo '
  <table align="center" cellspacing="0" cellpadding="0" border="0" id="headerarea" style="padding: 12px 8px 0px 25px;" width="'
, (isset($settings['mywidth']) && !empty($settings['mywidth'])) ? $settings['mywidth'] : '100%' '"><tr><td>';

  // The logo and the three info boxes
  echo '
 <table cellspacing="0" cellpadding="0" border="0" align="center" width="100%" style="background-color: #ffffff;">'
;
  if(isset(
$settings['topbox']) && !empty($settings['topbox'])){
  echo ' <tr>
  <td valign="top" style="border: solid 1px #a0a0a0; border-bottom: 0px;">'
.$settings['topbox'].'</td>';
echo '<td valign="top" style="border: 0px; background-image: url('.$settings['images_url'].'/mythemestop.gif); background-repeat: repeat-y;"><img alt="*" src="'.$settings['images_url'].'/mythemetop.gif" style="margin: 0px;" /></td>';
echo '

</tr>'
;
 }
  echo ' <tr>
  <td align="right" class="myheader" valign="top" style="height: 50px; border: solid 1px #a0a0a0; ">'
.$context['forum_name'].'<br /></td>';
echo '<td rowspan="2" valign="top" style="border: 0px; background-image: url('.$settings['images_url'].'/mythemestop.gif); background-repeat: repeat-y;"><img alt="*" src="'.$settings['images_url'].'/mythemetop.gif" style="margin: 0px;" /></td>';
echo '

</tr>
 <tr style="background-color: #ededed;">
<td width="100%" style="padding: 10px;border: solid 1px #a0a0a0; border-top: 0px;">'
;
  // The main content should go here.  A table is used because IE 6 just can't handle a div.
  echo '
  <table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding-left: 10px;">'
;


 // Show the menu here, according to the menu sub template.
 template_menu();

  echo '</td></tr><tr id="upshrinkHeader"', empty($options['collapse_header']) ? '' ' style="display: none;"''><td class="tborder2">';
 
// userinfo
// TinyPortal
  if($context['TPortal']['showtop']==1)
  {
// TinyPortal end
echo '
<table style="margin-bottom: 4px;" width="99%" cellpadding="0" cellspacing="5" border="0"><tr>'
;

  if (!empty($context['user']['avatar']))
 echo '<td valign="top" style="padding: 6px;">'$context['user']['avatar']['image'], '</td>';

  echo '<td width="50%" valign="top" style="padding: 6px;font-family: verdana, arial, sans-serif;"><span class="smalltext">';

  // If the user is logged in, display stuff like their name, new messages, etc.
  if ($context['user']['is_logged'])
  {
 echo '
  '
$txt['hello_member'], ' <b>'$context['user']['name'], '</b>';

 // Only tell them about their messages if they can read their messages!
 if ($context['allow_pm'])
echo ', '$txt[152], ' <a href="'$scripturl'?action=pm">'$context['user']['messages'], ' '$context['user']['messages'] != $txt[153] : $txt[471], '</a>'$txt['newmessages4'], ' '$context['user']['unread_messages'], ' '$context['user']['unread_messages'] == $txt['newmessages0'] : $txt['newmessages1'];
 echo '.';

 // Is the forum in maintenance mode?
 if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '<br />
  <b>'
$txt[616], '</b>';

 // Are there any members waiting for approval?
 if (!empty($context['unapproved_members']))
echo '<br />
'
$context['unapproved_members'] == $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="'$scripturl'?action=viewmembers;sa=browse;type=approve">'$context['unapproved_members'] == $txt['approve_member'] : $context['unapproved_members'] . ' ' $txt['approve_members'], '</a> '$txt['approve_members_waiting'], '<br />';

 // Show the total time logged in?
 if (!empty($context['user']['total_time_logged_in']))
 {
echo '
  <br />'
$txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
  echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
  echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'];
 }

 echo '<br />
  <a href="'
$scripturl'?action=unread">'$txt['unread_since_visit'], '</a><br />
  <a href="'
$scripturl'?action=unreadreplies">'$txt['show_unread_replies'], '</a><br />
  '
$context['current_time'];
  }
  // Otherwise they're a guest - so politely ask them to register or login.
  else
  {
 echo '
  '
$txt['welcome_guest'], '<br />
  '
$context['current_time'], '<br />
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/sha1.js"></script>

<form action="'
$scripturl'?action=login2" method="post" accept-charset="'$context['character_set'], '" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' $context['session_id'] . '\');"' '''>
<div style="text-align: right;">
<input type="text" name="user" size="10" /> <input type="password" name="passwrd" size="10" />
<select name="cookielength">
<option value="60">'
$txt['smf53'], '</option>
<option value="1440">'
$txt['smf47'], '</option>
<option value="10080">'
$txt['smf48'], '</option>
<option value="43200">'
$txt['smf49'], '</option>
<option value="-1" selected="selected">'
$txt['smf50'], '</option>
</select>
<input type="submit" value="'
$txt[34], '" /><br />
'
$txt['smf52'], '
<input type="hidden" name="hash_passwrd" value="" />
</div>
</form>'
;
  }

  echo '
</span>
  </td>
  <td width="50%" style="padding-left: 5px;" valign="top" align="right">'
;

  // Show a random news item? (or you could pick one from news_lines...)
  if (!empty($settings['enable_news']))
 echo '
 <div style="height: 50px; overflow: auto; padding: 5px;" class="smalltext">'
$context['random_news_line'], '</div>
 '
;


 echo '</td>
</tr>
 </table><div style="padding: 3px;background-color: #e0e0e0;">
<form action="'
$scripturl'?action=search2" accept-charset="'$context['character_set'], '"  method="post" style="margin: 1px 10px 1px 6px;">
<b>'
$txt[182], ': </b><input type="text" name="search" value="" style="width: 190px;" />&nbsp;
<input type="submit" name="submit" value="'
$txt[182], '" style="width: 8ex;" />&nbsp;
<a href="'
$scripturl'?action=search;advanced">'$txt['smf298'], '</a>
<input type="hidden" name="advanced" value="0" />'
;

  // If we're on a certain board, limit it to this board ;).
  if (!empty($context['current_board']))
 echo '
<input type="hidden" name="brd['
$context['current_board'], ']" value="'$context['current_board'], '" />';

  echo '
 </form></div>'
;
 // The "key stats" box.
  echo '
<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td style="padding: 5px;" class="smalltext">
  <b>'
$modSettings['totalMessages'], '</b> '$txt[95], ' '$txt['smf88'], ' <b>'$modSettings['totalTopics'], '</b> '$txt[64], ' '$txt[525], ' <b>'$modSettings['totalMembers'], '</b> '$txt[19], '
  '
$txt[656], ': <b> - <a href="'$scripturl'?action=profile;u='$modSettings['latestMember'], '">'$modSettings['latestRealName'], '</a></b>
</td><td style="padding: 5px;" class="smalltext" align="right">Most online today: <b>'
.$modSettings['mostOnlineToday'].'</b>
- most online ever: <b>'
.$modSettings['mostOnline'].'</b> ('.timeformat($modSettings['mostDate']).')
</td></tr></table>
'
;



echo '</td></tr></table>';
// TinyPortal
 }
//  end
echo '
  <table id="bodyarea" width="100%" cellpadding="0" cellspacing="0" border="0"><tr>'
;

// TinyPortal integrated bars
 if($context['TPortal']['leftbar'])
 {
  echo '<td width="' ,$context['TPortal']['leftbar_width'], '" style="padding: ' , isset($context['TPortal']['padding']) ? $context['TPortal']['padding'] : '4' 'px;  padding-top: 4px;" valign="top">
  <div id="leftbarHeader"'
, empty($options['collapse_leftbar']) ? '' ' style="display: none;"'' style="padding-top: 5px; width: ' ,$context['TPortal']['leftbar_width'], 'px;">';
  TPortal_sidebar('left');
  echo '</div></td>';

 }
  echo '<td width="100%" align="left" valign="top" style="padding-top: 10px; padding-bottom: 10px;">';
  if($context['TPortal']['centerbar'])
echo '<div>' TPortal_sidebar('center') , '</div>';
}

function 
template_main_below()
{
  global $context$settings$options$scripturl$txt;

 echo '</td>';
// TinyPortal integrated bars
 if($context['TPortal']['rightbar']){
  echo '<td style="padding: ' , isset($context['TPortal']['padding']) ? $context['TPortal']['padding'] : '4' 'px;  padding-top: 4px;" valign="top" align="right">
  <div id="rightbarHeader"'
, empty($options['collapse_rightbar']) ? '' ' style="display: none;"'' style="width: ' ,$context['TPortal']['rightbar_width'], 'px; text-align: left; padding-top: 5px;">';
  TPortal_sidebar('right');
  echo '</div></td>';
 }


  echo '</tr></table>';

 // Show the "Powered by" and "Valid" logos, as well as the copyright.  Remember, the copyright must be somewhere!
  echo '

<div id="footerarea" style="text-align: center; padding-bottom: 1ex;'
$context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' width: 100%;' '''">
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
function smfFooterHighlight(element, value)
{
element.src = smf_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
}
// ]]></script>
 <table cellspacing="0" cellpadding="3" border="0" align="center" width="100%">
<tr>
<td width="28%" valign="middle" align="'
, !$context['right_to_left'] ? 'right' 'left''">
 <a href="http://www.mysql.com/" target="_blank"><img src="'
$settings['images_url'], '/h_powered-mysql.gif" alt="'$txt['powered_by_mysql'], '" border="0"  /></a>
 <a href="http://www.php.net/" target="_blank"><img id="powered-php" src="'
$settings['images_url'], '/h_powered-php.gif" alt="'$txt['powered_by_php'], '" border="0"  /></a>
</td>
  <td valign="middle" align="center" style="white-space: nowrap;" class="smalltext">
  '
theme_copyright(), ' <br /><b>Oxygen</b> / ',  tportal_version()  , '
  </td>
<td width="28%" valign="middle" align="'
, !$context['right_to_left'] ? 'left' 'right''">
 <a href="http://validator.w3.org/check/referer" target="_blank"><img id="valid-xhtml10" src="'
$settings['images_url'], '/h_valid-xhtml10.gif" alt="'$txt['valid_xhtml'], '" border="0"  /></a>
 <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"><img id="valid-css" src="'
$settings['images_url'], '/h_valid-css.gif" alt="'$txt['valid_css'], '" border="0" /></a>
  </td>
</tr>
 </table>'
;

  // Show the load time?
  if ($context['show_load_time'])
 echo '
 <span class="smalltext">'
$txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '</span>';

  echo '
 </div>'
;

// This is an interesting bug in Internet Explorer AND Safari. Rather annoying, it makes overflows just not tall enough.
if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari'] || $context['browser']['is_firefox'])
{
// The purpose of this code is to fix the height of overflow: auto div blocks, because IE can't figure it out for itself.
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA['
;

// Unfortunately, Safari does not have a "getComputedStyle" implementation yet, so we have to just do it to code...
if ($context['browser']['is_safari'])
echo '
window.addEventListener("load", smf_codeFix, false);

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = 0; i < codeFix.length; i++)
{
if ((codeFix[i].className == "code" || codeFix[i].className == "post" || codeFix[i].className == "signature") && codeFix[i].offsetHeight < 20)
codeFix[i].style.height = (codeFix[i].offsetHeight + 20) + "px";
}
}'
;
elseif ($context['browser']['is_firefox'])
echo '
window.addEventListener("load", smf_codeFix, false);
function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = 0; i < codeFix.length; i++)
{
if (codeFix[i].className == "code" && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0))
codeFix[i].style.overflow = "scroll";
}
}'
;
else
{
echo '
var window_oldOnload = window.onload;
window.onload = smf_codeFix;

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = codeFix.length - 1; i > 0; i--)
{
if (codeFix[i].currentStyle.overflow == "auto" && (codeFix[i].currentStyle.height == "" || codeFix[i].currentStyle.height == "auto") && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0) && (codeFix[i].offsetHeight != 0 || codeFix[i].className == "code"))
codeFix[i].style.height = (codeFix[i].offsetHeight + 36) + "px";
}

if (window_oldOnload)
{
window_oldOnload();
window_oldOnload = null;
}
}'
;
}

echo '
// ]]></script>'
;
 }

echo '</td></tr></table>';
  echo '</td></tr></table>';
// TinyPortal
echo '</div>';
  if($context['TPortal']['fixed_width']!=0)
 echo '</td></tr></table>';
  echo '
  </body>
</html>'
;
}

// Show a linktree.  This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{
  global $context$settings$options;

  // Folder style or inline?  Inline has a smaller font.
  echo '<span class="nav"'$settings['linktree_inline'] ? ' style="font-size: smaller;"' '''>';

  // Each tree item has a URL and name.  Some may have extra_before and extra_after.
  foreach ($context['linktree'] as $link_num => $tree)
  {
 // Show the | | |-[] Folders.
 if (!$settings['linktree_inline'])
 {
if ($link_num 0)
  echo str_repeat('<img src="' $settings['images_url'] . '/icons/linktree_main.gif" alt="| " border="0" />'$link_num 1), '<img src="' $settings['images_url'] . '/icons/linktree_side.gif" alt="|-" border="0" />';
echo '<img src="' $settings['images_url'] . '/icons/folder_open.gif" alt="+" border="0" />&nbsp; ';
 }

 // Show something before the link?
 if (isset($tree['extra_before']))
echo $tree['extra_before'];

 // Show the link, including a URL if it should have one.
 echo '<b>'$settings['linktree_link'] && isset($tree['url']) ? '<a href="' $tree['url'] . '" class="nav">' $tree['name'] . '</a>' $tree['name'], '</b>';

 // Show something after the link...?
 if (isset($tree['extra_after']))
echo $tree['extra_after'];

 // Don't show a separator for the last one.
 if ($link_num != count($context['linktree']) - 1)
echo $settings['linktree_inline'] ? ' &nbsp;|&nbsp; ' '<br />';
  }

  echo '</span>';
}

// Show the menu up top.  Something like [home] [help] [profile] [logout]...
function template_menu()
{
  global $context$settings$options$scripturl$txt;


  $mycode='onmouseover="this.style.backgroundPosition=\'0 0px\'" onmouseout="this.style.backgroundPosition=\'0 -24px\'"';
  echo '
 <div id="myshrink"><div style=" position: relative;  float: left;">'
;

// TinyPortal

if($context['TPortal']['showtop'])
 echo '<a href="#" onclick="shrinkHeader(!current_header); return false;"><img id="upshrink" src="'$settings['images_url'], '/', empty($options['collapse_header']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" style="margin: 2px 0;" border="0" /></a><img id="upshrinkTemp" src="'$settings['images_url'], '/blank.gif" alt="" style="margin-right: 1ex;" /> ';
if($context['TPortal']['leftbar'])
 echo '<a href="#" onclick="shrinkHeaderLeftbar(!current_leftbar); return false;"><img id="upshrinkLeftbar" src="'$settings['images_url'], '/', empty($options['collapse_leftbar']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" style="margin: 2px 0;" border="0" /></a><img id="upshrinkTempLeftbar" src="'$settings['images_url'], '/blank.gif" alt="" style="margin-right: 0ex;" />';
if($context['TPortal']['rightbar'])
 echo '<a href="#" onclick="shrinkHeaderRightbar(!current_rightbar); return false;"><img id="upshrinkRightbar" src="'$settings['images_url'], '/', empty($options['collapse_rightbar']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" style="margin: 2px 0;" border="0" /></a><img id="upshrinkTempRightbar" src="'$settings['images_url'], '/blank.gif" alt="" style="margin-right: 0ex;" />';
// TinyPortal end

echo '</div><div id="bbhome"  '.$mycode.'><a href="http://www.wellinformed.co.za/forum" rel="nofollow"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[103] . '" style="margin: 0px; width: 47px; height: 24px;" border="0" /></a></div>
<div id="bbforum"  '
.$mycode.'><a href="'$scripturl'?action=forum"><img src="' $settings['images_url'] . '/blank.gif" alt="forum" style="margin: 0px; width: 52px; height: 24px;" border="0" /></a></div>
  <div id="bbhelp"  '
.$mycode.'><a href="'$scripturl'?action=help" ><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[119] . '" style="margin: 0px; width: 36px; height: 24px;" border="0" /></a></div>';

  // How about the [search] button?
  if ($context['allow_search'])
 echo '
  <div id="bbsearch"  '
.$mycode.'><a href="'$scripturl'?action=search" rel="nofollow"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[182] . '" style="margin: 0px; width: 56px; height: 24px;" border="0" /></a></div>';

  // Is the user allowed to administrate at all? ([admin])
  if ($context['allow_admin']){
 echo '
  <div id="bbadmin"  '
.$mycode.'><a href="'$scripturl'?action=admin" rel="nofollow"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[2] . '" style="margin: 0px; width: 52px; height: 24px;" border="0" /></a></div>';
  }
  // Edit Profile... [profile]
  if ($context['allow_edit_profile'])
 echo '
  <div id="bbprofile"  '
.$mycode.'><a href="'$scripturl'?action=profile" rel="nofollow"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[79] . '" style="margin: 0px; width: 56px; height: 24px;" border="0" /></a></div>';

  // The [calendar]!
  if ($context['allow_calendar'])
 echo '
  <div id="bbcalendar"  '
.$mycode.'><a href="'$scripturl'?action=calendar"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt['calendar24'] . '" style="margin: 0px; width: 74px; height: 24px;" border="0" /></a></div>';

  // If the user is a guest, show [login] and [register] buttons.
  if ($context['user']['is_guest'])
  {
 echo '
  <div id="bblogin"  '
.$mycode.'><a href="'$scripturl'?action=login" rel="nofollow"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[34] . '" style="margin: 0px; width: 48px; height: 24px;" border="0" /></a></div>
  <div id="bbregister"  '
.$mycode.'><a href="'$scripturl'?action=register"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[97] . '" style="margin: 0px; width: 62px; height: 24px;" border="0" /></a></div>';
  }
  // Otherwise, they might want to [logout]...
  else
 echo '
  <div id="bblogout"  '
.$mycode.'><a href="'$scripturl'?action=logout;sesc='$context['session_id'], '"><img src="' $settings['images_url'] . '/blank.gif" alt="' $txt[108] . '" style="margin: 0px; width: 60px; height: 24px;" border="0" /></a></div>';
}

// Generate a strip of buttons, out of buttons.
function template_button_strip($button_strip$direction 'top'$force_reset false$custom_td '')
{
global $settings$buttons$context$txt$scripturl;

if (empty($button_strip))
return '';

// Create the buttons...
foreach ($button_strip as $key => $value)
{
if (isset($value['test']) && empty($context[$value['test']]))
{
unset($button_strip[$key]);
continue;
}
elseif (!isset($buttons[$key]) || $force_reset)
$buttons[$key] = '<a href="' $value['url'] . '" ' .( isset($value['custom']) ? $value['custom'] : '') . '>' . ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' . ($value['lang'] ? $context['user']['language'] . '/' '') . $value['image'] . '" alt="' $txt[$value['text']] . '" border="0" />' $txt[$value['text']]) . '</a>';

$button_strip[$key] = $buttons[$key];
}

echo '
<td '
$custom_td'>'implode($context['menu_separator'], $button_strip) , '</td>';
}

?>

catchpen

Quote from: Snoopy_inc on October 10, 2007, 11:08:06 AM
Hi,

I have Oxygen Theme with Tiny portal installed.
The install was successful for my default theme.  For the oxygen theme nothing shows up.  I know i have to edit the files for the theme but having trouble finding certain areas.

</td>
This area is very hard to find in the code as i have multiple versions of this not to mention that i cant find the welcome area either.  I will paste the code at the end of the post from my index.template.php out of my oxygen theme directory.
Many thanks for your help on this issue :)



I had the same problem...

What I did with the Mesh theme (and it wasn't very fun either) was compare what Big Guy posted at the beginning of this topic and what the files look like from your default theme folder since it works on that one.

Search on your default template files for the mod code and get your bearings by comparing that with your non-default theme. 

Oh yeah it helps  big time to get a debugger php program like PHP Designer 2007 it's free. Also install Easy PHP 1.7 (free too) for your php.ini to help PHP Designer 2007 debugging mode (sounds complicated but Google it, it's not)
That way you know you screwed up before uploading your files back to the server...I'm going to takes some aspirin now.  :swoon:

mikew

I have v2-3 installed on 1.1.4.  It works great on the default theme, but not on my oxygen theme.  I believe I have successfully edited the files as described at the beginning of this thread, but I still don't see ads.  The only difference I see is that my theme doesn't have a Display.template.php file. Should I just copy that over to my theme from the default or am I missing something?

Minadude

Hello everyone!

So I have it installed on wow-dk and the latest smf

It shows fine for admins....but adds don't show for regular users....any idea?

also I want it to show for GUESTS too....:(

thanks for your help

ApplianceJunk

Admin>Members>Permissions>Modify
check: Enable Ads
ApplianceJunk.com
Your Appliance Repair Experts

Minadude

New issue.......:(

the messages text don't show!!!! :(

adds show but not the replies!

Knibal

Just wanted to give thanks for this help, I edited the hole files and now it works great on my own theme!!! ;)

myaicons

ok... so i figured it out... all the edits were made when i installed the mod... except for the ones for the index.template.php file...

so i did the edits for that file and the appropriate ads started showing up.... all except for the welcome user area... because im not sure which instance of the </td> i need to add the code to...

QuoteIn the same file find:

Code:

                     </td>


After that add:

Code:

';
                     //Welcome Ads
                     if (function_exists("show_welcomeAds"))
                     {
                        $ads = show_welcomeAds();
                        if(!empty($ads))
                        {
                           echo '<td class="windowbg2">';
                           if($ads['type']==0)
                              echo $ads['content'];
                           else
                              eval($ads['content']);
                           echo '</td>';
                        }
                        unset($ads);
                     }
                  echo '


so.... can i get a clarification as to where to exactly put the welcome ads code???

thanks



neotan

Works great !!! Thanks


============
SMF 1.1.4

Black Rain v2

http://jparts.info/forum

utal

heys!

how did you managed to put all the edits in the files in version 1.1.4? there are some file edits in files that aren't in BlackRain V2 (for instance Display.template.php)

can you help please?

tks!

Quote from: neotan on February 02, 2008, 09:55:53 AM
Works great !!! Thanks


============
SMF 1.1.4

Black Rain v2

http://jparts.info/forum

mcichocki

#79
Quote from: bigguy on January 11, 2007, 07:42:32 PM
These are the edits for the ad mod version 2.3

In index.php look for:

'trackip' => array('Profile.php', 'trackIP'),

Before that add:

'admod' => array('Ads.php', 'Ads'),

In the same file search for:

require_once($sourcedir . '/Security.php');

Before that add:

if (file_exists($sourcedir . '/LoadAds.php'))
require_once($sourcedir . '/LoadAds.php');


In the same file search for:

loadPermissions();

Before that add:

// Load all the ads up
if (function_exists("loadAds"))
loadAds();


Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



In your Sources Directory find and open Subs.php, Search for:

loadLanguage('Admin');

Before that add:

loadLanguage('Ads');

In the same file search for:

'manage_themes' => '<a href="' . $scripturl . '?action=theme;sa=admin;sesc=' . $sc . '">' . $txt['theme_admin'] . '</a>',

Before that add:

'edit_addmod' => '<a href="' . $scripturl . '?action=admod">' . $txt['ad_management'] . '</a>',

Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



In your theme directory find and open index.template.php and search for:

<body>';

After that add:

//Display ads on the top of the page
if (function_exists("show_topofpageAds"))
{
$ads = show_topofpageAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

</td>

After that add:

';
//Welcome Ads
if (function_exists("show_welcomeAds"))
{
$ads = show_welcomeAds();
if(!empty($ads))
{
echo '<td class="windowbg2">';
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
echo '</td>';
}
unset($ads);
}
echo '


In the same file find:

template_menu();

After that add:

//Below the menu ads
if (function_exists("show_indexAds") && function_exists("show_towerleftAds") && function_exists("show_towerrightAds"))
{
$ads = show_indexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);

//Tower left Ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '<table><tr><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td><td width="100%" valign="top">';

unset($ads);
//Tower Right Ads
$ads = show_towerrightAds();
if(!empty($ads))
echo '<table><tr><td width="100%" valign="top">';
unset($ads);
}


In the same file find:

// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!

Before that add:

//Close table for towerright ads
if (function_exists("show_towerrightAds") && function_exists("show_towerleftAds") && function_exists("show_bottomAds"))
{
$ads = show_towerrightAds();
if(!empty($ads))
echo '</td><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td></tr></table>';

unset($ads);
//Close table for towerleft ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '</td></tr></table>';
unset($ads);

//Show ads on the bottom of the page
$ads = show_bottomAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In BoardIndex.template.php find:

// Show some statistics next to the link tree if SP1 info is off.

Before that add:

//Display ads on the board index
if (function_exists("show_boardAds"))
{
$ads = show_boardAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

echo '
</div>';


After that add:

//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In Display.template.php find:

global $context, $settings, $options, $txt, $scripturl, $modSettings;

After that add:

//Display ads on the thread page
if (function_exists("show_threadAds"))
{
$ads = show_threadAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

// Get all the messages...

And replace with:

//Ad Counter
$adcounter =0;
// Get all the messages...
while ($message = $context['get_message']())
{
$adcounter++;


In the same file find:

</td></tr>';
}


And replace with:

</td></tr>';
if (function_exists("show_posts"))
{
if ($adpost = show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '

<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr><td class="windowbg3">
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $context['forum_name'], '</b>
<div class="smalltext">
</div>
</td>
<td valign="top" width="85%" height="100%">
<table width="100%" border="0"><tr>
<td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
<td valign="middle">
<div style="font-weight: bold;" id="subject_', $message['id'], '">
<a href="', $message['href'], '">', $message['subject'], '</a>
</div>
<div class="smalltext">&#171; <b>', !empty($message['counter']) ? $txt[146] . ' #' . $message['counter'] : '', ' ', $txt[30], ':</b> ', $message['time'], ' &#187;</div></td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
', $reply_button, '';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
', $reply_button, '';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
', $modify_button, '';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
', $remove_button, '';

// What about splitting it off the rest of the topic?
if ($context['can_split'])
echo '
', $split_button, '';
echo '
</td>
</tr></table>
<hr width="100%" size="1" class="hrcolor" />
<div class="post">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</div>
</td>
</tr>
<tr>
<td valign="bottom" class="smalltext" width="85%">
<table width="100%" border="0" style="table-layout: fixed;"><tr>
<td colspan="2" class="smalltext" width="100%">
</tr><tr>
<td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
<img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
</td>
</tr></table>
</tr>
</table>
</td></tr>
</table>
</td></tr>';
}
else
echo '
<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="windowbg3">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) , '</td>
</tr>
</table>
</td></tr>';
}

}

}

if(function_exists("show_lastpostAds") && function_exists("show_posts"))
{
if(($ads = show_lastpostAds()) && !show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '

<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr><td class="windowbg3">
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $context['forum_name'], '</b>
<div class="smalltext">
</div>
</td>
<td valign="top" width="85%" height="100%">
<table width="100%" border="0"><tr>
<td valign="middle"><img src="', $message['icon_url'] . '" alt="" border="0" /></td>
<td valign="middle">
&nbsp;</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" height="20" style="font-size: smaller;">';
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
', $reply_button, '';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
', $reply_button, '';


echo '
</td>
</tr></table>
<hr width="100%" size="1" class="hrcolor" />
<div class="post">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</div>
</td>
</tr>
<tr>
<td valign="bottom" class="smalltext" width="85%">
<table width="100%" border="0" style="table-layout: fixed;"><tr>
<td colspan="2" class="smalltext" width="100%">
</tr><tr>
<td valign="bottom" class="smalltext" id="modified_', $message['id'], '">
</td>
<td align="', !$context['right_to_left'] ? 'right' : 'left', '" valign="bottom" class="smalltext">
<img src="', $settings['images_url'], '/ip.gif" alt="" border="0" />&nbsp;', $txt[511], '
</td>
</tr></table>
</tr>
</table>
</td></tr>
</table>
</td></tr>';
}
else
echo '
<tr><td style="padding: 1px 1px 0 1px;">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="windowbg3">', $ads['type'] == 0 ? $ads['content'] : eval($ads['content']) , '</td>
</tr>
</table>
</td></tr>';

}

}




In MessageIndex.template.php find:

global $context, $settings, $options, $scripturl, $modSettings, $txt;

After that add:

//Display Ads on the Message index
if (function_exists("show_threadindexAds"))
{
$ads = show_threadindexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}


In the same file find:

echo '
</table>
</div>';


After that add:

//Display Ads on the Message index
if (function_exists("show_underchildren"))
{
$ads = show_underchildren();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}




In ManagePermissions.php in the sources directory find:

'pm' => array(

And replace with:

'ad_manage' => array(
'ad_manageperm' => false,
),
'pm' => array(


Save and upload after backing up the original.
NOTE: Only do this edit if installing manually



ONLY If installing manually you will require these 2 files to be in your Sources Directory:

Ads.php
LoadAds.php

And this file to be in your theme directory:

Ads.template.php

And this file to be in your Langauge directory:

Ads.english.php

So the very first step...what index.php am I editing?
The one in the themes folder has no code as indicated.

I'm a noob so I'm sorry if this is obvious to some others. ;)

Thanks,
MC


Added---
http://custom.simplemachines.org/themes/index.php?lemma=519
This is the theme I'm using if that helps at all.

geoffstr

I'm using the Black RainTheme. It doesn't contain messageindex.template.pho, display.template.php or Boardindex.template.php

Will I be able to use ad mod with this following the instructions posted?

sturmkatze

I am using ig-oh theme. I was trying to do the edits and in the BoardIndex.template.php file, I cannot find this part:

QuoteIn the same file find:

Code:

      echo '
   </div>';

I have done searches for it and it just ain't there. What do I do? I need this mod to work and it's just not  >:( Here, attached is the file...
Marsh Wise
reenactor.Net
www.reenactor.net/
reenactor.Net Forums: http://www.reenactor.net/forums/index.php

ramsen


frosted

hey i tried to install those mods but as u have pointed out some of the text is not there

i read that dawn said changes were made but im not too comfortable with php yet because im quite new

i have the aa new damage theme from webtechnica

my planning is to do the adds from google adsense AND place a rotating banner cycle for the site


ne ideas on how i could change  this mod to work with that

Talkrooms

Im am using SEO Light Theme.

In the very first post it states "index.php" search for....

My index.php file only has the following.

//
<?php

// Try to handle it with the upper level index.php.  (it should know what to do.)


if (file_exists(dirname(dirname(__FILE__)) . '/index.php'))


   include (dirname(dirname(__FILE__)) . '/index.php');


else


   exit;


?>

can you assist me in where to stat the install of admanagement?

thanks!
Mike.

ideasworld

Thanks for the post, but I could not fine these files

Quoteecho '
   </div>';

and when I replace
Quote// Get all the messages...
with
Quote//Ad Counter
   $adcounter =0;
   // Get all the messages...
   while ($message = $context['get_message']())
   {
      $adcounter++;
, i get errors.



Please, i want the ads centered and not aligned to the left. How do i rotate the ad?, like showing a different ad when the page refreshed. 
Please help me out.  :police:



toofaan

QuoteCode:

<body>';


After that add:

Code:

   //Display ads on the top of the page
   if (function_exists("show_topofpageAds"))
   {
      $ads = show_topofpageAds();   
      if(!empty($ads))
         if($ads['type']==0)
            echo $ads['content'];
         else
            eval($ads['content']);   
      unset($ads);
   }
i can not find <body>'; .
i am using Anecdota theme + smf 1.1.15

toofaan


gri

Quote from: "url=http://www.smfads.com/forums/index.php?topic=475.msg6846#msg6846]toofaan in ~Edits for ad_mod_1-1-1_v2-3~[/url]"]
very bad support.

toofaan,
Would you like to have a dialogue with me ?
Instruction on getting Help on PAY-ME (AdManagement) mod installing.
Your GRItoadMIXes

toofaan

Quote from: gri on July 20, 2008, 11:07:50 AM
Quote from: "url=http://www.smfads.com/forums/index.php?topic=475.msg6846#msg6846]toofaan in ~Edits for ad_mod_1-1-1_v2-3~[/url]"]
very bad support.

toofaan,
Would you like to have a dialogue with me ?

Yas.

gri

#90
Quote from: "url=http://www.smfads.com/forums/index.php?topic=475.msg6850#msg6850]toofaan in ~Edits for ad_mod_1-1-1_v2-3~[/url]"]
Yes.

For having a dialogue please try to fulfill my requirements
in
   Instruction on getting PAY-ME mod installation Help
<< http://www.smfads.com/forums/index.php?topic=1703.msg6793#msg6793

First steps are devoted to moving our further posts from this forum
to your forum and my forum.
Instruction on getting Help on PAY-ME (AdManagement) mod installing.
Your GRItoadMIXes

minoryears

Im confused, Im not instaling manually.. I did a complete install to my custom theme. here is my site, www.socialpink.com
My ads dont show up. So how and what do I edit? thanks in advance

bigguy

In a custom theme you have to install manually for any template files that are listed in the mod that are in your custom theme need to be edited.

badbo

Quote from: ideasworld on April 13, 2008, 01:28:49 AM
Thanks for the post, but I could not fine these files

Quoteecho '
   </div>';

and when I replace
Quote// Get all the messages...
with
Quote//Ad Counter
   $adcounter =0;
   // Get all the messages...
   while ($message = $context['get_message']())
   {
      $adcounter++;
, i get errors.



Please, i want the ads centered and not aligned to the left. How do i rotate the ad?, like showing a different ad when the page refreshed. 
Please help me out.  :police:



Idealsworld I can't I can't get this thing to work either on 1.15 but I can help you. Most php editors will not pick up two lines of codes so just type in echo '
and look for </div>';[/  right under echo '. there are lots of echo ' but only one with
</div>';[/ under it. Hope this helps. Now if I could just get this thing to work myself. LOL

Badbo


badbo

#94
Well here is one for you guys to sort out. Tryed for the 10 time to install this mod on smf 1.1.5. Tried the pagage manager first. Got test failed  on two line so I decided to try it manually I figured I had another mod conflicting with it. We now I get a nice error message and no acces to forum.
Table 'smf.smf_ads' doesn't exist
File: C:\smf\Sources\LoadAds.php
Line: 33
badbo

Update  this is a super mod just what I needed. I was a dummy and didn't run the querys correct. Thanks to germ and bigguy

bo

sim_jude96

#95
@up: The same happen when I run install.php supplied with the mod. I have to reinstall SMF. I gotta add that I have installed the mod manually because I forget about PM.

Can someone tell me how to do it on the DS-Natural theme by DzinerStudio.com beacuse I am struggling with this so much that I want just to have it done :(

EDIT: Me and other admins decided to close the forum. Never mind :)

beatlemanu

Hi,

This mod seems very good and I had no problem installing and using it on the default 1.1.5 theme, but I'm trying to install it on "RengliTheme" and I'm having no luck.  Could you please tell me what I need to edit exactly.  I'm no programmer so I really need basic instructions. I understand that I only have to edit 4 files (I think).  But I'm having trouble finding where those files are because for example there are multiple uses of <td/> etc...

This is a very new site www.Regain.name and it only has a few mods: 

Mod Name Version 
1. Wrapper Mod 0.1
2. Ad Managment 2.3
3. Blog (for 1.1.5) 1.11 (downloaded but no longer installed)
4. RateThatTopic

Any help would be appreciated, thanks in advance!

Doboy33

Need help please.

Version of SMF:1.1.6
Version of Ad Mod:2.3
Theme being used:Agisti by Fakdordes  (to view canuckle.ca/forum)
Are the files clean: I have - Ad Managment 2.3/AddThis Social Bookmarks 1.0/Contact Page 1.1 and SMF Sitemap 1.2.1


and Thank You.

pepijntje14

#98
Can anyone help me?
I try'd but I failed  :-\

Version smf: 1.1.6
Ad mod: 2.3 (latest)
Theme: A FerryTema v2 (See http://www.smfthemes.org/index.php?theme=94 for a preview)
I don't have anything else installed....

Thanks for take'ing the time to help me!

Rus

#99
NM, duh moment.   ;)