71
Shine
Re: initial page has no content, little control
  • 2008/1/1 8:58

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Both modules are old. Myhome is (if I remember well) a simple module from Solo.

I advice you to install Wfchannel, Edito or smartsection and then start exploring xoops.
Like script fu said: start small and simple, that is the best way to learn and find your way within xoops.

Second: start reading/make use of the FAQ, you will find lot of answers for your question(s).

Lot of settings are done within the admin site of the website. Blocks, groupsettings, installing a module .....etc



72
Shine
Re: Beginners Unfriendly
  • 2007/12/31 13:30

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Quote:
1) Have an automated module installer/updater as soon as possible. This should be your number one priority.

2) Have some central means of enforcing quality standards on the included/offered modules. At the moment it is just too easy to come across broken ones, which shatters the confidence of new users.

Since XOOPS decided some versions ago to delete the official included modules, you can conclude XOOPS doesn't have any official modules anymore.
So as to question 1...... no official modules, no automated module installer/updater.
As for question 2: actualy this is related to question 1. Because modules are scripts made by some great ppl, but ppl come and go, lot of modules aren't updated anymore. The xoops.org depository is a disaster (see the lot of topic about this) but still,...nothing has been done.
However you can take a look at xoopsaddons.com

As for the rest you are absolutely right, which is a pitty considering Xoops. The CMSystem as provided is absolutely none newbie friendly.



73
Shine
Re: Catads Whats the latest version? Where can I find it?
  • 2007/12/31 13:15

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Have you used the search on x.o ??
Latest version 1.4:
http://surfnet.dl.sourceforge.net/sourceforge/xoops/xoops2-mod_catads_v140_thecat.zip



74
Shine
Re: How can I view Inactive Users details?
  • 2007/12/29 23:54

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


LOL,..........this same issue I already mentioned let me think....... 3 years ago on this forum.
Until now nothing has been done on this.

I totally agree that it is totally nonsens at least very strange the need to first activate the users before you as admin can see the details the user has entered upon registration.



75
Shine
Re: Liaise 1.26, need help with a bit of code...
  • 2007/12/29 23:48

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Quote:
Can you give me a little more information before I can help you on this? Is this an email that you are trying to send out or a PM?

Nevertheless I will give you some more information...

As you know Liaise is a module where you can create easily forms. You can set your own fields, required or not etc. etc.
If the user who entered or answered the fields pushes the send button, the admin (in my settings!) wil receive this form with entered answers. But, I want that the user, read person who submitted the form gets a replica/copy of that submitted form.

A guy named Matt got it working on his site and I contacted him. He nicely sended me his files and I installed it all. But unfortunately it didn't work out properly. So I digged into the code to see what needed to be changed to get it working. Some pieces I needed to left out to get it working properly.

And yes....All nessecary changes needed to be done within: include/form_execute.php

Prox line 279, the changes are taken place.......
$xoopsMailer->assign("MSG"implode("n"$msg));
//INSERT SHINE CONFIRMATION MAIL
$xoopsMailer->assign("MSG2"sprintf(_LIAISE_MSG_SUBJECT$myts->stripSlashesGPC($form->getVar('form_title'))));
// END INSERT SHINE CONFIRMATION MAIL

if( count($err) < ){
    if( !
$xoopsMailer->send(true) ){
        
$err[] = $xoopsMailer->getErrors();
    }
}
//INSERT SHINE CONFIRMATION MAIL
if( empty($err) && $xoopsMailer->isMail && isset($reply_mail) ){
    
$xoopsMailer->multimailer->ClearReplyTos();
    
$xoopsMailer->multimailer->ClearAttachments();
    
//$formTitle=getVar('form_title');
    //$body=$formTitle;
    
$body=" Dit is een automatische verzonden bevestigings Email naar aanleiding van het door u ingestuurde formulier op Kunstpodium.com. Gelieve niet op deze Email te antwoorden.nU hebt onderstaand formulier ingestuurd.nn";
    
$formTitle=sprintf(_LIAISE_MSG_SUBJECT$myts->stripSlashesGPC($form->getVar('form_title')));
    
$body.="Form: ";
    
$body.=$formTitle;
    
//$body.="</p><p align="left">";
    
$body.=implode("",$msg);
    
$body.=" nnIndien u een geldig Emailadres hebt ingevuld zult u binnen 14 dagen een antwoord ontvangen.n Met vriendelijke groetnn Administratorn www.kunstpodium.comn";
    
//$body .= $myts;
    
$xoopsMailer->sendMail($reply_mail"Kunstpodium bevestigings Email"$body$xoopsMailer->headers);
}
// END INSERT SHINE CONFIRMATION MAIL

