biro |
|
---|---|
Do you need old seditio plugins to be ported then ask here
Ported: TPL editior What i can't port: UserGal Leet login(i will make one similar) Be sure to check out<br /><br /><br />
My site-<a href="http://www.iso-center.co.cc">http://www.iso-center.co.cc</a><br /> My plugins;TPL Editior 1.2 & Mobile site |
DemptD |
|
---|---|
# biro : What i can't port: I have LeetLogin running on one of my Cotonti sites and it works. |
HarryRag |
|
---|---|
LeetLogin indeed works good, had no probs at all with it.
[center][url=<a href="">http://www.true-gamers.nl]True</a> & Honest Gamers[/url][/center]
|
biro |
|
---|---|
i dont mean it doesnt work...i mean i will somethin similar
Be sure to check out<br /><br /><br />
My site-<a href="http://www.iso-center.co.cc">http://www.iso-center.co.cc</a><br /> My plugins;TPL Editior 1.2 & Mobile site |
scriptor |
|
---|---|
the mp3 player from URL-Killer because the Playlist.php do nothing. With an normal xml Playlist it works :(
[url=http://www.freak-forum.de]Freak-Forum.de[/url] - The Freakstyle Community<br />
[url=http://www.adelmann-solutions.com]adelmann-solutions, webdesign Freiburg[/url] |
biro |
|
---|---|
more explanation please!
urlkiller said that he will port all of his plugins Be sure to check out<br /><br /><br />
My site-<a href="http://www.iso-center.co.cc">http://www.iso-center.co.cc</a><br /> My plugins;TPL Editior 1.2 & Mobile site |
scriptor |
|
---|---|
The Problem is that the playlist.php will not show any playlist. when i link in the mp3player.php to an xml file it works, but not with the playlist.php that write an playlist for it... URLKiller don´t know the problem yet, i ask him. And he have not so much time at the moment for this.
[url=http://www.freak-forum.de]Freak-Forum.de[/url] - The Freakstyle Community<br />
[url=http://www.adelmann-solutions.com]adelmann-solutions, webdesign Freiburg[/url] |
calibor |
|
---|---|
karma would be a good thing, no one even mentioned it in the search? and it was a well used plugin?
|
DemptD |
|
---|---|
# calibor : karma would be a good thing, no one even mentioned it in the search? and it was a well used plugin? I use it on one of my sites and it works perfectly. Heres my list on plugins i use/tried and worked on Cotonti 0.0.3:
Contactus Open external links in a new window X-tra Pics Forum Basic Stats Gallery Karma LeetLogin My forums Overview T3 PostMan Recent user posts in forums User Mood User's Wall Welcome PM |
musiconly |
|
---|---|
MovieGallery
|
biro |
|
---|---|
cant find it please tell me where
Be sure to check out<br /><br /><br />
My site-<a href="http://www.iso-center.co.cc">http://www.iso-center.co.cc</a><br /> My plugins;TPL Editior 1.2 & Mobile site |
scriptor |
|
---|---|
at the last time it would be found on the t3-design.com site. Today you cant find it there.
I search in my old folders of older systems and found it... Here an Version of the Movie gal. http://www.freak-forum.de/datas/users/1/moviegallery_1.rar this rar is only to Wednesday the 15.03.09 downloadable ;=) [url=http://www.freak-forum.de]Freak-Forum.de[/url] - The Freakstyle Community<br />
[url=http://www.adelmann-solutions.com]adelmann-solutions, webdesign Freiburg[/url] |
|
Отредактировано: scriptor (07.04.2009 03:45, 16 лет назад) |
DemptD |
|
---|---|
Could someone convert this:
http://www.bhsdesign.com/page.php?al=alias2757 BHS: To cotonti plugin? Readme.txt: FOR LDU 701: PLACE THE FILE IN plugins/extended/wrapper/autorun.users TAGS in users.details.tpl: USERSDETAILS_VISITORSCOUNT USERSDETAILS_VISITORS RUN the SQL file ldu_users_visitors.sql user_visitors.php: <?PHP
/* ====================
Land Down Under - Website engine
Copyright (C) 2003 Neocrome
http://ldu.neocrome.net
[BEGIN_LDU]
File=plugins/users/default_plugins.users.php
Version=603
Updated=2004-jan-09
Type=Plugin.Users
Author=Neocrome
Description=
[END_LDU]
==================== */
if ( !defined('LDU_CODE') ) { die("Hacking attempt."); }
$visitors_limit = "LIMIT 10"; //limits the users visitors CHANGE ONLY THE NR!!
$db_users_visitors = 'ldu_users_visitors';
/*==========================================================================*/
if ( $suserid==$id )
{
$sqltmp = ldu_mysql_query("SELECT COUNT(*) FROM $db_users_visitors WHERE usrv_userid='$id' ");
$user_visitorscount = mysql_result($sqltmp,0,"COUNT(*)");
}
else
{
$sqltmp = ldu_mysql_query("SELECT COUNT(*) FROM $db_users_visitors WHERE usrv_userid='$id' ");
$user_visitorscount = mysql_result($sqltmp,0,"COUNT(*)");
if ($suserlevel>0)
{
$sql_vc = ldu_mysql_query("SELECT COUNT(*) FROM $db_users_visitors WHERE usrv_vid='$suserid' AND usrv_userid='$id' ");
$visitor_count = mysql_result($sql_vc,0,"COUNT(*)");
if ( $visitor_count<1 )
{
$sql = ldu_mysql_query("INSERT INTO $db_users_visitors (usrv_userid, usrv_vid, usrv_vname, usrv_seen, usrv_vip) VALUES ('$id', '$suserid','$susername', '$ccdate', '$online_ip')");
}
else
{
$sql = ldu_mysql_query("DELETE FROM $db_users_visitors WHERE usrv_userid='$id'AND usrv_vid='$suserid' ");
$sql = ldu_mysql_query("INSERT INTO $db_users_visitors (usrv_userid, usrv_vid, usrv_vname, usrv_seen, usrv_vip) VALUES ('$id', '$suserid','$susername', '$ccdate', '$online_ip')");
}
}
else
{
$sql = ldu_mysql_query("INSERT INTO $db_users_visitors (usrv_userid, usrv_vid, usrv_vname, usrv_seen, usrv_vip) VALUES ('$id', '0', 'guest', '$ccdate', '$online_ip')");
}
}
$sqltmp = ldu_mysql_query("SELECT * FROM $db_users_visitors WHERE usrv_userid='$id' AND usrv_vid NOT LIKE '0' AND usrv_vid NOT LIKE '$suserid' ORDER BY usrv_id DESC $visitors_limit ");
while ( $usrv = mysql_fetch_array($sqltmp))
{
$usrv_id = $usrv["usrv_id"];
$usrv_vid = ldu_build_user($usrv["usrv_vid"],$usrv["usrv_vname"]);
$usrv_seen = date($ldu_dateformat,$usrv["usrv_seen"]+$stimezone*3600)." ".$stimetext;
$visitor_online = (ldu_userisonline($usrv["usrv_vid"])) ? "1" : "0";
$visitor_on = "<img src=\"skins/$skin/img/online".$visitor_online.".gif\" border=\"0\">";
$user_visitors .= "<table><tr><td style=\"width:75%;vertical-align:bottom;\">".$visitor_on." ".$usrv_vid."</td><td style=\"width:25%;text-align:right;vertical-align:bottom;\">".$usrv_seen."</td></tr></table>";
}
$t->assign(array(
"USERSDETAILS_VISITORSCOUNT" => $user_visitorscount,
"USERSDETAILS_VISITORS" => $user_visitors,
));
?> ldu_users_visitors.sql: # phpMyAdmin SQL Dump
# version 2.5.6
# http://www.phpmyadmin.net
#
# Host: localhost
# Generation Time: Apr 07, 2004 at 01:59 AM
# Server version: 4.0.18
# PHP Version: 4.3.4
#
# Database : `603`
#
# --------------------------------------------------------
#
# Table structure for table `ldu_users_visitors`
#
CREATE TABLE `ldu_users_visitors` (
`usrv_id` int(11) unsigned NOT NULL auto_increment,
`usrv_userid` varchar(15) NOT NULL default '',
`usrv_vid` varchar(15) NOT NULL default '',
`usrv_vname` varchar(24) NOT NULL default '',
`usrv_seen` int(11) NOT NULL default '0',
`usrv_vip` varchar(15) NOT NULL default '',
PRIMARY KEY (`usrv_id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
#
# Dumping data for table `ldu_users_visitors`
#
|
biro |
|
---|---|
Be sure to check out<br /><br /><br />
My site-<a href="http://www.iso-center.co.cc">http://www.iso-center.co.cc</a><br /> My plugins;TPL Editior 1.2 & Mobile site |
|
Отредактировано: biro (13.04.2009 03:57, 16 лет назад) |
DemptD |
|
---|---|
# biro : ok.... Ohh didnt see this, works great, thanks! :) ////////////////////////////////////////////////////////////////////////////////////////// Could someone fix this: http://neocrome.net/page.php?id=1966 "Whats new" plugin on a page. I get a SQL error: Fatal error : SQL error : Unknown column 't.ft_lastposterid' in 'on clause' |
|
Отредактировано: DemptD (20.04.2009 00:08, 16 лет назад) |