Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43294
Total Topics: 7523
Most Online Today: 124
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 1
Guests: 102
Total: 103

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Nite

Pages: [1] 2 3
1
General SMF Forum / Re: How do I use cronrss.php with FeedRss??
« on: September 28, 2007, 05:26:45 pm »
Usually, you can use PuTTy to SSH into your account. Then you can execute the command "crontab -e"

Quote
16 * * * * /usr/local/bin/php /home/midessa/public_html/forum/cronrss.php > /dev/null 2>&1
31 * * * * /usr/local/bin/php /home/midessa/public_html/forum/cronrss.php > /dev/null 2>&1
46 * * * * /usr/local/bin/php /home/midessa/public_html/forum/cronrss.php > /dev/null 2>&1
01 * * * * /usr/local/bin/php /home/midessa/public_html/forum/cronrss.php > /dev/null 2>&1


Basically, you define the path to where php is, then define the path to where cronrss.php is located.

Pay special attention to the "Fields" section because it defines the times and dates when crontab.php should run. http://en.wikipedia.org/wiki/Crontab

Google "crontab" for further help.

Of course, I'm hosting with Linux,.. I don't know what you would do if you're hosting with Windows.

2
Latest Mods / Re: question about RSS poster
« on: September 15, 2007, 11:59:13 pm »
How do I change this? Is it in wordpress, or the mod?

If it's wordpress, what do I ask about on THEIR forum?? I dont know that much about rss.

thanks.

I'm interested in this as well... that is, I'm interesting in having the entire wordpress post put into the forum.

3
Latest Mods / Re: [Mod] Tagging System
« on: July 22, 2007, 07:02:15 pm »

4
Latest Mods / Re: [Mod] Tagging System
« on: July 22, 2007, 04:08:24 pm »
My forum is on a sub-domain. (http://xxx.yyy.com)
My landing page is not on the sub-domain. (http://www.yyy.com)

I would like to pull the data contained inside the tags table and put in on the landing page. This would create more dynamic content on the landing page that would interface with what's happening inside the forum.

How would I do this?

I'm already calling SSI.php from the landing page to display the latest forum posts. I suppose I need to do something different to call out the tag information?






5
Support / Re: gallery conflicting with felblog?
« on: July 15, 2007, 10:30:42 am »
Code: [Select]
http://forum.midessa.net/index.php?action=gallery;cat=1
Apply Filter: Only show the errors with the same message
2: Division by zero
File: /home/midessa/public_html/forum/Themes/default/Gallery.template.php
Line: 92

6
Support / gallery conflicting with felblog?
« on: July 14, 2007, 02:53:30 pm »
i attempted to post this on feline's website (http://feline-networks.com/index.php?topic=378.0)

I get this error message when viewing the gallery. Also, pictures will not show up in the sub categories that I created...

Code: [Select]
2: Division by zero
File: /home/midessa/public_html/forum/Themes/default/languages/FelBlog_inc.english.php (main sub template - eval?)
Line: 92

Ideas?

7
Modifications Talk / How to grab keywords for page from tags?
« on: July 09, 2007, 11:06:50 am »
I would like to change the meta keywords to reflect how a topic is tagged.. and if the topic isn't tagged, then use default meta.. Any quick and dirty code for that?

8
Modifications Talk / Re: Are you guys still working up the blog mod?
« on: July 04, 2007, 06:37:33 pm »
Felblog seems like a pretty decent blog module for tinyportal.. have you checked it out?

9
Modifications Talk / Re: SMF Trader System Updated
« on: June 27, 2007, 11:53:25 pm »
Just let us know when this'll work with v1.1.3. I'm sure your scambling to upadate all of your excellent mods..

10
Modifications Talk / Text-link-ads clone ...
« on: June 20, 2007, 06:59:10 pm »
Would someone mind developing and or modifying some existing mod that would allow for anyone to purchase forum links? Would be nice if this were straight .php, like text-link-ads, so that it could be placed inside a Tinyportal block..

11
Modifications Talk / Re: SMF Trader System Updated
« on: June 17, 2007, 10:31:22 pm »
Excellent!

Working now!

12
Modifications Talk / Re: SMF Trader System Updated
« on: June 17, 2007, 10:03:19 pm »
Adding info to db was successful.

But I still get
Quote
Unable to load the 'trader' template.

When attempting to access Trader from profile and from admin menu.

Could there be anything else? Is anyone else having difficulties, or am I the only one?

13
Modifications Talk / Re: SMF Trader System Updated
« on: June 17, 2007, 06:34:05 pm »
Running "smftraderinstall.php" does not put stuff into the database .

Modifications.english.php was updated.
Profile.template.php was updated.
Display.template.php was updated.
index.php was updated.
ManagePermissions.php was updated.
Subs.php was updated.

...

I search for "trader" in phpmyadmin, and cannot find it.

"Trader.template.php" was how it was installed.

14
Modifications Talk / Re: SMF Trader System Updated
« on: June 17, 2007, 01:57:46 pm »
This installed fine for me.

However, when I go to the "Trader Settings" in the admin menu, I get the following error.

Quote
Unable to load the 'trader' template.

The forum error log says the same thing. All the files are where they are supposed to be..

How to do manual edit of db thru phpmyadmin of the file? -- I'll attempt to add the tables manually ...


Code: [Select]
<?php
/*
SMF Trader System: 1.1
http://www.smfhacks.com

smftraderinstall.php - SMF Trader System
Purpose - Installs the database tables for SMF Trader System
*/

db_query("CREATE TABLE IF NOT EXISTS {$db_prefix}feedback 
(feedbackid int(11) NOT NULL auto_increment, 
ID_MEMBER mediumint(8) unsigned NOT NULL default '0', 
comment_short tinytext NOT NULL, 
comment_long text, topicurl tinytext, 
saletype tinyint(4) NOT NULL default '0', 
salevalue tinyint(4) NOT NULL default '0', 
saledate int(11) NOT NULL default '0', 
FeedBackMEMBER_ID mediumint(8) unsigned NOT NULL default '0',
approved tinyint(4) NOT NULL default '1',
PRIMARY KEY  (feedbackid))"
__FILE____LINE__);


$dbresult db_query("SHOW COLUMNS FROM {$db_prefix}feedback"__FILE____LINE__);
$approved =  1;

while (
$row mysql_fetch_row($dbresult))
{
if($row[0] == 'approved')
$approved =0;
}
mysql_free_result($dbresult);

if (
$approved)
db_query("ALTER TABLE {$db_prefix}feedback ADD approved tinyint(4) NOT NULL default '1'"__FILE____LINE__);


// Other Settings
db_query("INSERT IGNORE INTO {$db_prefix}settings
(variable, value)
VALUES('trader_approval', '0')
"
__FILE____LINE__);

?>

15
Modification Showcase / Re: Link Page
« on: June 10, 2007, 07:28:48 pm »
Hmm. That works when I use Alexa I use their API to grab the direct Alexa rank and that does cost a small fee.

Strange.

In my directories, I display the Traffic Rank for the site that one performs a "details" on. All, I did here was do some variable manipulation -- because you can have your own Alexa box on your own site, and it doesn't cost. So I thought, "Hey. I'll just use the same code that someone would use on their own site, but substitute the domain for a variable that changes depending up on the site being detailed."

And it works!

Pages: [1] 2 3

+- Recent Topics

Please Help! by fmofmpls
Today at 01:47:09 pm

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal