264171
rakesh
Re: cant c login part of index.php page after installation
  • 2004/4/6 1:10

  • rakesh

  • Just popping in

  • Posts: 5

  • Since: 2004/4/5 1


daigoro,

no this does not work, the restirction on my host is not abt root directory, its abt refering to parent directory, in fact....

http://my-site/first/second/third/temp.php

script can not refere to....

http://my-site/first/this.php

or....

http://my-site/first/second/this.php

even using relative path i.e.

../../this.php and ../this.php dont work

so one thing that is for sure is that i can not refere to files resideing in parnet derictory, and that is what i m informed by my host. ya if u have some way to override this basedir restiction, of that will help me

thx for ur reply, waiting for another reply.

rakesh



264172
Mikhail
Re: Collapsible Category view
  • 2004/4/6 1:07

  • Mikhail

  • Just can't stay away

  • Posts: 412

  • Since: 2003/1/19


Quote:

mauricio wrote:
I can me candidatar the translator for Brazilian Portuguese?


portuguese translation:
http://prdownloads.sourceforge.net/xoopsbrasil/xoops2-mod-newbb-beta-20040329.zip?download



264173
m0nty
Re: Who does XOOPS belong to?
  • 2004/4/6 1:03

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


like anything else.. it belongs to the Author / copyright holder.

the GNU licenses etc, allow the software to be distributed and copied freely.. providing the source code is provided and all copyright notices are left intact..

you are free to modify the software and distribute your modifications.. but you must provide the original source with the distribution if it carries the same name..

ie you can't modify the script and distribute the modified version and call it XOOPS 2.0.6 or whatever.. but you can if you provide the info to modify the original version (i maybe slightly wrong here) but any modifications/improvements should be made freely available to the public aswell..



264174
worlds
Re: Reloading templates fails. Sometimes...
  • 2004/4/6 0:55

  • worlds

  • Just popping in

  • Posts: 61

  • Since: 2004/3/13


Well, that did seem to make the reloading problem go away.

I wonder why?

Tom



264175
worlds
Re: Sorting lists in the admin web interface
  • 2004/4/6 0:53

  • worlds

  • Just popping in

  • Posts: 61

  • Since: 2004/3/13


And, just to reply to my own post, I'll observe that sorting has more value if blocks are named consistently.

All of the bookstore blocks have names that start with "bookstore:", so I don't have to hunt for them.

I'd encourage other module developers to do the same.

Tom



264176
saskmtl
Re: webmasters group
  • 2004/4/6 0:52

  • saskmtl

  • Just popping in

  • Posts: 2

  • Since: 2004/4/5 2


I did try searching, but didn't come up with the thread you gave.

I found many threads on not being able to delete a user if they were part of the webmasters group, but nothing dealing with this issue.

Thank you VERY MUCH!!



264177
m0nty
Re: Is there a Commerical Version of XOOPS
  • 2004/4/6 0:50

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


No there is no commercial version of xoops.

but if you scout round there are plenty of sites that use XOOPS and also will distribute & setup for a charge.

obviously they are not charging for the software itself, they just charge for the services of installing and maintaining if needed.. also if you want a dedicated theme for your site that isn't available then people will create these themes for you if you know what you want, again some charge for this.. they don't charge huge amounts just enough really to cover their time..

i could install it for you no problem and configure it so that you have a working system, but i wouldn't have the time to keep maintaining it on a regular basis. teaching you the basics wouldn't be that difficult either..

if you want it setup with a few modules etc then let me know and i'll arrange it with you.

my addy is vaughan@clubithard.co.uk



264178
worlds
Re: Sorting lists in the admin web interface
  • 2004/4/6 0:49

  • worlds

  • Just popping in

  • Posts: 61

  • Since: 2004/3/13


Why toggle? The current order appears random. Does it have some value that should be preserved?

If not, simpler to not add a UI item to toggle on/off.

I really think that all of XOOPS need to sort lists. Randomly hunting for things in the UI is not an efficient use of time.

Tom



264179
worlds
Bookstore Comments
  • 2004/4/6 0:46

  • worlds

  • Just popping in

  • Posts: 61

  • Since: 2004/3/13


Sounds like a problem for me, too. I was looking at adding comments to the bookstore module, but the bookstore is keyed off of the amazon id, which is a large alphanumeric field (e.g. B0000AXE8I).

I could make a dummy "id for comments" field, but that wouldn't work as well, for a number of reasons.

Any suggestions?

Tom



264180
dantom
form->insertBreak() doesn't work? Where do i wrong?
  • 2004/4/6 0:40

  • dantom

  • Friend of XOOPS

  • Posts: 20

  • Since: 2003/6/21


Hello! I am am (hope! ) e xoops-programmers. What's mean?
That i love to built my xoops's page using an xoops' object
It is very natrally for me. But there is a little problem that i don't understand
when i am using a xoopsForm Object. I explain:

I want insert a row in xoops-form between two element and I have a problem with a
insertBreak(); method in XoopsThemeForm.php class

Here is the brief code for example:

============================================================
include XOOPS_ROOT_PATH."/class/xoopsformloader.php";

$form = new XoopsThemeForm('Aggiungi Xoopsit User', 'addUser', 'adduser.php', 'POST');

//add a textbox for insert username ->OK!
$form->addElement(new XoopsFormText('Nick:', 'user'));

//I try to insert a html row (there are three mode i think...if i understand ):
____________________________________

$form->insertBreak(); // just an empty row doesn't work
$form->insertBreak('<b>Some html or text</b>'); //doesn't work or or like this...
$form->insertBreak('<b>Some Some html or text','someCSSclass'); // doesn't work

am i e very dummy xoopser Where is the wrong?
______________________________________

//buttom for submit and reset ->OK!
$submit = new XoopsFormButton('', 'submit','Invia');
$reset = new XoopsFormButton('', 'reset','Reset', 'reset');
$button_tray = new XoopsFormElementTray("", "&nbsp;");
$button_tray->addElement($submit);
$button_tray->addElement($reset);
$form->addElement($button_tray);

//display form...->OK!
$form->display();
======================================================================================

I can see a text for username and the submit and reset button BUT...

insertBreak is dead...:-|

Do you know where i wrong?

thank you

dan_mtv







Login

Who's Online

212 user(s) are online (140 user(s) are browsing Support Forums)


Members: 0


Guests: 212


more...

Donat-O-Meter

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

Latest GitHub Commits