111
twitaman
Imagemanager Relative or Absolute linking to pics
  • 2004/12/20 15:40

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


I have a question about Imagemanager and the way it connects to images.

Does Imagemanager use absolute or relative links to the images? It seems like it might use absolute links.

For instance:http://www.yoursite.com/upload/images

Instead of: ../../upload/images

I'd rather it use relative links. Is there a way to change that?

Thanks



112
twitaman
Re: [Q - Not solved] Module for Displaying All Members
  • 2004/12/19 16:05

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


You need to see this threadhttps://xoops.org/modules/newbb/viewtopic.php?topic_id=27908&forum=4&post_id=121326#forumpost121326

dheltzel has a module that's at .3 I believe. I haven't implemented it yet but I did test it a little and it's pretty good. I'm just waiting on the ability to show all members avatars on the page -- like a yearbook layout.



113
twitaman
Re: could you help me with koivi editor ?
  • 2004/12/17 21:45

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


Quote:

Just follow koivi docs, you need to change only two lines.


I'm following the instructions in the doc folder but it doesn't seem to be addressing News 1.2.1.

It says:

Quote:

News 1.2.1 Module Integration Example

1º Open file news/include/storyform.inc.php
2º After line 32 (include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";) add:
include_once XOOPS_ROOT_PATH . "/class/wysiwyg/formwysiwygtextarea.php";

3º Remove or comment line 61 ($sform->addElement(new XoopsFormDhtmlTextArea(_NW_THESCOOP, 'hometext', $hometext, 15, 60, 'hometext_hidden'), true);) and add:
$sform->addElement(new XoopsFormWysiwygTextArea( _NW_THESCOOP, 'hometext', $hometext, '100%', '400px',''), true);

4º Remove or comment line 66 ($sform->addElement(new XoopsFormDhtmlTextArea(_AM_EXTEXT, 'bodytext', $bodytext, 15, 60, 'bodytext_hidden'), false);) and add:
$sform->addElement(new XoopsFormWysiwygTextArea( _AM_EXTEXT, 'bodytext', $bodytext, '100%', '400px',''), true);


But those lines aren't in the file.



114
twitaman
Re: could you help me with koivi editor ?
  • 2004/12/17 21:16

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


I'm using News 1.2.1 and I followed Russtik's instructions with the Koivi 1.0.2 but it doesn't seem to work.

The editor doesn't show up in the browser -- both Firefox and IE 6.

Did I overlook something?

Thanks for your time in advance.



Quote:

noisia wrote:
Hi Russtik,

The koivi editor is not a module yet, but a hack. A very great hack, since it runs on open source web browsers

(Another wysiwyg editor is spaw, which only runs on IE. Spaw is a proper module and is integrated in many modules by default)

Most likely koivi will become a proper module in the future and may be integrated with other modules.

For now, it requires a bit of script modifications:
The manual is as follows:
Quote:
1.Copy wysiwyg folder into your XOOPS "class" folder

2.Replace your system_imagemanager.html template with the new one.

3.Follow instructions in docs folder for implement wysiwyg class in modules.


I am a beginner, and it took me a while to get the courage to try it out, but I managed...

1. Copy the "koivieditor class v1.0 FINAL/wysiwyg" folder into your XOOPS "class" folder (which is in the root folder of your XOOPS site)

2. Replace the "xoopsrootfolder/modules/system/templates/system_imagemanager.html" file with the one that is provided with koivi

3. Then I followed the instructions that were given here in this forum thread:

Edit:
modules/news/admin/storyform.inc.php

You must change this code:

echo "</p><p><b>"._AM_INTROTEXT."</b><br /><br />n";
xoopsCodeTarea("hometext"6015);
xoopsSmilies("hometext");

echo 
"<br /></p><p><b>"._AM_EXTEXT."</b><br /><br />n";
xoopsCodeTarea("bodytext"60152);
xoopsSmilies("bodytext");



With this:
echo "</p><p><b>"._AM_INTROTEXT."</b><br /><br />n";
//xoopsCodeTarea("hometext", 60, 15);
//xoopsSmilies("hometext");
include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
include_once 
XOOPS_ROOT_PATH."/class/wysiwyg/formwysiwygtextarea.php";

$wysiwygHomeText= new XoopsFormWysiwygTextArea(''"hometext"$hometext'100%''400px','');
echo 
$wysiwygHomeText->render();


echo 
"<br /></p><p><b>"._AM_EXTEXT."</b><br /><br />n";
//xoopsCodeTarea("bodytext", 60, 15, 2);
//xoopsSmilies("bodytext");
$wysiwygBodyText= new XoopsFormWysiwygTextArea(''"bodytext"$bodytext'100%''400px','');
echo 
$wysiwygBodyText->render();


After the editing the file, you need to go to the modules in the admin and click on "update" of the news module

This worked for me to get the news and the stories module to edit in wysiwyg

Other modules I did not look into yet, but it must be similarly easy



115
twitaman
Re: Koivi and NewBB 2.0
  • 2004/12/17 19:58

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


I have a question about installing version 1.0.2.

In the "read me" file it says to:

"Replace your system_imagemanager.html template with the new one."

I was wondering where the old system_imagemanager.html template exist that is supposed to be replaced?

Thanx



116
twitaman
Re: How do you put stuff on the home page?
  • 2004/12/17 6:37

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


Quote:

fatfreepork wrote:
how would i do that?
sorry im a beginner to xoops.
I reordered the modules with no solution.


I think I asked this exact same question last summer when I first started...wow, has it been that long?

Anyway, make this your FIRST stophttp://www.macambridge.com/dummies/



117
twitaman
Re: Koivi and NewBB 2.0
  • 2004/12/16 23:01

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


Quote:

twitaman wrote:
When I use Koivi in NewBB 2 final I have a problem with the way it displays the tools. Everything seemed to be all clustered together on one side -- I would like to expand the width of the tools to that of the window.

It looks this way in both IE and Firefox

Resized Image


I'm still having this problem with Koivi and NewBB 2 final. I was wondering if anyone could point me toward what files to look at to correct this width problem?

And since no one else seems to have this problem I'm wondering if I might have some sort of conflict with NewBB 2.

Any suggestions or assistance would be greatly appreciated.



118
twitaman
Re: Different Blocks for different RSS feeds
  • 2004/12/15 20:53

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


Go straight to XHLD. It's a EXTREMELY useful module if your main intent is to manage and deliver content.



119
twitaman
AMS Request
  • 2004/12/15 2:31

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


I'm not much for mucking around with code but I don't think the following things I'm about to list are "too difficult" (they're just confusing for a dope like me) but anyway here are my initial suggestions for the new AMS module:

1) The ability to automatically choose "read more" to extend your articles. Both on the page that list the articles and even more importantly in the recent news - spotlight block. This just seems like a basic thing that would be great to have.

2) A duplicate of the module. Many people need more than one instance of content management modules. I know there's an instruction on this site for duplicating a module but the language isn't clear...though I must admit their English is a helluva lot better than my French.

3) Koivi integration. I know that Koivi is supposed to be added to the XOOPS core, so I guess this request is "whoever can do it first."

Anyway, thanks to everyone (who isn't a dope like me) for their hard work. It is much appreciated.



120
twitaman
Re: AMS duplicatable?
  • 2004/12/14 22:30

  • twitaman

  • Friend of XOOPS

  • Posts: 270

  • Since: 2004/7/28


I took a look at the "how to" on cloning modules, but unfortunately, English was obviously the writer's second language so not every thing is quite clear to me.

If anyone has made a clone of the AMS mod, please post it.




TopTop
« 1 ... 9 10 11 (12) 13 14 15 ... 25 »



Login

Who's Online

65 user(s) are online (48 user(s) are browsing Support Forums)


Members: 0


Guests: 65


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits