121
wizanda
Re: Proposal: Towards A Sustainable Open Source Project
  • 2007/10/27 14:29

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Quote:

sailjapan wrote:
IM would be great, except I doubt you'd be very talkative at 4am ... Me either for that matter.

It's more just for confirming points between us, like they suck or that stinks ...It then means less response on here, as people have a shoulder to on.....
Also for error fixing it makes it far easier and less public to make quick reports....

That on error fixes though needs addressing, with a perfect management system with all errors and fixes cleanly, easily, seen next to any module....with an assessment team to implement the correct fix in the downloads.

Quote:

MadFish wrote:
Ok - please also indicate what instant messenger you prefer (in your PMs to me). Let's go with whatever is the most popular and the rest of us can install it :)

I advise Pidgin then we have all systems in one go....also IRC to access the #xoops chat room....



122
wizanda
Re: Proposal: Towards A Sustainable Open Source Project
  • 2007/10/27 14:12

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Quote:

I would appreciate it if the above people could please send me your email address via PM.

We would appreciate us all talking on IM, allot of us are getting messages and points across through it and it would be helpful, if we all did....then all too become friends also!



123
wizanda
Re: Check for updated modules
  • 2007/10/26 11:01

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Was think the same my self yesterday, yet a different style….lately I keep using my SVN for the latest fixes in one clear place, as all files I stick on there, are what you see on my site and tested working….
So if we as a XOOPS community had a clear system like my own SVN copy, where it isn’t about continuous sub-projects, yet repairs as they happen in real time…that would also mean any new fixes we become aware of as a community can be instantly downloaded by the community…..
The next thing to look at, is linking that and haven’t got around to checking if it is possible yet with SVN…..yet an automated XOOPS system updater, so as any repairs get add to our SVN….Our XOOPS sites regularly check if any repairs are needed and update those automatically…..
This would mean once you installed a XOOPS site you could leave it and it would update and fix its self…..



124
wizanda
Re: Plan on how to merge 2.2 and 2.0
  • 2007/10/26 10:21

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


userinfo.php
$thisUser =& $xoopsUser;
$xoopsTpl->assign('lang_allaboutuser'sprintf(_US_ALLABOUT,$thisUser->getVar('uname')));
$xoopsTpl->assign('lang_avatar'_US_AVATAR);
$xoopsTpl->assign('user_avatarurl''uploads/'.$thisUser->getVar('user_avatar'));
$xoopsTpl->assign('lang_realname'_US_REALNAME);
$xoopsTpl->assign('user_realname'$thisUser->getVar('name'));
$xoopsTpl->assign('lang_website'_US_WEBSITE);
$xoopsTpl->assign('user_websiteurl''<a href="'.$thisUser->getVar('url''E').'" target="_blank">'.$thisUser->getVar('url').'</a>');
$xoopsTpl->assign('lang_email'_US_EMAIL);
$xoopsTpl->assign('lang_privmsg'_US_PM);
$xoopsTpl->assign('lang_icq'_US_ICQ);
$xoopsTpl->assign('user_icq'$thisUser->getVar('user_icq'));
$xoopsTpl->assign('lang_aim'_US_AIM);
$xoopsTpl->assign('user_aim'$thisUser->getVar('user_aim'));
$xoopsTpl->assign('lang_yim'_US_YIM);
$xoopsTpl->assign('user_yim'$thisUser->getVar('user_yim'));
$xoopsTpl->assign('lang_msnm'_US_MSNM);
$xoopsTpl->assign('user_msnm'$thisUser->getVar('user_msnm'));
$xoopsTpl->assign('lang_location'_US_LOCATION);
$xoopsTpl->assign('user_location'$thisUser->getVar('user_from'));
$xoopsTpl->assign('lang_occupation'_US_OCCUPATION);
$xoopsTpl->assign('user_occupation'$thisUser->getVar('user_occ'));
$xoopsTpl->assign('lang_interest'_US_INTEREST);
$xoopsTpl->assign('user_interest'$thisUser->getVar('user_intrest'));
$xoopsTpl->assign('lang_extrainfo'_US_EXTRAINFO); $var $thisUser->getVar('bio''N');
$xoopsTpl->assign('lang_statistics'_US_STATISTICS);
$xoopsTpl->assign('lang_membersince'_US_MEMBERSINCE);
$var $thisUser->getVar('user_regdate');
$xoopsTpl->assign('user_joindate'formatTimestamp($var's'));
$xoopsTpl->assign('lang_rank'_US_RANK);
$xoopsTpl->assign('lang_posts'_US_POSTS);
$xoopsTpl->assign('lang_basicInfo'_US_BASICINFO);
$xoopsTpl->assign('lang_more'_US_MOREABOUT);
$xoopsTpl->assign('lang_myinfo'_US_MYINFO);
$xoopsTpl->assign('user_posts'$thisUser->getVar('posts'));
$xoopsTpl->assign('lang_lastlogin'_US_LASTLOGIN);

