1
andee
real estate/property listing modules
  • 2010/1/5 3:53

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


hi,

is there any real estate/property listing module that i can use?
beside open realty and tecno inmo.

im using XOOPS 2.4.0

thanks in advance :)



2
andee
TadGallery Album Cover Image
  • 2009/12/20 19:19

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


Hi there,

ive installed TadGallery 1.3 with XOOPS 2.4.0 and it works perfectly fine except one thing, it seems that the album cover image its not working.

heres the screenshot of the album management setting
Resized Image

and heres how it looks in the album lists
Resized Image

what happened? am i missing a pluggin or a preference setting?

in this website it seems to be working just fine
http://www.iprjequie.org/site/modules/tadgallery/index.php

thanks



3
andee
Re: how to hack smart parner scrolling partner block?
  • 2009/12/20 11:40

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


problem solved!

heres the screenshot

Resized Image



i deleted the 2nd br

//Specify the slider's images
var leftrightslide=new Array()
var 
finalslide=''
<{foreach key=key item=partner from=$block.partners}>
    
leftrightslide[<{$key}>]='<div class="singleslide"><{$partner.urllink}><img style="vertical-align:middle;"src="<{$partner.image}>" alt="<{$partner.title}>" border=1><br><{$partner.title}></a></div>'
 
<{/foreach}>


and instead of display:block; i use display:table-row-group; .
heres the css

.singleslide {
    
display:table-row-group;
    
text-aligncenter;
}


i couldnt have done it without you ghia. youre a wizard! thanks!



4
andee
Re: how to hack smart parner scrolling partner block?
  • 2009/12/20 3:27

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


hi ghia,

im afraid i dont know how to implement the code in the link that you gave me. it is written in php, while mine is in java script.

heres the screenshot if if i just put <{$partner.title}> at
//Specify the slider's images
var leftrightslide=new Array()
var 
finalslide=''
<{foreach key=key item=partner from=$block.partners}>
    
leftrightslide[<{$key}>]='<{$partner.urllink}><img style="vertical-align:middle;"src="<{$partner.image}>" alt="<{$partner.title}>" border=1><{$partner.title}></a>'
 
<{/foreach}>


Resized Image


heres the screenshot if if i just put <br>before and after the <{$partner.title}> at
//Specify the slider's images
var leftrightslide=new Array()
var 
finalslide=''
<{foreach key=key item=partner from=$block.partners}>
    
leftrightslide[<{$key}>]='<{$partner.urllink}><img style="vertical-align:middle;"src="<{$partner.image}>" alt="<{$partner.title}>" border=1><br><{$partner.title}><br></a>'
 
<{/foreach}>


Resized Image


if i refer to this section, the layout is defined by <table> and <td> is it got something to do with it? ive tried to change it to <ul> and <li>

