71
fosterm
Re: xcGal help
  • 2005/10/10 16:19

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi Barry

I appreciate you taking time to verify that for me.
I will also turn off the debug. :)

Thanks
Foz :)



72
fosterm
Re: xcGal help
  • 2005/10/10 15:41

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


For anyone who might run into this problem in the future, I have found a simple workaround.

under module preferences, set your intermediate picture size to the same size as you original picture. This eliminates the option to "click here for full size image" that you get on mouseover of intermediate picture.

Can any of the firefox users take a look to make sure that browser is ok with it?

Thanks
Foz



73
fosterm
Re: xcGal help
  • 2005/10/5 22:23

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi Gecko.

Ty for the info. I just assumed it was a code problem :)(guess it still might be just ie specific)

So can anyone tell me what I need to do to fix this?

Using IE this feature works fine on some of the websites that I have visited.

Any ideas or help would be appreciated :)


Thanks
Foz



74
fosterm
Re: xcGal help
  • 2005/10/5 22:18

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi Highlander,

Ty for the reply.


Hmmm. You must not be using IE? Have tried it on two different machines but they both have IE on them. Can you confirm which browser you are using please?


Thanks
Foz



75
fosterm
xcGal help
  • 2005/10/5 18:52

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi all.

I am currently running XOOPS 2.2.3 and xcgal 2.0.

I am having a small problem that I am sure someone with some coding experience could fix in a flash. I have tried to fix it myself. I have searched this site and the web for someone with this same problem and have been unsuccessful. Any help or suggestions that anyone could offer would be appreciated. :)

Go herehttp://www.thewoodlandsmonitor.com/testsite/

1. Click on xcgallery in the main menu.
2. Click one of the thumbs to bring up the intermediate image.
3. Now click on the intermediate image to bring up the full image.

As you can see the pop up window that comes up attempts to resize itself and center itself. The centering seems to work fine, but the resize looks like it resizes the window to 0,0

So of course I am trying to get the full size image to display in the popup window correctly.

I attempted to mess with this code in scripts.js in the xcgal module, but have not figured out how to get desired result
Quote:
function adjust_popup()
{
var w, h, fixedW, fixedH, diffW, diffH;

if (document.all) {
fixedW = document.body.clientWidth;
fixedH = document.body.clientHeight;
window.resizeTo(fixedW, fixedH);
diffW = fixedW - document.body.clientWidth;
diffH = fixedH - document.body.clientHeight;
} else {
fixedW = window.innerWidth;
fixedH = window.innerHeight;
window.resizeTo(fixedW, fixedH);
diffW = fixedW - window.innerWidth;
diffH = fixedH - window.innerHeight;
}
w = fixedW + diffW;
h = fixedH + diffH;
if (h >= screen.availHeight) w += 16;
if (w >= screen.availWidth) h += 16;
w = Math.min(w,screen.availWidth);
h = Math.min(h,screen.availHeight);
window.resizeTo(w,h);
window.moveTo((screen.availWidth-w)/2, (screen.availHeight-h)/2);
}


I am not for sure if this is even the right place to look. In several other files (i.e. displayimage.php) there is similiar code. Needless to say this is terribly confusing to a non coder :)

Any help or suggestions that anyone could provide would be greatly appreciated.

Thanks
foz



76
fosterm
Converting Thumbs to gifs
  • 2005/9/29 17:31

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Anyone have any info on how to convert all submitted pictures to Xcgallery into thumbnails that are gifs?

I am currently using Imagemagick and would like all the submitted photos, no matter what the original format, to be made into .gif thumbs.

This will allow me to use watermark php to watermark the larger originally submitted photos while not watermarking the thumbs.


Thanks for the help
Foz



77
fosterm
Re: date problem
  • 2005/9/12 17:55

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


I am having the same problem with 2.2.3


foz



78
fosterm
Changing Date/Time Format in them 7dana-soft
  • 2005/9/11 20:41

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi.

I am using XOOPS 2.2.3(2.2.2rc). I am also using the 7dana-soft theme.

I wanted to change the date/time format that appears at the top left of that theme.

I accomplished this by changing the format in modifier.date_format.php
FromQuote:
function smarty_modifier_date_format($string, $format="%b %e, %Y", $default_date=null)


to
Quote:
function smarty_modifier_date_format($string, $format="%B %e, %Y | %I:%M %p", $default_date=null).


I also changed the javascript clock( <script language="JavaScript" type="text/javascript" src="<{$xoops_imageurl}>images/clock.js">
</script>) in theme.html to

the shorty version....{$smarty.now|date_format}


This accomplished my needed change in the format, but now the time is 1 hour ahead of my local time. It seems to be using the servers time only(-5). I am (-6) in my time zone.

I have tried setting the time in my user profile(made no change no matter what i set it to), as well as in Preferences...General Settings...None of those setting seem to effect the time.

Anyone able to help me out a bit? Did I modify the wrong files?

Thanks
Foz
http://www.thewoodlandsmonitor.com/testsite



79
fosterm
Time display problem
  • 2005/9/10 19:14

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi.

I am using XOOPS 2.2.3(2.2.2rc). I am also using the 7dana-soft theme.

I wanted to change the date/time format that appears at the top left of that theme.

I accomplished this by changing the format in modifier.date_format.php


currently have this


Quote:
function smarty_modifier_date_format($string, $format="%B %e, %Y | %I:%M %p", $default_date=null).


This accomplished my needed change in the format, but now the time is 1 hour ahead of my local time. It seems to be using the servers time only(-4). I am (-5) in my time zone.

I have tried setting the time in my user profile(made no change no matter what i set it to), as well as in Preferences...General Settings...None of those setting seem to effect the time.

Anyone able to help me out a bit?

Thanks
Foz
http://www.thewoodlandsmonitor.com/testsite



80
fosterm
Feature or Bug?
  • 2005/9/4 0:37

  • fosterm

  • Just popping in

  • Posts: 93

  • Since: 2005/8/7 2


Hi all.

I am using XOOPS 2.2.3. When a person tries to register using and alias email address(i.e. myname+wm@gmail.com)it returns an invalid email error and wont continue with the registration process.

Was this intentionally programed in to prevent alias'? Is there a way around it? I didnt even realize this was possible until a neighbor helping me test my site came up with this error. Is it because of the + in the email address?

Thanks for the info :)
Foz




TopTop
« 1 ... 5 6 7 (8) 9 »



Login

Who's Online

235 user(s) are online (144 user(s) are browsing Support Forums)


Members: 0


Guests: 235


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