Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: clemcrock
  • Order by date
  1. clemcrock

    Simple app - problems w/ routes

    In both my local and remote environment.rb file I have the rails version set as this: RAILS_GEM_VERSION = '1.2.6' Unfortunately, for our main work project, we are running our app on a 1.2.6 rails version so it's safer to run all other apps on this version as well on localhost. I was under...
  2. clemcrock

    Simple app - problems w/ routes

    This is my SayController code: class SayController < ApplicationController def hello end end
  3. clemcrock

    Simple app - problems w/ routes

    Now after a bit of tech support I now get this when I go to: http://erichermann.com/say/hello Code: Expected /home/c73mr0ck/railsapp/app/controllers/say_controller.rb to define SayController /usr/local/lib/ruby/gems/1.8/gems/activesupport-1.4.4/lib/active_support/dependencies.rb:249:in...
  4. clemcrock

    Simple app - problems w/ routes

    I have a hello.rhtml view in there. What in tarnations is a .erb file?
  5. clemcrock

    Simple app - problems w/ routes

    Hello, I'm trying to get the backbone of a rails project up and running on localhost and also on a rails playground hosted site. On localhost the app runs great and I can call my say/hello w/ either: http://localhost:3000/controller/say/hello or http://localhost:3000/say/hello, but when I...
  6. clemcrock

    Nested Shapes vs. Nested Sprites in AS 3.0

    Nested Shapes vs. Nested Sprites in AS 3.0 Hello, I'm trying to learn Actionscript 3.0 from the ground up. I am trying to figure out why I can't create nested shape objects in the manner that's demonstrated below w/ Sprite objects. var container:Shape = new Shape(); When I...
  7. clemcrock

    Nested Shapes vs. Nested Sprites in AS 3.0

    Hello, I'm trying to learn Actionscript 3.0 from the ground up. I am trying to figure out why I can't create nested shape objects in the manner that's demonstrated below w/ Sprite objects. var container:Shape = new Shape(); When I change the below from a Sprite to a Shape I get...
  8. clemcrock

    Problem migrating onClipEnter frame and angle property in as 3.0

    I have solved the problem of passing parameters to the addEventListener function it's not truly passing params but it gives me the ability to reference the object that called the eventListener function. function mover(event:Object) { var clip_name:Object = event.currentTarget; // this gives me...
  9. clemcrock

    Problem migrating onClipEnter frame and angle property in as 3.0

    I'm a bit closer w/ the on enter frame which looks like this: for(var i:Number = 0; i < numberOfItems; i++) { var t:Object = attach_movie("icon", "icon"+i, {x:10, y:10} ); reflect_this_object(t); t.angle = i * ((Math.PI*2)/numberOfItems); t.addEventListener(Event.ENTER_FRAME, mover)...
  10. clemcrock

    Problem migrating onClipEnter frame and angle property in as 3.0

    Hello, I'm trying to migrate a simple actionscript 2.0 app to 3.0 and I'm having some problems finding equivelents of the onEnterFrame methods and the angle property in as 3.0. In this section, I need to have the t movieClip variable onEnterFrame method call the mover function: for(var...
  11. clemcrock

    Ordering by date in a hash array

    Ordering by date in a hash arrayHello, I'm trying to find a solution for ordering a hash array by dates. The dates are coming from a feed and are in this form: Wed, 01 Nov 2006 13:52:46 GM Does anyone know of any flash date extensions that can use timestamps? Thanks, Clem C
  12. clemcrock

    CreateTextField not showing - HELP!

    It's weird - the only thing that will show up is the text border and I gave the text a color and the only thing that shows up is the border. I also tried the setNewTextFormat idea instead setTextFormat.
  13. clemcrock

    CreateTextField not showing - HELP!

    Hello, I'm creating a series of movie clips that are attached from the library. After the movie clip is attached, I want to create some text on that movie clip. When I try this, I can't see any of the text that is created When I print the movie clip contents it shows that the the mytext...
  14. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    Here's my ServerRoot: ServerRoot "/etc/httpd-2.2.8/" The only ErrorLog I have defined is: <VirtualHost *:80> DocumentRoot "/www/vhosts/ehermann" ServerName www.ehermann.com ServerAlias www.e-hermann.com ErrorLog logs/error_log <Directory "/www/vhosts/ehermann">...
  15. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    I'm sure I have only one apache process running from the information ps -ef | grep httpd returns. I also know the httpd.conf file I'm editing is the one that causes the errors when I do a apachect start and throws errors I purposely create. Here's the output of /usr/sbin/httpd -V: -D...
  16. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    How do I check to see right httpd is running and the right httpd.conf is referenced?
  17. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    It appears that the logs have stopped being written to about 3 days ago for some reason. Here's the last entry: [Tue Jan 15 05:34:01 2008] [error] [client 213.203.223.118] File does not exist: /usr/share/apache2/default-site/htdocs/stats [Fri Jan 18 00:35:54 2008] [notice] SIGHUP received...
  18. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    I put a simple index.html in the /www/vhosts/ehermann directory and gave it these permissions: -rwxrwxr-x 1 root root 111 Feb 13 06:35 index.html still getting the 404
  19. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    getting closer - now the server starts but now I get a 404 when I visit the IP Here's my setup so far: ServerName www.ehermann.com NameVirtualHost *:80 <VirtualHost *:80> DocumentRoot "/www/vhosts/ehermann" ServerName www.ehermann.com ServerAlias www.e-hermann.com ErrorLog...
  20. clemcrock

    Starting apache 2.2.8 server = no errors but does nothing

    tried that and got the same results

Part and Inventory Search

Back
Top