191
ajaxbr
Re: How to make web-snapshot for links?
  • 2004/4/12 21:08

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


You might want to checkhttp://www.danvine.com/icapture/ andhttp://www.danvine.com/iecapture/. I've suggested to the author to start thinking about ways to prevent abuse, cuz it's great. I was wating for his OK to start a thread about his free service, but since you asked first there you have it



192
ajaxbr
Re: site hacked, mysterius popup
  • 2004/4/12 1:34

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


Parafal, I don't get any popups on your site. Perhaps it's a local browser related issue, like some sort of adware hijacking? Can you install a different browser (really different, like Opera or Firefox, not MyIE or anything that will use IE's stuff)? Have you tried downloading and running Ad-Aware and/or Spybot SD?
Detalhe: seu site é muito legal

javier, how about you? Does any of the above apply to you?



193
ajaxbr
Re: Help to user profiles
  • 2004/4/10 20:02

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


You might want to check xcgal, an image gallery module.



194
ajaxbr
Re: Gisa se Apresentando
  • 2004/4/10 19:30

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


That would be
Quote:

Hi there my friends
Well, I hope someone translates this to English [because I can't express myself in it].
But I know someone is going to.

My name is Gislaine but you can call me Gisa.
I'm 23 years olf, from Brazil
I'm a member of XOOPS Brasil and XOOPS Brasil, I currently have a site, Canal Cronica, athttp://www.canal-cronica.com.br
It's a RPG and entertainment (anime, comics, movies, etc..) site
I'm new to XOOPS (two months, maybe less, working with it)
Well, I came here mostly to introduce myself to this community
I used to come here and lurk around
I intend visit here more often from now on
Kudos for the community
I invite everyone to visit my site and give feedback on my first XOOPS experience
See you
Kisses
note: here's a google translation, could Brazilian friends please translate it better?

in my broken Engrish
Welcome Gisa, nice to meet you, I've heard good things about you. Bola pra frente



195
ajaxbr
Re: dictionary modules
  • 2004/4/9 1:20

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


Bumpty

Just to let ppl know that I've updated that dictionaries stuff . Right here.



196
ajaxbr
Re: ModDev: PHPSESSID in URL
  • 2004/4/6 21:59

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


No permission to access area... anyway, I don't think I'd be able to get any more important info from there. I've tried to find relevant info posted here on xoops.org but couldn't understand what I got (search for sessions and you might catch something my non-programmer's eyes missed).

So my out of the blue advice would be "follow your script's execution path untill you find out how sessions get there". Not very helpful, is it?

I hope this bump brings someone skilled enough to help you.



197
ajaxbr
Re: Hacking Mydownloads.
  • 2004/4/6 18:37

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


For this specific bit of XOOPS output, you should edit /modules/mydownloads/templates/mydownloads_download.html then update the module in the admin panel (simply modifying the .html file won't do the trick).

If this doesn't solve it, please report back and we shall rip MyDownloads's guts until it behaves just like you tell it to

As a bit of useless advice, you shouldn't hack php files for this: I guess it won't do any harm, but you'll have a harder time upgrading when (if?) you have to.



198
ajaxbr
Re: module required
  • 2004/4/5 17:56

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


Hi there.
I'm currently hacking the MyDownloads module to make it a books module... ratings, comments, categories, suggest modification, sort orders, what's popular block, all these are already built in the normal version, I'm just creating some new fields and this kind of small stuff. If you could please take a look at the normal module's features and tell me whatever you need that isn't there, I'd try to put it in my version. Don't expect much, I'm no real coder, but perhaps what you need is just there



199
ajaxbr
Re: Do these modules exist, or should I start coding?
  • 2004/4/5 13:01

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


Regarding the MS Access task, I'd suggest that you create static html reports, format them to your liking and post them using of the the content wrappers that people will suggest for your 2nd question (I use TinyContent myself). Dynamically linking your valuable MS database to your website sounds like a no-no for me .



200
ajaxbr
Re: Mydownloads submit, remove the http:// ? i tried all.
  • 2004/3/23 18:48

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


Hi there, javier.

I'm playing a bit with MyDownloads these days and I might have a solution for your problem.

In /modules/mydownloads/submit.php and /modules/mydownloads/admin/index.php you'll find that XOOPS uses the "formatURL()" function to treat the url (but not the "homepage") field of a submited download. This function, which resides in /include/functions.php, trims extra spaces and adds "http://" to its target strings (only when it doesn't start with "ftp://", "https://", etc).

So you'd have two choices to solve your problem.

1) You'll solve this pretty neatly by editing both submit.php and admin/index.php, replacing
$url $myts->makeTboxData4Save(formatURL($url));
with
$url $myts->makeTboxData4Save($url);
for submit.php and doing it twice in /admin/index.php, where you should replace
$homepage $myts->makeTboxData4Save(formatURL($HTTP_POST_VARS["homepage"]));
WITH
$homepage $myts->makeTboxData4Save($HTTP_POST_VARS["homepage"]);


AND

$url $myts->makeTboxData4Save(formatURL($HTTP_POST_VARS["url"]));

WITH
$url $myts->makeTboxData4Save($HTTP_POST_VARS["url"]);


This obviously makes it much easier to have invalid urls of a kind, namely those with extra spaces, and also makes these fields more versatile, which can be good (mailto: and relative links) or bad (some sort of exploit?).

2) The other way to solve this would be by editing the formatURL() code in functions.php, but that would probably break things beyond our wildest dreams.




TopTop
« 1 ... 17 18 19 (20) 21 22 23 ... 26 »



Login

Who's Online

147 user(s) are online (79 user(s) are browsing Support Forums)


Members: 0


Guests: 147


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