As you can see the start text within the replica/copy to sender email is hardcoded (I prefer to realise it with a separate template, but don't know enough how to realise this. Therefore.....hardcoded.

As I understand your oneline code, will solve the <b> [bold] issue? And I can leave my added piece of code in this line also?:

$msg[$ele_id] = "SLASHn <b>".$myts->stripSlashesGPC($ele_caption).":</b> ";


Last and least......
Quote:
What this will do is send out your emails as html rather than just plain text

What happens if the person has the setting no HTML email within his outlook, but just plain text?
How does the replica/copy email looks if he/she opens it?

Catz, in advance,.......thanks for your kind help!

Grtz., Shine

Happyieieieyyeeeaa,.........2008



76
Shine
Re: Liaise 1.26, need help with a bit of code...
  • 2007/12/29 9:08

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Cannot be done because then the result would be:
Name: Jerry
Age: 17
See the difference?

The part
($ele_caption)
renders the formfield Name, Age (fields I have created and users should be entered)
and these fields (not the given answers) I would like to have be bold.



77
Shine
Re: Forms problem
  • 2007/12/29 8:53

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


That is because the presented code deletes the SLASH \ infront of the n
//replace the original line for this one 
$xoopsMailer->assign("MSG"$_POST['URL']."SLASHn".implode("SLASHn"$msg)); 
//end


Read for the word SLASH the symbol: \



78
Shine
Liaise 1.26, need help with a bit of code...
  • 2007/12/29 8:45

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Can somebody help me out.
I am busy to realise a automatic reply message (which is an exact copy of the submitted form) to the sender.
It already works, but with one piece of code I am totally stuck.
I would like that the script apart from opening and closing the php tag \n (which is the breaktag) also the bold tag opens and closes.
Example:
Name: Jerry
Age: 17

I have tried the code below, but it doesnt work. Within the received template I get the html tags < b > instead of the bold text
$msg[$ele_id] = "SLASHn <b>".$myts->stripSlashesGPC($ele_caption).":</b> ";


What is wrong within this code and what should be entered to get this working?

(I needed to enter the word SLASH otherwise the code doesn't show right in my presented example in this forum. In fact the word SLASH represents the symbol \ )



79
Shine
Re: WF-Channel v2.00b RC Released
  • 2007/12/19 8:14

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Quote:
WF-Resource is a WF-Framework (sorry about this) and will be used by many or the newer modules currently being written at this moment.


Good to see you are still developing this nice piece of module. Nevertheless.... I 'hate' to see that this module now also needs its own framework, called resource, to run properly.
If this is going to happen with every module...I am not happy at all.
Sorry Catz, no offence but just needed to say this.

Grtz., Shine



80
Shine
Re: module for a magazine
  • 2007/12/17 8:13

  • Shine

  • Just can't stay away

  • Posts: 822

  • Since: 2002/7/22


Quote:
I had a copy of tadbook2 on my site

Nobody encounters problems with this module? Because the english included langfile is way behind. Lot of definitions and constants are missing which result in white pages.
And sorry, I still cannot read chinese (or whatever language it is)




TopTop
« 1 ... 5 6 7 (8) 9 10 11 ... 63 »



Login

Who's Online

229 user(s) are online (135 user(s) are browsing Support Forums)


Members: 0


Guests: 229


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