81
Catzwolf
Re: What a ranker!
  • 2010/5/22 13:41

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


@Trabis,

I just wrote a post exactly about this, I agree we have a team but we have a leader who just doesn't want to work with us in any capacity. I for one cannot work like that. If we work on Xoops we work from the same roadmap, same agenda and in the same direction.

If DJ wants to work on Xoops on his own, then let it be, but the only people that suffer is the Xoops users and it isn't fair on them.

Xoops is dying, everyone I know (personally) that used Xoops has either gone to Joomla or Drupal.

As I said, I will work with the right leader, someone who has vision, someone who can get the best out of people.Right now, DJ doesn't fill any checks on the box there.



82
Catzwolf
Re: What a ranker!
  • 2010/5/22 13:37

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


Did you even ask me? No, you assumed and it would have been nice if Wishcraft, Trabis and Myself were given the opportunity to discuss this with you or DJ in any capacity.

As I have said to you and Dj many times, I'm really not prepared to put in a lot of work and effort into developing Xoops knowing damn well that nothing of it is going to be used. (Dj as already informed me a long time ago that when and if he ever finished version 3, then nothing of the work we have done will be used.

In reality, leadership starts at the top and it is DJ's responsibility to get the people around him working as a team. You talk to me about egos? I have told you many times I will work with anyone to get Xoops up and running, I will make mountings out of mole hills to work as a team. Yet, every time we talk you berate me and the other developers for having an ego, when all the while DJ is off on his own refusing to work with any of us.

You asked the other developers of EXM, Simple Xoops and Xoosla to come back and work on Xoops yet what happened? Nothing from any of these CMS's were implemented into Xoops? Why? All due to the lack of leadership.

Tell you what, you make Eduardo lead developer of Xoops, get Trabis, furMuzz, Kris, Myself and anyone else who wants to take the Xoops core seriously, and knowing that our work will mean a damn, get back to me. If not, stop wasting our time.





83
Catzwolf
Re: What a ranker!
  • 2010/5/22 13:15

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


lol trabis,

Does Xoops actually have any Core developers apart from DJ?

Viva Xoops alright lol



84
Catzwolf
Re: What a ranker!
  • 2010/5/22 12:05

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


I see you're not the only one that has been dropped from developer status without even being told. Would have been nice if you (Mamba) actually had spoken to me about it first.

Well, I will no longer be supporting Xoops from this time forward. I would like to thank all of you who have supported, helped or used any of the WF-Modules in the past.

ATB Xoopers :)

Catz

Edit: My apologies for letting my surprise and frustration get the better of me.




85
Catzwolf
Re: WF-Channel 2.06 Beta Released
  • 2010/5/20 16:09

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


Hi,

Can you turn on PHP debugging and report any error messages please?

Also, there is a known bug in this version where if you have any capital letters in your server path, wf-channel will die with loads of error messages. It is easy to fix though.

Open file:

wfresource/class/class.request.php and look for this function (Around line 86)

function getCore() {
        if ( 
file_exists$file dirname__FILE__ ) . DS 'filters' DS strtolowerself::$name ) . '.php' ) ) {
            include_once 
strtolower$file );
        }
        unset( 
$file );
        return 
false;
    }


Change it to this:

function getCore() {
        if ( 
file_exists$file dirname__FILE__ ) . DS 'filters' DS strtolowerself::$name ) . '.php' ) ) {
            include_once 
$file;
        }
        unset( 
$file );
        return 
false;
    }


Save the file, upload it back to your server and overwrite the olf class.request.php file.

Lemme know if that helps you.

John




86
Catzwolf
Re: XoopsForm class validation bug?
  • 2010/5/18 16:44

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


@Peekay;

You have an example of code this will break the validation?

John



87
Catzwolf
Re: How to identify url paths for Custom Blocks
  • 2010/5/17 10:16

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


@ TexAcoon:

Welcome to the word of Xoops.

Like most issues with modules, there will be issues arising from newer core version and that will cause issues for you the user.

When you encounter an error, blank page and the module doesn't work as expected, follow these simple rules:

1. Turn on PHP debugging (See the manual to turn or wiki on how to do this) or

Dealing with errors on my Xoops Website

2. If you find anything that can be used to help aid you in fixing the problem/s, come here and create a new topic using the information to help provide a solution.

Other advice for you concerning older modules. Try not to use them. Most modules that are over 3 years old tend to be buggy, out of date were PHP is concerned and will tend to be insecure. Try using an alternative module that is actively being developed even if it is not your first choice.

Sorry, the best advice I can offer you.

ATB,

John



88
Catzwolf
Re: Group users after some days get a blank page when logged in
  • 2010/5/17 10:04

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


@ rgauci,

Have you changed anything with 'Sessions' at in Xoops admin, are they the default settings?

I assume this only happens with custom groups and not the default?

What other modules do you have installed and can you remember the anything you did before had prior to this happening?

Do you know which browsers your users are using?

Did you remove Protector or just disabled it?




89
Catzwolf
Re: User profile
  • 2010/5/17 9:56

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


@ghia: There is no limit really for this in PHP, but for performance sakes. Having a list of 1000 could send some users over the edge though.

@Nick_James: What field type do you have this set? If it is varchar (textbox)? Then set it to text (textarea). It could be the 255 limit on varchar could be causing items seem to disappear when you update them or save them.

It possibly would help further if you gave us clear examples of your profile form additions, laying out exactly what you're doing. That way we would better understand what you're trying to do and that would help us provide a solution quicker :)

ATB,

John



90
Catzwolf
Re: How do I put two dropdowns in one line in the Edit Profile form?
  • 2010/5/17 3:00

  • Catzwolf

  • Home away from home

  • Posts: 1392

  • Since: 2007/9/30


Nice form class Bandit, I wa about to do the same myself when I was skimming this post until I saw that you had done it your self.

To make it simpler, I would have used the two select forms class forms and used div for positioning.




TopTop
« 1 ... 6 7 8 (9) 10 11 12 ... 185 »



Login

Who's Online

150 user(s) are online (102 user(s) are browsing Support Forums)


Members: 0


Guests: 150


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