if (iedom||document.layers){ 
with (document){ 
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>'
if (
iedom){ 
write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">'
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">'
write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>'
write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>'
write('</div></div>'

else if (
document.layers){ 
write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>'
write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>'
write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('</ilayer>'

document.write('</td></table>'

}



5
andee
Re: how to hack smart parner scrolling partner block?
  • 2009/12/19 17:55

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


hi culex.

ive tried that before. but the image and name will be listed downways instead of sideways.

example:

(partner image1)
(partner name1)

(partner image2)
(partner name2)

and so on..

i want it to be something like this

(partner image1) (partner image2) (partner image3)
(partner name1) (partner name2) (partner name3)


i wish i could show u the result but it still on my localhost, its not uploaded yet

i wonder if it got to do with <nobr> tag in
var copyspeed=slidespeed
leftrightslide
='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
var 
actualwidth=''
var cross_slidens_slide



6
andee
how to hack smart parner scrolling partner block?
  • 2009/12/19 16:46

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


hi there. im using SmartPartner V.2 and XOOPS 2.4.0

i want to hack the scrolling partner block so it can show not only the partners logo but the partners name as well.

u can see the example here
http://smartfactory.ca/

theres a block displaying a scrolling partners logo. but i want to display the partners name under that logo.

heres the code of the scrolling_partner.html

<div style="text-align: center;">
<
script type="text/javascript">




//Specify the slider's width (in pixels)
var sliderwidth="<{$block.width}>px"
//Specify the slider's height
var sliderheight="<{$block.height}>px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=<{$block.speed}>
//configure background color:
slidebgcolor="#<{$block.background}>"

//Specify the slider's images
var leftrightslide=new Array()
var 
finalslide=''
<{foreach key=key item=partner from=$block.partners}>
    
leftrightslide[<{$key}>]='<{$partner.urllink}><img style="vertical-align:middle;"src="<{$partner.image}>" alt="<{$partner.title}>" border=1></a>'
 
<{/foreach}>


//Specify gap between each image (use HTML):
var imagegap="&nbsp; &nbsp;&nbsp;"

//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=<{$block.space}>


////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeed=slidespeed
leftrightslide
='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
var 
actualwidth=''
var cross_slidens_slide

function fillup(){
if (
iedom){
cross_slide=document.getElementByIddocument.getElementById("test2") : document.all.test2
cross_slide2
=document.getElementByIddocument.getElementById("test3") : document.all.test3
cross_slide
.innerHTML=cross_slide2.innerHTML=leftrightslide
actualwidth
=document.allcross_slide.offsetWidth document.getElementById("temp").offsetWidth
cross_slide2
.style.left=actualwidth+slideshowgap+"px"
}
else if (
document.layers){
ns_slide=document.ns_slidemenu.document.ns_slidemenu2
ns_slide2
=document.ns_slidemenu.document.ns_slidemenu3
ns_slide
.document.write(leftrightslide)
ns_slide.document.close()
actualwidth=ns_slide.document.width
ns_slide2
.left=actualwidth+slideshowgap
ns_slide2
.document.write(leftrightslide)
ns_slide2.document.close()
}
lefttime=setInterval("slideleft()",30)
}
window.onload=fillup

function slideleft(){
if (
iedom){
if (
parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
else
cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"

if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
else
cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"

}
else if (
document.layers){
if (
ns_slide.left>(actualwidth*(-1)+8))
ns_slide.left-=copyspeed
else
ns_slide.left=ns_slide2.left+actualwidth+slideshowgap

if (ns_slide2.left>(actualwidth*(-1)+8))
ns_slide2.left-=copyspeed
else
ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
}
}


if (
iedom||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (
iedom){
write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed">')
write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
write('</div></div>')
}
else if (
document.layers){
write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>')
write('<layer name="ns_slidemenu2" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}
</
script>

</
div>



the partners image tag is
<{$partner.image}>
and the partners name tag is
<{$partner.title}>


thank you



7
andee
Re: module to display image and downloadable pdf
  • 2009/12/19 16:36

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


http://putrajayaoffshore.com/vessel/viewcat.php?cid=1

i turn it into a listings of ships



8
andee
Re: xoops contact module
  • 2009/12/7 16:59

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


@burning: thanks for the suggestions man

ghia, im afraid youre right. i use xform as burning suggested. but still i got this weird message

sendmailCan't send mail: Sender domain (yahoo.com) does not belong to user, please use your own domain X-Powered-By: PHP/5.2.6-1+lenny4 Content-Type:text/html; charset=UTF-8 Expires: Mon, 26 Jul 1997 05:00:00 GMT Cache-Control: private, no-cache Pragma: no-cache Content-Encoding: gzip Vary: Accept-Encoding ‹ìZ{sÚHÿ;þ¥Ê†ØHü±…m“õ«l¼Ù½*5HŒ-4Z=xÜ^>Ð}ûd×3#Û!Á®«º:'


i deleted this line in the class/contactclass.php (in line 31)
define("_CT_ERROR_BADEMAIL");


now i can sent the email even though i only type one character in the 'from email' form but still it cannot be sent if i type generic emails such as yahoo or gmail.

i use @yahoo.com in one of the email (department) recipient. and it can be sent as long the email from field have above conditions.

heres the sample of the received email if i just type a character in the 'from email' form :
andi3 submitted the following Information
Email a 
Address sf 
Company f 
Phone Number f 
Comments  sfdsfd


and heres the sample of the received email if i type an email with (fictitious name)@mydomain in the 'from email' form :
ebeh submitted the following Information:
Email ebeh@putrajayaoffshore.com
Address asf
Company sdfas
Phone Number sf
Comments sadfsdf



is it something to do with my hosting server configuration? coz i find this line at the s panel preference configuration:

Require From domain to client's domain(s)    (checkbox checked)
Additional allowable From domains (separate with comma) (textbox unfilled)



9
andee
xoops contact module
  • 2009/12/7 11:16

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


hi there,

im using XOOPS contact module v.1.6 (Author Modified by CreepingDeath - XOOPS@IBDeeming!) with XOOPS 2.4.0

the problem it seems that the email form field can only be filled with email name from my domain. ex: user@mydomain.com, only that way the email can be sent (even though that user name doesnt exist. as long it had @mydomain.com).

if i try other email such as me@yahoo.com ill get this mssg:
sendmailCan't send mail: Sender domain (yahoo.com) does not belong to user, please use your own domain X-Powered-By: PHP/5.2.6-1+lenny4 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Encoding: gzip Vary: Accept-Encoding Content-type: text/html ‹ŒSÁRÛ0½÷+¶âÀ¥¶ÈÀ¡“Øž)¦t€dÀ ô¨Øk[ [®´!Éßwå¤L˜¡ òamïÛ§§}«äëÙlšÿžŸCC ùýéÕåD$åÃñTʳü æ×W0Š wªóš´í”‘òüF€hˆú±”«Õ*^ÇÖÕ2¿•ëÀ5 Å»×ˆö*ã’J‘}IB&T%‡IA`‹ðÏR¿¤bj;ÂŽ¢|Ó£€bû• Â5ÉP:¢QÎ#¥÷ùEô]€|å+‡¾Ù#M`éLºSÞ/YÛ“Ú([U¾±ã¶Rw%®ã¾é÷h;Õb*jìÐ)²nòq6›ßm‘FwÏàФ"Q±$ÐŒ@|ŒTèVÕ(ù€Æa•ŠUTê%Ç>°“&ƒÙ<€á£a¶ƒÃ•îÐ'r x#ƒ6†€Hÿ4 ,¼Ðb©U*”1Ÿ’C ¶èeÿdåÀ$A—Ü™¸°å†C©_`@l7‹”Ñu7.¸Wè&°PÅsíì²+£ÂëÆpp~NYW¢‹ÈöcõkðÖè.†õš6XÑGy§ëæ-àÇ°^ KdÛw{ 00À˜ñ¦œð¬$ÍIvÞ³}@þkÜñ)“…ã¶äb6vɤnUîj.vônq ð€°ÒÆ@44*l(”g¥¶ ±·Þë…AîúÉ Ï.+`s êJË*:K –|HEº`7a¬*¿AoPy„Âh&OÔÖ÷ÃÏ]†Ã¬AÇûª,‘}°agûp-³¿ÿÿç]©gR


you can check my contact page at here

how can i solve this?

tq



10
andee
Re: module to display image and downloadable pdf
  • 2009/12/7 10:22

  • andee

  • Just popping in

  • Posts: 11

  • Since: 2008/8/8 8


problem solved. i use wf download but i have to severely hacked it though to get what i want. thanks :)




TopTop
(1) 2 »



Login

Who's Online

221 user(s) are online (149 user(s) are browsing Support Forums)


Members: 0


Guests: 221


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