php forum
php mysql forum
php mysql smarty
 
Page 20 of 21 < 1 2 ... 18 19 20 21 >
Topic Options
#248080 - 08/03/05 12:39 PM Re: TLD Bv2 Released - Threads Links Directory [Re: landyphil]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
thanks for the bug report, I'll update this this coming weekend with the fixes and look at the language issue too.
_________________________
- Allen wavey
- What Drives You?

Top
#248081 - 08/06/05 12:23 PM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
Fixed the alt text buglet there and in one other place - zip updated. I don't have an answer for the languages issue yet.
_________________________
- Allen wavey
- What Drives You?

Top
#248082 - 08/10/05 04:44 PM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Medar Offline
Junior Member

Registered: 03/19/00
Posts: 571
OK Gents - quick question.<br /><br />I have never used TLD...and basically all I need is an online script that will handle my bookmarks. I get tired of using multiple PCs and managing the bookmarks on each, so I am going to start using my personal site to do so. Easy enough to lock away if I need.<br /><br />My question is this - should I install this mod on my family's threads site and use it for my personal use, or is this a bit 'robust' for one user? I am sure there are a bunch of random non-integrated bookmark scripts out there, but figured I would start here.

Top
#248083 - 08/10/05 04:56 PM Re: TLD Bv2 Released - Threads Links Directory [Re: Intel -*RW*-]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
this one is pretty simple to setup, bookmarks would probably be a good use for it <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />
_________________________
- Allen wavey
- What Drives You?

Top
#248084 - 08/12/05 11:34 AM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
I just added this one to my site (after manually creating the tables). I can't get it to work -every time I submit a link I get: <br /> <br />You have not filled out the form completely. Please hit your back button and try again. <br /> <br />After digging through the scripts that erro is triggered in the links_submit_links.php file by the following code: <br /> <br />
Code:
 // Check to see if the form was filled out completely <br /> <br />	if (!filled_out($HTTP_POST_VARS)) { <br />		print "&lt;center&gt;&lt;b&gt;{$ubbt_lang['LINKS_SUBMIT_FILLED_OUT']}&lt;/b&gt;&lt;/center&gt;"; <br />		$html -&gt; send_footer(); <br />		exit; <br />	} 
<br /> <br />It looks like the function that checks to see if all of the $HTTP_POST_VARS are avaialble is failing. Any ideas?


Edited by Dalantech (08/12/05 11:51 AM)
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#248085 - 08/12/05 01:56 PM Re: TLD Bv2 Released - Threads Links Directory [Re: jacksonm99]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
good question, it could be that we should be using the same sub threads uses for form submissions
_________________________
- Allen wavey
- What Drives You?

Top
#248086 - 08/12/05 03:19 PM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
Allen please post the scripts that Threads Dev is using for this hack so I can use Beyond Compare to see what the differences are between the scripts that work here, and the ones in the mod.
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#248087 - 08/12/05 03:49 PM Re: TLD Bv2 Released - Threads Links Directory [Re: jacksonm99]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
we're using the same scripts you find in the first post in this topic. I updated them here when I updated the zips.
_________________________
- Allen wavey
- What Drives You?

Top
#248088 - 08/13/05 12:30 AM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
<img src="http://www.ubbdev.com/forum/images/graemlins/doah.gif" alt="" />
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#248089 - 08/13/05 05:20 AM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
The check to see if all of the form data is filled in fails on my site: as written it's always evaluates to false.<br /><br />
Code:
 function filled_out($form_vars)<br />	{<br />	// lets make sure that each variable has a value<br />	foreach ($form_vars as $key =&gt; $value)<br />		{<br />		if (!isset($key) || ($value == ""))<br />			return false;<br />		}<br />		return true;<br />	} 
<br /><br />I can re-write the function to get it to return true, but then I can't get it to fail when a form isn't filled in...
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#248090 - 08/13/05 01:16 PM Re: TLD Bv2 Released - Threads Links Directory [Re: SurfMinister]
Dalantech Offline
Junior Member

Registered: 02/11/01
Posts: 2392
Loc: Naples, Italy
I finally figured out how to fix it -it's not pretty but it works. Since there are only 4 variables that are user selectable I decided to only check for those 4:<br /><br />
Code:
 foreach ($HTTP_POST_VARS as $key =&gt; $value);<br /><br />// Check to see if the form was filled out completely<br />if ( (!isset($cat_id) || ($cat_id == "")) || (!isset($url) || ($url == "")) || (!isset($title) || ($title == "")) || (!isset($description) || ($description == "")) ) {<br />		print "&lt;center&gt;&lt;b&gt;{$ubbt_lang['LINKS_SUBMIT_FILLED_OUT']}&lt;/b&gt;&lt;/center&gt;";<br />		$html -&gt; send_footer();<br />		exit;<br />	} else { 
<br /><br />After the else the rest of the script to check the url and enter the data in the database executes.
_________________________
Da LAN Tech

Threads Dev Moderator

Top
#248091 - 08/13/05 04:12 PM Re: TLD Bv2 Released - Threads Links Directory [Re: jacksonm99]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
thanks, that's a new bug not reported before. You must be running a slightly different server setup - is it windows IIS or something?
_________________________
- Allen wavey
- What Drives You?

Top
#248092 - 12/26/05 03:33 AM TLD Bv2.1 - Threads Links Directory [Re: ]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
Original post updated with zip to work with 6.5.2 plus some small bugfixes <img src="/forum/images/graemlins/smile.gif" alt="" />
_________________________
- Allen wavey
- What Drives You?

Top
#310844 - 07/25/06 03:57 PM Re: TLD Bv2 Problem after serverupdate [Re: AllenAyres]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 806
Loc: Berlin, Germany
my provider changed the webserver a little bit and my TLD2 stop working correct in some functions. It doesnt show any error.

I can enter the main page of TLD. All looks nice and correct. If I click on a category it goes to it but show only every time the same link only (only one and every time the same). It doesn't show me the correct content of the category.

I can click on what I like, I get every time the same result showing me the one and only link and the categorys. The DB contains 138 Links.

Click I 'Most Popular' I see some of my links. If I try to follow a link the redirector show me an empty page (in firefox). In IE it take me back to my board main index.

I try do delete one of the Most Popular links, got the correct message that this link is deleted but after I revisit Most Popular it is still intact and I have 138 links.

If I try to edit a category or link I get the error that not all is filled out correctly.

I can remeber that this problem have to do with global variables or something like this. Anyone who know this effect and have a solution? I like TLD and have to bring it to work again. I need some help.
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#310851 - 07/25/06 11:03 PM Re: TLD Bv2 Problem after serverupdate [Re: Zarzal]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
hmm.. got a link? And did the hosts say what they changed?
_________________________
- Allen wavey
- What Drives You?

Top
#310852 - 07/26/06 02:07 AM Re: TLD Bv2 Problem after serverupdate [Re: AllenAyres]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 806
Loc: Berlin, Germany
The host changes everything smile he replace the servermachine include the server software. From Zeus to Lightspeed.

You can take a look on my board on http://www.dragonclan-forum.de/ubbthreads/links.php

But you have to register to access this page.
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#310861 - 07/26/06 09:17 AM Re: TLD Bv2 Problem after serverupdate [Re: Zarzal]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
Strange, have you tried visiting the links admin page and submitting anything?
_________________________
- Allen wavey
- What Drives You?

Top
#310872 - 07/26/06 02:40 PM Re: TLD Bv2 Problem after serverupdate [Re: AllenAyres]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 806
Loc: Berlin, Germany
If I try to submit a link I get: http:// is not a valid url or is temporarily unavailable. Please check the url by clicking on the link and try again.

Seems be related to the post/get bug from Dalantech and maybe Threads 6.5.5 .... I changed the threads version von 6.5.4 to 6.5.5 some days bevore the server changes and not test the TLD *shame*.

/edit: I try to apply the fix for links_submit_link.php from dalantech above, but I ancounter some problems ... still working and cant find out to put it in the right place.


Edited by Zarzal (07/26/06 02:56 PM)
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#310876 - 07/26/06 03:21 PM Re: TLD Bv2 Problem after serverupdate [Re: Zarzal]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 806
Loc: Berlin, Germany
Update: I m on the way. I compare V1.5 to V2.0 and bring some old sript parts to V2. It begins to work but I guess its realy unsafe to XSS. The Links Categories shows now correect, but there is alot more work to do.

/edit: I include in most cases some code like this (example redirector):
Php Code:
 $lid = get_input("lid","get");
	$url = get_input("url","get");
 


Index works, showlinks work, redirector work. I work on the rest


Edited by Zarzal (07/26/06 03:34 PM)
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#310881 - 07/26/06 05:14 PM Re: TLD Bv2 Problem after serverupdate [Re: Zarzal]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25452
Loc: Texas
good deal smile
_________________________
- Allen wavey
- What Drives You?

Top
Page 20 of 21 < 1 2 ... 18 19 20 21 >


Who's Online
0 registered (), 25 Guests and 14 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Wisdom needed
by Gizmo
56 minutes 29 seconds ago
How to hide sub forums from summary page
by blaaskaak
Yesterday at 09:54 AM
Spell Check [beta]
by Bill B
12/01/08 09:16 PM
PhotoPost BB Code Popup
by AllenAyres
12/01/08 09:41 AM
Problems reading a lot of old posts here
by AllenAyres
12/01/08 09:35 AM
Forum 'Trader Ratings'.
by AllenAyres
12/01/08 09:33 AM
Customization needed
by Gizmo
11/12/08 12:28 PM
New Mods
User Authentication Class
by
01/19/07 02:59 PM
Multiple Identity Detector
by
12/30/06 06:39 PM
PhotoPost BB Code Popup
by
11/06/06 05:43 PM
Spell Check [beta]
by
10/17/06 09:24 PM
Newest Members
Truth, David DelMonte, nick1, Begbie, cenk
13364 Registered Users
Top Posters
AllenAyres 25452
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks