| Topic Archived |
View previous topic :: View next topic |
| Author |
Message |
mortal.seraphim Nice poster


Offline Joined: Dec 03, 2004 Posts: 87 Location: Plano TX
|
Posted: Thu Feb 10, 2005 5:12 am Post subject: Web Links |
|
I upgraded from 8.2b to Dragonfly and everything went perfectly. I didn't have any problems at all.
I downloaded the Web Links module from Dragonfly downloads and it installed without error.
When clicking on the control links at the top of the Web Links module, none of them work
[ Add Link | New | Popular | Top Rated | Random ]
When clicking on these links it just reloads the Web Links index page over and over again. Is there something I need to change to get this to work?
I searched the forum and found this post but it doesn't really help me.
Anyone have any suggestions?
_________________ Mortal Seraphim
People complain too much.

mortal.seraphim's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) FreeBSD 4.10-RELEASE-p5/1.3.33/4.0.18/4.3.10/9.0
|
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Thu Feb 10, 2005 8:51 am Post subject: Re: Web Links |
|
Hiya mortal.seraphim,
I don't have DF installed yet due to peoples reports of problems with links (they may be fixed from the last time I checked though).
I noticed your link is pointing to
| Code:: |
http://www.mortal-seraphim.com/Web_Links/l_op=NewLinks.html |
and This site points to
| Code:: |
http://www.cpgnuke.com/Web_Links/l_op=newlinks.html |
Looks to me like it's because your url has caps in it, this link works fine
| Code:: |
http://www.mortal-seraphim.com/Web_Links/l_op=newlinks.html |
Like I sad I haven't installed it yet but your URL's are case sensitive and this is why the page isn't displaying. You somehow need to get rid of the capitals.
Hope this helps you more than confuses you.
Good Luck
Kindest Regards
Steve
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
FishySteve Gold Supporter


Offline Joined: Apr 21, 2004 Posts: 158 Location: Australia
|
Posted: Thu Feb 10, 2005 8:55 am Post subject: Re: Web Links |
|
P.S.
I Love your theme!
FishySteve's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux(Unix) - Apache/1.3.34 - MySQL Client API version 4.1.21 - PHP Version 4.4.2 - Perl Version 5.8 - DF 9.0.6.1
|
|
| Back to top |
|
 |
chris333 Nice poster


Offline Joined: Jun 06, 2004 Posts: 52 Location: Luxembourg
|
Posted: Thu Feb 10, 2005 10:58 am Post subject: Re: Web Links |
|
the weblinks module is still in production but they will provide a bugfixed version soon...
_________________ www.nukecommunity.com
chris333's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) DebianGNU/1.3.31/4.0.18/4.3.4/8.3 CVS
|
|
| Back to top |
|
 |
mortal.seraphim Nice poster


Offline Joined: Dec 03, 2004 Posts: 87 Location: Plano TX
|
Posted: Thu Feb 10, 2005 2:45 pm Post subject: Re: Web Links |
|
Thank you for your help. I wouldn't have noticed the case sensitive issue on my own, I figured it was a problem with the code.
I'll have a look at it today and see if I can resolve the problem on my own.
Thanks for the props on the theme, it's the HardWired theme that only needed a minor bug fix.
I'm also working on porting my PH2-Blue theme to Dragonfly as well. It should be ready in a few days.
_________________ Mortal Seraphim
People complain too much.

mortal.seraphim's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) FreeBSD 4.10-RELEASE-p5/1.3.33/4.0.18/4.3.10/9.0
|
|
| Back to top |
|
 |
mortal.seraphim Nice poster


Offline Joined: Dec 03, 2004 Posts: 87 Location: Plano TX
|
Posted: Thu Feb 10, 2005 2:56 pm Post subject: Re: Web Links |
|
Ok that fix was actually a LOT easier than I thought it would be.
I modified the index.php file in the /modules/Web_Links folder so the links were all lower case and even rigged the Random link to open the links in a new window instead of the parent window.
Everything works perfectly now.
| Code:: |
function menu($mainlink) {
global $module_name, $CPG_SESS;
OpenTable();
$ThemeSel = $CPG_SESS['theme'];
if (file_exists("themes/$ThemeSel/images/link-logo.gif")) {
echo "<br /><center><a href=\"".getlink()."\"><img src=\"themes/$ThemeSel/images/link-logo.gif\" border=\"0\" alt=\"\" /></a><br /><br />";
} else {
echo '<p align="center"><a href="'.getlink().'"><img src="modules/'.$module_name.'/images/link-logo.png" width="275" height="75" border="0" alt="'._WEBLINKS.'" /></a></p>';
}
echo "<div align=\"center\"><form action=\"".getlink("&l_op=search")."\" method=\"post\" enctype=\"multipart/form-data\" accept-charset=\"utf-8\">"
."<input type=\"text\" size=\"25\" maxlength=\"255\" name=\"query\" />"
."<input type=\"submit\" value=\""._SEARCH."\" /></font>"
."</form></div>";
echo "<p align=\"center\" class=\"content\">[ ";
if ($mainlink>0) {
echo "<a href=\"".getlink()."\">"._LINKSMAIN."</a> | ";
}
echo "<a href=\"".getlink("&l_op=addlink")."\">"._ADDLINK."</a>"
." | <a href=\"".getlink("&l_op=newlinks")."\">"._NEW."</a>"
." | <a href=\"".getlink("&l_op=mostpopular")."\">"._POPULAR."</a>"
." | <a href=\"".getlink("&l_op=toprated")."\">"._TOPRATED."</a>"
." | <a href=\"".getlink("&l_op=randomlink")."\" target=\"_blank\">"._RANDOM."</a> ]"
."</span></p>";
CloseTable();
}
|
_________________ Mortal Seraphim
People complain too much.

