21
Tuscany
Re: xcgal error under winXP ?
  • 2006/6/13 7:17

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Wow!!!!

That really worked!

Thank You so much - I wouldn't have found that in years !

Tus



22
Tuscany
Re: xcgal error under winXP ?
  • 2006/6/12 15:48

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


here is the link to one of the albums on my site

http://www.manege.at/modules/xcgal/thumbnails.php?album=37

It's in German - here are some translations

15 Bilder auf 2 Seite(n) - in the page nav line means "15 images on 2 page(s)

The gallery is titled "Fotoalbum" in the mainmenu

Thank You for trying to help me

Tus



23
Tuscany
xcgal error under winXP ?
  • 2006/6/10 23:30

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


The page navigation line under the thumbnail list of an album ist not shown correct under winXP (IE6+FF1.5), but it displays perfectly under win2k (IE6).

Does anyone have the same fault??

The xcgal-footer is displayed in the same row instead below!

see image (15 pics should be displaed on 2 pages but there is only a tab for page 1):

Resized Image

System:
Xoops 2.0.13.2
xcgal 2.2 (1.1 has same error)



24
Tuscany
Problem with Google Adsense block (was: Very strange?)
  • 2006/5/27 22:39

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Hi!

It seems to be new, that only one block with google adsense can be displayed on one page.

I have two block with google adsense, the first only displayed on the homepage, the second to be displayed on different pages including the homepage.

On the homepage I get an empty block for the second adsense block.

Did someone experience the same?

Tus



[size=x-small][Edit by Bender] Subject edited - Please use meaningful subject lines.[/size]



25
Tuscany
Re: No page navigation in xcgal under Win XP
  • 2006/5/26 20:59

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


I am sorry (and happy) to say: it works!

Must be a kind of magic. I didn't change anything, and when I came back from work page navigation ist showing all page numbers.

But I am sure I will nee Your help another time ...

Thank You very much and congrats for your good community
Tus



26
Tuscany
No page navigation in xcgal under Win XP
  • 2006/5/26 12:33

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Hi!

I need urgently your help!!!

There ist only shown the first page number in the naviagtion line under the thumbs. Instead of following numbers the link for xcgallery is shown in the same line (instead of one below)

I tried different themes, and different browsers (Firefox, IExplorer), different version of xcgal (1.1 and 2.0.2) - nothing!

It works with Windows 2000

What can I do! - My users are not able to see all pics!


Please help!

Running XOOPS 2.0.13.2 on IIS5

Thank You

Tus



27
Tuscany
Signed on users in upcoming events block of extcal
  • 2006/4/17 6:10

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Hi!

I need to show the already signed on members for the "who's going" along with the date and title in the upcoming events block.

I am rather new to PHP so I hope someone can help me with a "perfect hack"

In addition (no must) it would be fine to display events without signed on members in bold face and the others normal in this block.

using XOOPS 2.0.13.2

Thanks
Tus



28
Tuscany
Ticket printing with extcal
  • 2006/4/4 9:16

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Hi!

I am using extcal to show some event dates on my website. I modified extcal to show only events within the next seven days.

Now I would need a script which generates a ticket with event title and start date imprinted on the free space on the ticket (GIF-image) by clicking on one of the events.

I am not a coder so I would need a complete solution and I am willing to pay for it (paypal)

System:
Xoops 2.0.13.2
Webserver: IIS
PHP: GD2-Library bundled (2.0.22 compatible)

Hope someone can help !

Tus



29
Tuscany
Re: PD-Downloads + iStats
  • 2006/3/8 5:19

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Same to me.

Seems that "modinfo.php" in language dir is not included

Add "define("_MI_PDD_SMNAME4","My Downloads");" to main.php to fix it.

This is NOT a coders solution! I am sure there is a better solution - but it works

Tus



30
Tuscany
extcal - upcoming events for 7 days
  • 2006/2/19 19:16

  • Tuscany

  • Just popping in

  • Posts: 56

  • Since: 2005/4/19


Hi!

I already posted in the developers board - but no response.
I hope one of you coders can help me with a very urgent need.

I need the upcoming events block in extCal to show the upcoming events within the next 7 days, not the next defined amount of events regardless of their date.

Please can someone help me

I guess changes have to be made to the following code:

function getUpcomingEvent($user$limit$cats$skipPerm false)
    {
        
$time userTimeToServerTime(time(), $this->_extcalTime->_getUserTimeZone($user));
        
$criteriaCompo = new CriteriaCompo();
        
$criteriaCompo->add(new Criteria('event_start'$time'>'));
        
$criteriaCompo->add(new Criteria('event_approved'1));
        if(!
is_array($cats) && $cats 0) {
            
$criteriaCompo->add(new Criteria('cat_id'$cats));
        }
        if(
is_array($cats)) {
            if(
array_search(0$cats) === false) {
                
$in '('.current($cats);
                
array_shift($cats);
                foreach(
$cats as $cat) {
                    
$in .= ','.$cat;
                }
                
$in .= ')';
                
$criteriaCompo->add(new Criteria('cat_id'$in'IN'));
            }
        }
        if(!
$skipPerm) {
            
$authorizedAccessCats $this->_extcalPerm->getAuthorizedCat($user'extcal_cat_view');
            
$count count($authorizedAccessCats);
            if(
$count 0) {
                
$in '('.$authorizedAccessCats[0];
                
array_shift($authorizedAccessCats);
                foreach(
$authorizedAccessCats as $authorizedAccessCat) {
                    
$in .= ','.$authorizedAccessCat;
                }
                
$in .= ')';
                
$criteriaCompo->add(new Criteria('cat_id'$in'IN'));
            } else {
                
$criteriaCompo->add(new Criteria('cat_id''(0)''IN'));
            }
        }
        
$criteriaCompo->setSort('event_start');
        
$criteriaCompo->setLimit($limit);
        return 
$this->getObjects($criteriaCompo);
    }


Thank You very much for your help

Tus




TopTop
« 1 2 (3) 4 5 6 »



Login

Who's Online

152 user(s) are online (101 user(s) are browsing Support Forums)


Members: 0


Guests: 152


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