language/english/user.php
//%%%%%%File Name userinfo.php%%%%%
define('_US_NICKNAME','Username');
define('_US_REALNAME','Real Name');
define('_US_EMAIL','Email');
define('_US_PM','PM');
define('_US_ICQ','ICQ');
define('_US_AIM','AIM');
define('_US_YIM','YIM');
define('_US_MSNM','MSNM');
define('_US_WEBSITE','Website');
define('_US_LOCATION','Location');
define('_US_OCCUPATION','Occupation');
define('_US_INTEREST','Interest');
define('_US_SIGNATURE','Signature');
define('_US_EXTRAINFO','Extra Info');
define('_US_EDITPROFILE','Edit Profile');
define('_US_MEMBERSINCE','Member Since');
define('_US_RANK','Rank');
define('_US_POSTS','Comments/Posts');
define('_US_LASTLOGIN','Last Login');
define('_US_ALLABOUT','All about %s');
define('_US_STATISTICS','Statistics');
define('_US_MYINFO','My Info');
define('_US_BASICINFO','Basic information');
define('_US_MOREABOUT','More About Me');
define('_US_SHOWALL','Show All');


Works for Yogurt..... ...some of them may not be needed....next job $xoTheme = old theme functions??....



125
wizanda
Plan on how to merge 2.2 and 2.0
  • 2007/10/26 9:21

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Considering most modules install ok on 2.2.5Z, it is only a few bits we need too join to together…why so many of you are constantly talking backwards…Is beyond me and not productive….
Most people go forwards and not backwards, else we will end up with more errors, not less….Plus loose all the work people have done…..

We agree on that we want these same features now in 2.2.5 along time ago and again within the pointless documentation on our Sourceforge Wiki…..Plus constant requests by new users for these same things…

The points in question for all:

One of the main reasons modules don’t work from my own assessments of modules that don’t function correctly, is due to the user settings…

In the older copy (2.0) there is a clear indication of what the user var’s are for IM systems, url in the userinfo.php…..In the new version these are collected as they can be changed….
So is it possible to make it that within 2.2.5, there is an old function call, if these exist, then assign those as we use too….If not then place a blank for each of them…??
If that works then older modules would still function correctly, as most of the time they only don’t work on this point…..



126
wizanda
Re: Added Debug Functionality in 2.2.5
  • 2007/10/26 8:38

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Quote:

stefan88 wrote:
Hi,
just wondering... is there someone looking on what can be cleared from the XOOPS core, so it will not become a dinosaur that needs a room size server and loads a page an hour ...
It is relatively easy to add, hard to keep house clean

That’s what I did at the start of the year......



127
wizanda
Re: Proposal: Towards A Sustainable Open Source Project
  • 2007/10/25 20:49

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Required_always 'Proposal: Towards A Sustainable Open Source Project' =
Quote:
Not people looking just for titles and power.



128
wizanda
Re: Added Debug Functionality in 2.2.5
  • 2007/10/25 19:44

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Quote:

catzwolf_ wrote:
Sure, I will when DJ accepts my offer help.

Plus mine.... There is a revision of most modules on our SVN plus 2.2.5Z....I report error fixes all the time and still struggle....plus have a full MySql revision of Xoops...now just want to quit to be honest as people show me no respect (well other then a few friends who IM me all the time )....



129
wizanda
Re: Gzip code for XOOPS
  • 2007/10/25 19:39

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Unless you also have lots of videos and iframes, which then if in the header also loads other people’s sites faster....

This is the code taken from the latest 2.0.17.1 common.php
if (empty($_SERVER['SERVER_NAME']) || substr(PHP_SAPI03) == 'cli') {
        
$xoopsConfig['gzip_compression'] = 0;
    }
    if ( 
$xoopsConfig['gzip_compression'] == && extension_loaded'zlib' ) && !ini_get'zlib.output_compression' ) ) {
        if ( @
ini_get'zlib.output_compression_level' ) < ) {
            
ini_set'zlib.output_compression_level');
        }
        
ob_start'ob_gzhandler' );
    }

As you see using ('ob_gzhandler') which if we check here is recommend, not as good as ('zlib.output')...
Quote:
Note: ob_gzhandler() requires the zlib extension.
Note: You cannot use both ob_gzhandler() and zlib.output_compression. Also note that using zlib.output_compression is preferred over ob_gzhandler().


If you notice in php.ini also there is a standard zlib.output on and not needing a level set, which is far easier and also works better……
Quote:
Sorry I hadn't understood


This compresses output of the files used….which you can test to see the smaller size of the site, to download to a persons browser.



130
wizanda
Re: Added Debug Functionality in 2.2.5
  • 2007/10/25 19:10

  • wizanda

  • Home away from home

  • Posts: 1585

  • Since: 2004/3/21


Cool you will be able to help then, with the lots of experience....




TopTop
« 1 ... 10 11 12 (13) 14 15 16 ... 131 »



Login

Who's Online

170 user(s) are online (93 user(s) are browsing Support Forums)


Members: 0


Guests: 170


more...

Donat-O-Meter

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

Latest GitHub Commits