264201
cmsguy
Re: Which Content Tool?
  • 2004/4/5 22:04

  • cmsguy

  • Just popping in

  • Posts: 31

  • Since: 2004/3/3 2


Where can I download Freecontent?

I create menues as custom blocks WITHOUT Multimenu. Can I use Freecontent to create content and manually add the link to that content to my custom block menu item?

Thanks so much.

Don



264202
kaotik
Re: Oscommerce doesn't show images on administration
  • 2004/4/5 22:04

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


Thanks for the tip. By right clicking i can see that the url for the images are incorrect. It's missing a directory (my XOOPS instalation isn't in root). Which file should I change to correct this?

Thanks

Lenny



264203
Mithrandir
Re: getConfValueForOutput() and conf_valuetype

xoops_config table holds the config items on your site - so theoretically, you could have an entire site without int as conf_valuetype, but that doesn't mean that it is wrong to have it

However, in this case I think you have found something



264204
simonvl
Re: Registering format
  • 2004/4/5 21:42

  • simonvl

  • Just popping in

  • Posts: 44

  • Since: 2004/1/28


There is also a list of available xoopsform classes at in this article from the french XOOPS site. I found it quite useful for adapting a module..
Simon



264205
niktarin
Re: wrong enconding in contact message
  • 2004/4/5 21:19

  • niktarin

  • Just popping in

  • Posts: 28

  • Since: 2003/9/21


Looking a bit more into it.
I came to the conclusion that XOOPS does not pass on the charset wright to phpmailer
2 files seem to be responsable for this
1. xoopsmultimailer.php

There seems to be a line in the end that has to do with charset:
$formatted = sprintf('%s <%s>', '=?'.$this->CharSet.'?B?'.base64_encode($addr[1]).'?=', $addr[0]);

and
2. class.phpmailer.php

var $CharSet


so witch one is it :) ?

Nick



264206
tom23mg
SquirrelMail: it will not run... please help :-(
  • 2004/4/5 21:15

  • tom23mg

  • Just popping in

  • Posts: 2

  • Since: 2004/4/4 1


Dear all,

I use XOOPS 2.05 and I want to use "SquirrelMail 1.4.1".
After I have downloaded it, and configured the config.php...
I allways get this info after if try to LOG-IN with my POP3-Mail Account Datas...

"Warning: Unknown(): A session is active. You cannot change the session module's ini settings at this time. in Unknown on line 0"

I cannot find any information about it... Iam starting to cry...buaa...

Can you help me?

Thanks a lot in front of your help



264207
amok200
Problem with search results
  • 2004/4/5 21:11

  • amok200

  • Just popping in

  • Posts: 68

  • Since: 2004/2/23


Hi Xooper Troopers !

I have a a rather strange problem with a XOOPS 2.0.6 site. When I search for a term and the search results are returned, the following happens:

Lets say there are 20 results. I click 'Show all results' and get a list of results 1-20. So far so good. However I also get a link saying 'Next' at the bottom. This takes me to results 21-40 which are identical to 1-20. Then there is another 'Next' link as well as a 'Previous' link. Pressing Next again goes to 41-60, and so on ad infinitum.

If there are 8 search results, then pressing 'Next' gives the same 8 again, this time numbered 21-28. Also, if there are more than 20 results, I get only 20, and then pressing 'Next' repeats the same 20.

How can I fix this rather annoying glitch ?

Thanks folks,

amok



264208
pdaddict
Re: Collapsible Category view
  • 2004/4/5 21:10

  • pdaddict

  • Friend of XOOPS

  • Posts: 106

  • Since: 2003/4/6 1





264209
OldSwede
Re: Is there is a way I can hide the web site URL?
  • 2004/4/5 21:05

  • OldSwede

  • Just popping in

  • Posts: 26

  • Since: 2003/8/15


one more way is, call from your index.html or index.php from root this page (main.html):
<html>
<
head>
<
title>your title</title>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<
script type="text/javascript">



//Input the IDs of the IFRAMES you wish to dynamically resize to match its content height:
//Separate each ID with a comma. Examples: ["myframe1", "myframe2"] or ["myframe"] or [] for none:
var iframeids=["myframe"]

//Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
var iframehide="yes"

function dyniframesize() {
var 
dyniframe=new Array()
for (
i=0i<iframeids.lengthi++){
if (
document.getElementById){ //begin resizing iframe procedure
dyniframe[dyniframe.length] = document.getElementById(iframeids[i]);
if (
dyniframe[i] && !window.opera){
dyniframe[i].style.display="block"
if (dyniframe[i].contentDocument && dyniframe[i].contentDocument.body.offsetHeight//ns6 syntax
dyniframe[i].height dyniframe[i].contentDocument.body.offsetHeight;
else if (
dyniframe[i].Document && dyniframe[i].Document.body.scrollHeight//ie5+ syntax
dyniframe[i].height dyniframe[i].Document.body.scrollHeight;
}
}
//reveal iframe for lower end browsers? (see var above):
if ((document.all || document.getElementById) && iframehide=="no"){
var 
tempobj=document.alldocument.all[iframeids[i]] : document.getElementById(iframeids[i])
tempobj.style.display="block"
}
}
}

if (
window.addEventListener)
window.addEventListener("load"dyniframesizefalse)
else if (
window.attachEvent)
window.attachEvent("onload"dyniframesize)
else
window.onload=dyniframesize

</script>
</
head>
<
style>BODY {scrollbar-3dlight-color:#8BAECF;
scrollbar-arrow-color:#fc9b00;
scrollbar-darkshadow-color:#2E5275;
scrollbar-face-color:#26425C;
scrollbar-highlight-color:#2E5275;
scrollbar-shadow-color:#2E5275;
scrollbar-track-color:#000000;}
</style
<
body bgcolor="#336799">
<
iframe id="myframe" src="xoopsroot/index.php" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none">
</
iframe>


</
body>
</
html>


the colors are adj. for theme-3d-blue

you also can include a java-script to hide the browser
status-bar.

try it on:
http://oldswe.de/main.html
and
http://oldswe.de/php/




264210
m0nty
Re: STRANGE BUGS in MYALBUM Module
  • 2004/4/5 20:30

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


have u checked in admin settings and enabled user uploads?

the GD path is usually ok to leave as default.

the netpbm and imagemagik are only available if installed by the host company.. you could ask them if they are and ask them to give you the paths to them..

they shud also be able to tell you the path aswell for GD which should be installed as default on most hosted servers.. if any of those aren't installed then you will not be able to use any gallery module..







Login

Who's Online

236 user(s) are online (166 user(s) are browsing Support Forums)


Members: 0


Guests: 236


more...

Donat-O-Meter

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

Latest GitHub Commits