mortal.seraphim's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) FreeBSD 4.10-RELEASE-p5/1.3.33/4.0.18/4.3.10/9.0
|
|
| Back to top |
|
 |
DJ Maze Developer


Offline Joined: Apr 19, 2004 Posts: 5683 Location: http://tinyurl.com/5z8dmv
|
Posted: Thu Feb 10, 2005 4:13 pm Post subject: Re: Web Links |
|
DJ Maze's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Fedora 15 / 2.2.22 / 5.5.20 / 5.3.10 / CVS
|
|
| Back to top |
|
 |
jzky Supporter


Offline Joined: Jun 25, 2004 Posts: 220 Location: Norway - Harstad
|
|
| Back to top |
|
 |
DaeLex Supporter


Offline Joined: Jan 24, 2005 Posts: 44
|
Posted: Fri Feb 11, 2005 2:25 am Post subject: Re: Web Links |
|
Im running dragonfly final and I just upgraded my weblinks and this module is worse then the one before. Its all jacked up, I try to add a link and this is what I get:
CMS Error /home/NAME/public_html/modules/Web_Links/index.php line 233: www.disneymovieclub.com does not exist
[ Home ] [ Go Back ]
includes/functions/linking.php
* CMS Warning line 153:
Any suggestions?
DaeLex's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / Apache 1.3.33 (Unix) / MySQL 4.0.22-standard /PHP 4.3.11 / Dragonfly 9.0.5.0
|
|
| Back to top |
|
 |
mortal.seraphim Nice poster


Offline Joined: Dec 03, 2004 Posts: 87 Location: Plano TX
|
Posted: Fri Feb 11, 2005 3:02 am Post subject: Re: Web Links |
|
Hmm, don't know what to tell you man.
The only thing that was changed was the capitilization of the links and I added target="_blank" to the "Random" link so the pages would load in a new window. Other than that I don't think any of the code was changed at all.
I know it doesn't really help you much but it works perfectly for me, I added several links just a few hours ago without any problems.
_________________ Mortal Seraphim
People complain too much.

mortal.seraphim's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) FreeBSD 4.10-RELEASE-p5/1.3.33/4.0.18/4.3.10/9.0
|
|
| Back to top |
|
 |
xfsunoles XHTML Specialist


Offline Joined: Apr 30, 2004 Posts: 2502 Location: Melbourne, Florida
|
Posted: Fri Feb 11, 2005 3:24 am Post subject: Re: Web Links |
|
does it need h t t p : / /
_________________

Firefox is my Favorite Browser
xfsunoles's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Apache/1.3.34 (Unix)/4.0.25-standard/4.4.1/CVS
|
|
| Back to top |
|
 |
Ronin Dragonfly addicted


Offline Joined: Jun 07, 2004 Posts: 475 Location: Calgary, AB
|
Posted: Fri Feb 11, 2005 4:01 am Post subject: Re: Web Links |
|
| xfsunoles wrote: |
| does it need h t t p : / / |
Nope. I'm seeing the same thing.
| Quote:: |
| CMS Error /var/www/html/modules/Web_Links/index.php line 233: www.slashdot.org does not exist |
| Quote:: |
| CMS Error /var/www/html/modules/Web_Links/index.php line 233: slashdot.org does not exist |
Cheers,
Ronin
Ronin's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Lunarpages Linux / 1.3.37 / 4.1.22-standard-log / 4.4.4 / 9.1.2.5
|
|
| Back to top |
|
 |
Dantarion Nice poster


Offline Joined: Feb 03, 2005 Posts: 101 Location: danville VA
|
|
| Back to top |
|
 |
Ronin Dragonfly addicted


Offline Joined: Jun 07, 2004 Posts: 475 Location: Calgary, AB
|
Posted: Fri Feb 11, 2005 4:27 pm Post subject: Re: Web Links |
|
I'm not seeing where to adjust that option. I've looked under Web Links and General Preferences.... Could you point me to it?
Should the option be moved under Web Links admin or is it used all over the place? If its all over the place then I'd suggest it be moved to the general prefs admin section. Assuming I'm not looking right at it :).
EDIT: I'm running the latest CVS as of 10th Feb, 8pm Mountain Time.
_________________ Cheers,
Ronin
Ronin Technologies
Dragonfly Google Maps Module
Ronin's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Lunarpages Linux / 1.3.37 / 4.1.22-standard-log / 4.4.4 / 9.1.2.5
Last edited by Ronin on Fri Feb 11, 2005 7:58 pm; edited 1 time in total |
|
| Back to top |
|
 |
mortal.seraphim Nice poster


Offline Joined: Dec 03, 2004 Posts: 87 Location: Plano TX
|
Posted: Fri Feb 11, 2005 5:45 pm Post subject: Re: Web Links |
|
Ok, sorry to bump the thread but this is somewhat related.
I just noticed that I can only add links through the admin panel.
When trying to submit a link as a regular user nothing happens.
The submit link form (Web_Links/l_op=addlink.html) appears and you can fill it out, but when clicking the submit button it just goes to Web_Links/l_op=Add.html but the main web links page appears with the categories and the submission just dissapears.
Anyone else having the same problem or maybe provide a solution?
_________________ Mortal Seraphim
People complain too much.

mortal.seraphim's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) FreeBSD 4.10-RELEASE-p5/1.3.33/4.0.18/4.3.10/9.0
Last edited by mortal.seraphim on Fri Feb 11, 2005 5:50 pm; edited 1 time in total |
|
| Back to top |
|
 |
|
|