Internet Marketing Forum

Internet Marketing Forum


For Webmasters and Entrepreneurs
|
Welcome, Guest. Please login or register.
Did you miss your activation email?
Feb 11, 2012, 03:51:55 AM

Login with username, password and session length

There is no point to samba if it doesn't make you smile.


- Alma Guillermoprieto

|-   Internet Marketing Forum > Online Business Discussions > Discussion Forum Administration
+  

SMF (SimpleMachines) Forum Discussion

0 Members and 2 Guests are viewing this topic.
Pages: 1 [2] 3 4 ... 6 Reply to Thread
Author Topic: SMF (SimpleMachines) Forum Discussion  (Read 7868 times)
OfflineTony
Senior Member
Tony is on a distinguished road
Joined: Jun 2006
Posts: 229



View Tony\s ProfileWWW
China
notepad Sep 16, 2006, 05:21:37 AM #10
SMF is a good model for this kind Forum

Offlinesasawawa
 left the building  
Code4Gold Icon
sasawawa is on a distinguished road
Joined: Jun 2006
Posts: 4915


Avatar of sasawawa

View sasawawa\s Profile
Gender: Male China
notepad Sep 30, 2006, 01:07:06 PM #11
C4G , i think u should modify the script , set min letters is 20 or more in  the  new posts . huh

I want to set my forum like this , but i don't know how to modify it . huh


Too many spammers here, my forums also,  so i stop the pay to post plan ,only implemented one week, i hate the SPAMMERS!!!

The guy who been banned by u joined my forum ,  i want to ban him ,too! Mistake

OfflineCode4Gold
Administrator
Code4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the rough
Joined: Jan 2006
Posts: 6215


Avatar of Code4Gold

Administrator

View Code4Gold\s ProfileWWW
Gender: MaleGemini United States
notepad Oct 01, 2006, 05:34:38 PM #12
There is a modification available for SMF that sets a minimum number of characters or words per post.

http://mods.simplemachines.org/index.php?mod=290

I've not installed it, but I'll definitely be adding it sometime this month.

When I add SMF modifications (mods), I add them by hand and not through the package manager. You can do this opening the package-info.xml file in Notepad, and adding the code by hand.



Latest Blog Post : 8 Tips for Creating a Marketing Buzz

OfflineCode4Gold
Administrator
Code4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the rough
Joined: Jan 2006
Posts: 6215


Avatar of Code4Gold

Administrator

View Code4Gold\s ProfileWWW
Gender: MaleGemini United States
notepad Oct 01, 2006, 05:35:04 PM #13

For anybody interested I'll be selling the complete customized C4G style forum as a "Theme", that can be easily uploaded into your SMF folder and just set the main theme to the C4G theme.
It will include...
1. PTP Mod
2. Color Picker Mod
3. Advanced Signature Editor
4. SubTopics Mod
5. Banner Managment

and all the other security and safety things I've coded into this forum.

I'll be selling the complete package for $50 (accept E-Gold, E-bullion, AsianPay, Pecunix, 1MDC, MoneyBookers)

It will be available for release October 15th 2006. PM me for details.

Latest Blog Post : 8 Tips for Creating a Marketing Buzz

Offlinewolfunds
Senior Member
wolfunds is on a distinguished road
Joined: Oct 2006
Posts: 439


Avatar of wolfunds

View wolfunds\s ProfileWWW
Gender: MaleAries Scotland
notepad Nov 05, 2006, 05:24:16 AM #14
Quote from: C4G-Dave on Sep 03, 2006, 01:15:02 PM
Notice my newest little SMF modification, the little "country flags" by a users detail on a thread. We integrated "IP2Location" database we'd purchased into this site to put a little flag based on the members ip address.


Yes and you really really need to sort this

For United kingdom you show the St George's cross which is the English Flag, being Scottish I almost throw up my dinner every time I see that  Censored

OfflineTdinoz
Elite Member
Tdinoz is on a distinguished road
Joined: Oct 2006
Posts: 1268


anonymous avatar

Laugh Often

View Tdinoz\s ProfileWWW
Australia
notepad Nov 05, 2006, 06:21:26 AM #15
Quote from: wolfunds on Nov 05, 2006, 05:24:16 AM
Quote from: C4G-Dave on Sep 03, 2006, 01:15:02 PM
Notice my newest little SMF modification, the little "country flags" by a users detail on a thread. We integrated "IP2Location" database we'd purchased into this site to put a little flag based on the members ip address.

For United kingdom you show the St George's cross which is the English Flag, being Scottish I almost throw up my dinner every time I see that  Censored

I can imagine  grin



Here you go Dave just in case you get  a few aussies in here that want their own preferred flag choice

https://163.c-gold.com 
Register now & grab a low acc no

http://tdinoz-td.blogspot.com
OfflineBustaBank
Senior Member
BustaBank is on a distinguished road
Joined: Oct 2006
Posts: 113


Avatar of BustaBank

View BustaBank\s Profile
Canada
notepad Nov 06, 2006, 08:10:44 AM #16
Is the banner management the same as advanced ad management or a totally different mod?
OfflineCode4Gold
Administrator
Code4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the roughCode4Gold is a jewel in the rough
Joined: Jan 2006
Posts: 6215


Avatar of Code4Gold

Administrator

View Code4Gold\s ProfileWWW
Gender: MaleGemini United States
notepad Nov 10, 2006, 04:38:07 AM #17
Quote from: BustaBank on Nov 06, 2006, 08:10:44 AM
Is the banner management the same as advanced ad management or a totally different mod?

I hand coded all of the modifications to the SMF here on Code4Gold, and consequently learned never to code onto the "default" theme because when you update the sorftware it overwrites the default. Ha, funny, I've just been elected to the SMF developers crew and some of the enhancements I made here at C4G will be added to the next stable release of SMF (ie: the subtitles)...

The banner code is easily inserted into the sMF code if you edit index.template.php around line #290 where you see...

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

echo '
   </div>';



and before the line

// The main content should go here.  A table is used because IE 6 just can't handle a div.


Add your banner code there. I use a mysql table with the banner code...

my code looks like this

Quote
   // BANNERS
   mysql_connect( "localhost", "xxx", "xxx" );
   mysql_select_db( "xxx" );
   $sql = "SELECT * FROM __banners WHERE bannerType='b' and bannerStatus='a' ORDER BY RAND() LIMIT 4";
   $result = mysql_query( $sql );
   
   $sql = "UPDATE __banners SET bannerViews=bannerViews+1 WHERE ";
   
   echo "<center><table width=940 border=0 cellpadding=0 cellspacing=2>";
   echo "<tr><td width=470>";
   $rs = mysql_fetch_object( $result );
   echo "$rs->bannerText";
   $sql .= "bid=$rs->bid or ";
   echo "<br style='font-size:1px;'><a href='http://www.code4gold.com/advertise.php?xz=1' title='Advertise on Code4Gold'>Rotate Your banner ad here ($5 per day - $25 per week) - click for info</a>";
   $rs = mysql_fetch_object( $result );
   echo "$rs->bannerText";
   $sql .= "bid=$rs->bid or ";
   echo "<br style='font-size:1px;'><a href='http://www.code4gold.com/advertise.php?xz=1' title='Advertise on Code4Gold'>Rotate Your banner ad here ($5 per day - $25 per week) - click for info</a>";
   echo "</td><td width=470>";
   $rs = mysql_fetch_object( $result );
   echo "$rs->bannerText";
   $sql .= "bid=$rs->bid or ";
   echo "<br style='font-size:1px;'><a href='http://www.code4gold.com/advertise.php?xz=1' title='Advertise on Code4Gold'>Rotate Your banner ad here ($5 per day - $25 per week) - click for info</a>";
   $rs = mysql_fetch_object( $result );
   echo "$rs->bannerText";
   $sql .= "bid=$rs->bid";
   echo "<br style='font-size:1px;'><a href='http://www.code4gold.com/advertise.php?xz=1' title='Advertise on Code4Gold'>Rotate Your banner ad here ($5 per day - $25 per week) - click for info</a>";
   
   echo "</td></tr><tr><td colspan=2>
       <center><br style='font-size:1px;'><!--<img src=/banners/728-Banner.jpg>-->";
   
   $sql2 = "SELECT * FROM __banners WHERE bannerType='l' and bannerStatus='a' ORDER BY RAND() LIMIT 1";
   $result2 = mysql_query( $sql2 );
   $rs2 = mysql_fetch_object( $result2 );
   echo "$rs2->bannerText";
   $sql .= " or bid=$rs2->bid";
   
   echo "
       <br style='font-size:1px;'><a href='http://www.code4gold.com/advertise.php?xz=3' title='Advertise on Code4Gold'>Purchase This Banner ($10 per day - $50 per week) - 0 of 3 available - click for info</a>
       </center>";
   
   echo "</td></tr></table></center>";
   $result = mysql_query( $sql );

can create the banners table with the following sql statement

Quote
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for __banners
-- ----------------------------
CREATE TABLE `__banners` (
  `bid` int(11) NOT NULL auto_increment,
  `ownerid` int(11) default '0',
  `ownerName` varchar(36) default NULL,
  `bannerType` char(1) default NULL,
  `bannerText` text,
  `bannerViews` int(11) default '0',
  `bannerStatus` char(1) default NULL,
  `expireDate` datetime default NULL,
  PRIMARY KEY  (`bid`)
) ENGINE=MyISAM AUTO_INCREMENT=140 DEFAULT CHARSET=latin1;

I just use Navicat to manually add the new banners, mainly because you would never believe home many lamers try to scam a free banner ad...





Latest Blog Post : 8 Tips for Creating a Marketing Buzz

Offlinesasawawa
 left the building  
Code4Gold Icon
sasawawa is on a distinguished road
Joined: Jun 2006
Posts: 4915


Avatar of sasawawa

View sasawawa\s Profile
Gender: Male China
notepad Jan 26, 2007, 02:38:52 PM #18
Hi, Dave, why not update C4G forum SMF version to the larest version 1.1.1 . Then install  Ad Managment 2.3  ,check  Ad Management mod 2.3 here.

http://custom.simplemachines.org/mods/index.php?mod=255

The new version has some new features .Marverllous! It's  inculding report ad  function.

Quote
Clicking this tab will give you a short summary on what ads are placed and where they are placed on your forum, plus how many hits they are getting.


And more, you can choose which boards you want to let the ads show.We may carry on these operations in Admin panel.

« Last Edit: Jan 30, 2007, 08:40:49 PM By: sasawawa »

AWeber - Email Marketing Made Easy
Pages: 1 [2] 3 4 ... 6 Reply to Thread


Code4Gold Internet Marketing Forum © 2006-2011 Resdaz Media LLC - All Rights Reserved
Forum Software Powered by SMF - © 2001-2008, Lewis Media. All Rights Reserved.