Jump to content

thewooleymammoth

Members
  • Posts

    768
  • Joined

  • Last visited

    Never

Everything posted by thewooleymammoth

  1. doesnt matter now, did they give you slices or are you gonna try and do that?
  2. im saying i want it to not cascade through the ajax folder.
  3. I cant figure out/find any information on how to exclude prepends from a directory. I am using ajax and its prepending and appending my page to the ajax request. This is something i do not need. Can i add an .htaccess to /ajax/ folder to make it not be effected by the .htaccess in the original folder? If that doesnt make sense let me know.
  4. nevermind overflow: hidden works, and ill post the js code incase some one looking wants to do the same thing you need prototype and scriptaculous Effect.Scroll = Class.create(); Object.extend(Object.extend(Effect.Scroll.prototype, Effect.Base.prototype), { initialize: function(element) { this.element = $(element); var options = Object.extend({ x: 0, y: 0, mode: 'absolute' } , arguments[1] || {} ); this.start(options); }, setup: function() { if (this.options.continuous && !this.element._ext ) { this.element.cleanWhitespace(); this.element._ext=true; this.element.appendChild(this.element.firstChild); } this.originalLeft=this.element.scrollLeft; this.originalTop=this.element.scrollTop; if(this.options.mode == 'absolute') { this.options.x -= this.originalLeft; this.options.y -= this.originalTop; } else { } }, update: function(position) { this.element.scrollLeft = this.options.x * position + this.originalLeft; this.element.scrollTop = this.options.y * position + this.originalTop; } }); function moveTo(container, element){ Position.prepare(); container_y = Position.cumulativeOffset($(container))[1] element_y = Position.cumulativeOffset($(element))[1] new Effect.Scroll(container, {x:0, y:(element_y-container_y)}); return false; } you can see a demo of it working here: http://digitalart.ericwooley.com its on the images to the left. i originally got the code from here http://elia.wordpress.com/2007/01/18/overflow-smooth-scroll-with-scriptaculous/
  5. I want to use scriptaculous to create a scrolldown on mouse over feature. So i need the div to allow the scroll, however i dont want the actual bars. anyone know how to do this?
  6. I like it, did you really create that? That will be pretty hard to splice out if you dont have experince splicing for html.
  7. awesome thank you very much.
  8. k i figured out why, cause i was testing with the url /tom/2/ and since 2 isnt a a-z it wasnt working. My question now is, how do i get it to redirect to just /tom/ if there is no 2 that trails, do i just add the line over and over and over again? also im getting a strange occurance <IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine on #RewriteBase / RewriteRule ^(.*.)/$ index.php?page=$1 RewriteRule ^(.*.)/(.*.)/$ index.php?page=$1&v2=$2 RewriteRule ^(.*.)/(.*.)/(.*.)/$ index.php?page=$1&v2=$2&v2=$3 </IfModule> is my .htaccess foreach($_GET as $k=>$v) echo "$k - $v <br />"; is my relavent page code. When i just do the first url EX: /tom/ I get page - tom When i go to /tom/2/ i get page - index.php v2 - 2 which is really weird to me. Why is it switching from "tom" to "index.php"? Im still pretty new to this so this is very frustrating :*(
  9. So This works, RewriteEngine on RewriteBase / RewriteRule ^([a-z]+)/$ index.php?page=$1 [L] but this does not RewriteEngine on RewriteBase / RewriteRule ^([a-z]+)/([a-z]+)/$ index.php?page=$1&v2=$2 [L] can anyone help me figure out why?
  10. I dont need any help, but i wanted to know what different experts use to validate input. example: <?php $info = is_numeric($_GET['non_numeric_malicious_code']); if(filter_var($_GET['non_email_malicious_code'], FILTER_SANITIZE_EMAIL) $e_mail = $_GET['non_email_malicious_code']; ?> What do you use?
  11. isnt that dude on here with the red hair in brittain, adam something?
  12. I agree with your point but i think google is, what is bigger?
  13. i dont think you can just expect us to figure it out. Its facebooks code, it might not even be possible
  14. You have to have curl installed. CHeck with your server company http://php.net/manual/en/book.curl.php
  15. research get variables
  16. if you created a virtual server that ran php and had extremely limited installation of php... you could do it. But why? and it would probably be hacked eventually.
  17. you might be able to with js if you put the page in a frame, ubt i dont know for sure
  18. call us now on... seems kinda unprofessional also also, try "call toll free:"
  19. oh k, well hopefully its over.
  20. i went back and lookeda tyour flash thing, its actually pretty cool. I like it.
  21. firebug is awesome for debugging js, and http://w3schools.com/js/ (hopefully that link works) is a great place to start.
  22. what anti-virus do you use? thats not really a standardized virus name. It looks like it was a pdf-exploit though (one of the infamous one from before the patch for acrobat reader? ) weird name though.
  23. you have a javascript error required is not defined form.php()form.php (line 6) [break on this error] required.add('fullname', 'NOT_EMPTY'); (line 6)
  24. thee are javascript sliders out there that look just as good as the flash one you are using.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.