1
winnesoup
Re: Help! Hacked :-(
  • 2007/4/7 8:53

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Quote:

mpowell wrote:
OK.

I found the information in the database - config footer and config metadata - that had been corrupted.

However, even after erasing this information in the database I still get the islamic message.

What am I missing?


Just clear the contents of your templates_c and cache directory. Then do a refresh on your page.



2
winnesoup
Re: how to force email notification of new news postings
  • 2005/12/2 23:41

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


trying to help you out, not critisizing, but just test it!

Make local install, subscribe yourself to some kind of notification and see what has happened in the XOOPS tables.

And you have to take care of the fact that users can NOT unsubscribe.

You might be able to do this last thing by filling the records but then afterwards disabling notifications subscribing only for the news module. Believe it is a setting in the prefs of last one that you can set which notifications come in order. Then look if notifying still works.



3
winnesoup
Re: A Complete REVIEW modules
  • 2005/11/14 11:52

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


The only review module I know of is myreviews in the XOOPS module repository.

Notice that it did not work at my sites with register globals off, only on.

Link to module: https://xoops.org/modules/repository/singlefile.php?cid=57&lid=1383



4
winnesoup
Re: I don't want people to register!,,,
  • 2005/11/2 13:11

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Actually I use this setup on most of my sites.
Anonymous --> only acces to login block

In that case after registering the user shifts from group anonymous to registered.

Or in database language (2.0.x): a user shifts from groupid 3 to 2 (1 is webmasters).
So by poking around in xoops_groups_permissions (table: I assume the databasename is xoops) you could manually (or by query) change all 3 groupids to 2 groupids.

After changing the data, just only add access to login block for anonymous users. Be sure you logged in as a member of webmasters!!

(Note: Allways first backup your database before manually altering data!!)

(Note 2: No, this doesn't provide a problem for other groups. The only thing you do is moving anonymous access to registered. Ok, it might be possible you get a couple of errors if registered users allready have access to that module or block, but of course it is allways best practice to first check which records need alteration.....)



5
winnesoup
Re: ho do I get SPAW and how do I update NEWS
  • 2005/10/31 21:50

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Quote:

Twonames wrote:
CALL ME AN IDIOT

I was using firefox rather than IE.

SPAW doesn't work in firefox does it?

so... I am an idiot. It's official


Hey, it is not that bad!

At least you were proficient enough to continue your search. I 've seen worse.

From my side a compliment and wishing you happy xoopsing!

(Note: spaw needs an microsoft OCX. Try kiovi or tiny something. those are browser "independent")



6
winnesoup
Re: ho do I get SPAW and how do I update NEWS
  • 2005/10/31 19:42

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


I give it a try
The rights to do everything.... There are 3 rights to give:
- submit / approve / view

Are you REALLY sure you've given every right available to the webmaster account ? The error you get looks like a "view rights" problem.

Don't forget that it is not just being a member of the webmaster GROUP but also being a webmaster in user management (although I do not know how this behave in 2.2.x).

Regards.



7
winnesoup
Re: ho do I get SPAW and how do I update NEWS
  • 2005/10/31 18:48

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Actually when evennews is working with spaw, you should just update the preferences of the newsmodule to work with the spaw-editor!
The position in which you installed SPAW is actually the right location when working with news 1.3. That's why I took this approach.

Give it a try and let me know!



8
winnesoup
Re: ho do I get SPAW and how do I update NEWS
  • 2005/10/17 17:55

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Quote:

Twonames wrote:
Oh dear.

I edited the file as suggested and now on entering evennews admin I get

Parse error: parse error, unexpected T_CLASS in /home/httpd/vhosts/harlowjazz.co.uk/httpdocs/xodir/modules/evennews/admin/index.php on line 18

Precise details....

Running XOOPS 2.0.13.1
go to module admin page
click on even news picture - get the error.

However... hover over even-news and click on preferences in the popup menu, I get to the even news preferences page.

I don't know enough yet to know where to look next


Hello Twonames,

I hope you did install the SPAW class as part of xoops/class ?
I used the link to this class in my reply.

That would explain the error in your case.



9
winnesoup
Re: ho do I get SPAW and how do I update NEWS
  • 2005/10/12 21:45

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


It looks like this topic is easily overlooked for what actually the question is:
- How to use the module EVENNEWS (mailing list manager) with Spaw.

I stumbled into this question because I was having the same problem.

Looking into the code of evennews 2.01a (actually 2.2) it shows in the /admin/index.php that use of spaw depends on spaw being installed as a MODULE.
Wow, this is a long time back. I think there was a wf module that used spaw like this.
Problem: this spaw module is nowhere to be found anymore. Hurrah.

Do it the other way.
Spaw has also been launched as a /class/spaw. I think it was News 1.2 that started this. This package (called "xoops_editor_spaw") was prepared by phppp.
A reference to this module can be found at http://dev.xoops.org/modules/xfmod/project/showfiles.php?group_id=1001. Just browse down to WYSIWYG editors and choose spaw 1.07. You will be forwarded to xoops.cn.

So how to use spaw with Evennews ?
Unpack the spaw package to /class(/spaw --> depends on if it is packed with subdirs). Your path looks like /class/spaw and underneath this all your files and subdirs.

Now edit in /modules/evennews/admin/index.php the following code (you will find this at about line 11)

if (is_object($module) && $module->getVar('isactive'))
{
    include_once 
XOOPS_ROOT_PATH "/modules/spaw/spaw_control.class.php";
}


to

if ( is_readable(XOOPS_ROOT_PATH "/class/spaw/formspaw.php"))
{
    include_once 
XOOPS_ROOT_PATH "/class/spaw/spaw_control.class.php";
}


and that's just it!!

Do not forget to update the module evennews and have fun with spaw in preparing a newsletter!



10
winnesoup
Re: DMS Problems // Email on Windows
  • 2005/5/2 21:56

  • winnesoup

  • Just popping in

  • Posts: 29

  • Since: 2004/10/15


Ok, now for my little problem.

I can not get the email function to work on windows. Normal emailing from within XOOPS by adminstrator and other webmasterbobos DOES work. But DMS does not seem to get through.
Ok, in the support forum there is a similar post, but that one actually had a SMTP error. I have nothing.....Tried to change the script according to this post but nothing.

Ok2: I could start ripping the code apart and try to rebuild it, but maybe someone has had the same problem. Do not hesitate to post.

And, the module is actually a fine one.....




TopTop
(1) 2 »



Login

Who's Online

178 user(s) are online (114 user(s) are browsing Support Forums)


Members: 0


Guests: 178


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