91
Cuidiu
Re: Upgrade from 2.2.4 to 2.2.5 RC
  • 2007/4/5 15:14

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Where can I find the full version of 2.2.5? So far, I've only found the 2.2.5 RC2. Is that the latest release?

TIA!
C

Quote:
I searched for an update from 2.2.4 to 2.2.5 RC but only found the full version of 2.2.5
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



92
Cuidiu
SOLVED Re: Admin Find Users
  • 2007/3/22 21:49

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


I solved this issue and it has been such a time saver for me. In case anyone else wants to know, this is what I did.

** Back up your file first - proceed at your own risk **
For XOOPS verson 2.2.4

Edit file: /modules/system/admin/findusers/main.php

Do a search for the word: limit
On or around line 78 you will see the following:
$limit_text = new XoopsFormText(_AM_LIMIT, "limit", 6, 2);

Change the number 2 to 3

Find this code on or around line 224:
$limit = (!empty($_POST['limit'])) ? intval($_POST['limit']) : 50;
if ( $limit == 0 || $limit > 50 ) {
$limit = 50;

Change 50 to the desired number. I assume it depends on how well your server handles these calls. I changed 50 to 200 in all three places because I have 190 users so that works well for me. The "limit users per page" option seems to work fine as well.

Are there any repercussions to modifying the number? I have no idea. I wish someone would tell me but unfortunately, I can only guess. So if you decide to adjust your limit, please do so with caution, at your own risk and only after first backing up main.php. Good luck.
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



93
Cuidiu
Re: IE7 Style='clear: both;" issue
  • 2007/3/2 19:10

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Are you trying to make the page fit the screen height at 100%? If so, I've done something similar and I think I put the footer as the last div underneath the wrapper div:

In the theme head:
<!--[if lte IE 6]>
<style>
#wrapper {height: 100%;}
</style>
<![endif]-->

In the theme CSS file:
html, body {height: 100%;}
#wrapper {min-height: 100%;}

(The above is from memory so accuracy is not guaranteed)

Not sure how that would work with your setup though.
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



94
Cuidiu
Re: IE7 Style='clear: both;" issue
  • 2007/3/2 6:45

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Hi pumpkin1,

I'm no expert either but have you tried <br clear="all" /> instead of the div?

Otherwise, maybe someone here with more experience can help you.

Good luck,
C

Quote:

pumpkin1 wrote:
OK so I'm not a HUGE developer anymore and am not too good with CSS and PHP...but I know that my problem lies somewhere with clearing my floats for positioning.
I am trying to get a footer at the end of each page - works great with the home page, but as soon as another page is called, the footer overlays text - instead of positioning AFTEr the last text...did I make sense?
This ONLY seems to happen in IE7 - works fine in 6.
I am using <div style="clear: both;"></div> just before my call to the footer divs...
driving me nuts I tell ya :) ANY HELP PLS??
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



95
Cuidiu
Re: Moments Theme vs City Reflections
  • 2007/3/2 3:08

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Thank you so much for explaining this in detail for me. This helps a great deal.

Thank you again for your time!

C

Quote:
snow77 wrote:
the code:
topbottom=top lcr=$theme_top_order|substr:0:1
topbottom=top lcr=$theme_top_order|substr:1:1
topbottom=top lcr=$theme_top_order|substr:2:1

is used to display the custom blocks in three columns in a straight row or move them around in different positions, and not the usual way we know them with center-center block below or above the center-left and center-right blocks in a static way hard to move.
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



96
Cuidiu
Re: Moments Theme vs City Reflections
  • 2007/3/1 21:18

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Thanks snow77. I wasn't really looking for a detailed explanation, just if it was better to use the includeq code.

Regarding your statement below:
Quote:
For the themes that don't have includeq you can add the "q" to them if you wish.


City Reflections contains code like this:
<{includeq file="$theme_name/centerblocks.html" topbottom=top lcr=$theme_top_order|substr:2:1}>


I don't see code like this: substr:2:1 in Moments nor in the newest (smarty var) default theme. Should that code be added as well? Or is that something completely different (obviously I know little about these matters).
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



97
Cuidiu
Moments Theme vs City Reflections
  • 2007/3/1 5:45

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


I attempted to post on the XOOPSDesign.com site and though I was signed in, I was not permitted to post. I'm trying to decide which theme is best to use. City Reflections uses the includeq but I don't see it in the code for Moments. Is this important for future upgrades, faster page loads, etc?

Edited: I would be using this for a XOOPS site v. 2.0.16.
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



98
Cuidiu
Re: News RSS
  • 2007/2/2 17:54

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Would someone please help with this? I have found another file in cache dated 1/31/07. We don't want any RSS feeds available. Please help!
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



99
Cuidiu
Re: Admin Find Users
  • 2007/1/29 17:18

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Thanks for the reply vaughan. That would make sense except I can run at least 100 users per page when it comes to xm-memberstats and 200+ with profile search so I'm not sure the server memory is the issue.

Running PHP info it shows memory_limit 18388608. Is that the memory you're referring to?
Quote:

vaughan wrote:
some server settings on shared hosts only set a php memory limit of 8M.

8M is extremely low by todays standards, and results in memory exhausted error in PHP under certain conditions such as when find users is used..
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]



100
Cuidiu
Admin Find Users
  • 2007/1/29 16:30

  • Cuidiu

  • Quite a regular

  • Posts: 358

  • Since: 2006/4/23


Does anyone happen to know why I only get a total of 50 users per page when I do a search for users even though I've specified more per page? Is this simply a limitation of the XOOPS version, MySQL or PHP version or what? Why put a limit of 50? Not really complaining as much as I am curious as to why the limit.

Thanks,

Cuidiu
[size=x-small]Working sites:
XOOPS 2.0.16 PHP 5.2.2, MySQL 5.0.24a-standard-log, Apache/2.0.54 (Unix)
XOOPS 2.2.4, PHP 4.3.10, MySQL 3.23.58, Apache/1.3.33 (Unix)[/size]




TopTop
« 1 ... 7 8 9 (10) 11 12 13 ... 35 »



Login

Who's Online

238 user(s) are online (185 user(s) are browsing Support Forums)


Members: 0


Guests: 238


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