In interpreter languages like PHP and Ruby, "require" is a statement that tells the interpreter to include a certain source-file at that position where the "require" statement has been placed.

learn more… | top users | synonyms

0
votes
2answers
10 views

include file on file included on file with relative path: working only sometimes

My site structure is like this. HTDOCS folder: /WEB/mysite/htdocs/ ADMIN folder: /WEB/mysite/htdocs/admin/ EDIT ADMIN folder: /WEB/mysite/htdocs/admin/edit HTACCESS protected folder: ...
1
vote
0answers
48 views

Ruby can't even require standard libraries from within vim

In irb and when using ruby everything works. require 'pathname' ==> True. In a vimscript file this fails however ruby << EOF print 5 require 'pathname' print 6 fails however with ...
0
votes
0answers
25 views

node.js require() do not behave as expected when using linked packages

I currently have a problem happening at runtime with node.js and the require() function. The main issue here is when calling, for example, require('mongoose'); from different packages. It is ...
0
votes
1answer
28 views

Require 'cannot load such file'. Pushed my directory into the $: array

I solved my problem through require_relative require './whateverfileiplannedtorequire' load 'whateverfileiplannedtorequire' but I am trying to get require to work without the ./ at the beginning as ...
0
votes
1answer
10 views

require().server. Require with a dot in the statement

var WebSocketServer = require('websocket').server; I came across this in some NodeJS code and I don't believe I have ever seen a require with a dot in the statement like this ever ...
0
votes
1answer
27 views

Using Angular with breeze and require

i am trying to use angular with breeze and requireJS how ever i am getting error of Uncaught Error: Module name "ko" has not been loaded yet for context: _. Use require([]) i have configured ...
0
votes
2answers
18 views

node.js require cannot find custom module

Here is the project structure: / app.js package.json /node_modules /app config.json /frontend assets and html tpls /modules couch.js raeume.js users.js I ...
0
votes
1answer
11 views

Heroku Cannot Require file

My Sinatra/Rack application has the following structure -app routes.rb --pages courses_page.rb this is my config.ru require 'rubygems' require 'bundler/setup' Bundler.require require ...
0
votes
1answer
32 views

Browserify with require('fs')

I was trying to use browserify on a file that uses the fs object. When I browserify it, the call to require('fs') doesn't get transformed and require returns {}. Is there any workaround for this? I've ...
0
votes
0answers
34 views

how to require libaries using Docpad Sass

I have been following the instructions here: docpad-plugin-sass And I have search all over for the answer even found someone requireing susy but their problem was with needing to update susy. ...
-1
votes
1answer
27 views

Why is a syntactic error in a subfile designed to be rescued by `require`?

As asked by liron in this question, a syntax error in a require-d subfile is rescued by the method require and is raised as an error of require. Why is it designed like this? What is the benefit of ...
0
votes
2answers
29 views

requiring php config classes, but file not found

In my opinion I'm requiring all necessary files but I keep getting the error that one file is not found. All files are in the same folder. This is my code for zConfig.php: <?php class zConfig { ...
0
votes
0answers
44 views

Fuelux datagrid on Backbone js NAN error with no data

I'm using Backbone, Require, Fuelux, Bootstrap for my single page web app and I'm trying to get Fuel UX datagrid to work with this and I can see that correct object sets are returned which is fine but ...
1
vote
0answers
35 views

php: proccesing form from another server [closed]

I am developing a web-app for the company I work at. It’s located at www.myapp.com. It’s mainly for internal use. BUT… there is one thing customers need to consult, so this functionality has to be ...
3
votes
0answers
66 views

How to exclude certain requireJS files from uglifying/optimizing

I have a working requirejs project that is using grunt for building and deployment. If using no optimization at all, the build is working without problems and I get one big js file to deploy it on ...
0
votes
1answer
70 views

Windows Rails Server error (mysql, bundler, railties)

I'm just starting a project with ruby (on Windows) and when I run 'rails server' I have this ince ,essage : C:\Sites\rails_projects\first_app>rails server ...
0
votes
1answer
58 views

Uncaught ReferenceError: require is not defined, I am using dojo1.7.2

I am using dojo1.7.2 I got firebug error: Uncaught ReferenceError: require is not defined Here is my piece of code: <script type="text/javascript" src="../js/release/dojo/dojo.js" ...
1
vote
1answer
52 views

How do I require booleans in Play forms?

I'm using Play 2.1.0. I'm trying create an Action that accepts a POST request and requires that a boolean be required in the request body. What's happening now is that even if I don't supply the param ...
2
votes
2answers
33 views

Classes - require conflict in constructor

I'm coding a Wordpress plugin and I'm not sure regarding the function name conflict.. I have a file named test_handling.php which contains the following content : function testing() { echo 'test'; } ...
0
votes
0answers
18 views

Jruby classCastexception seems to be an issue in the platform (not my code)

I have loaded jruby on a new ec2 instance and it is not happy. In a ruby script that is working on another ec2 instance (with same o/s version and jruby version) but fails on this newly configured ...
1
vote
2answers
57 views

Order of resolution with nodejs require module

Suppose I have all of foo.js, foo.coffee, and foo.jsonin the same directory, and I say require './foo' from another (coffeescript) file in that location, what rule governs which one will be loaded? ...
0
votes
2answers
38 views

LoadError on require './primes.rb' in terminal

When I do require './primes.rb' in irb I get this: 1.9.3-p392 :004 > require './primes.rb' LoadError: cannot load such file -- ./primes.rb from ...
0
votes
3answers
50 views

ruby require_relative gives LoadError: cannot infer basepath

I am currently in Dropbox/96_2013/work/ror/dmc/dmStaffing/QA/selenium_server_wyatt/spec/2day/units/ I can go into irb and requyire a file but it's a really long require... require ...
0
votes
2answers
31 views

Ruby path makes require impossible

I am a beginner in ruby, and i have a problem using my ruby script, that work on my computer, on a server. My problem is that i don't become to require 'rack/cors' and require 'grape' On my computer ...
0
votes
1answer
21 views

requirejs always triggers “onload” in IE, even if the file is not there

Following code: <!doctype html> <html> <head> <script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js"></script> ...
0
votes
1answer
39 views

PHP: what happens if required script stops because of timeout

Scenario: a php script with som pre-code, a require xxxx.php; and some postcode. Wanting and believing that because of using require and not include, the script will stop at the "require" statement if ...
0
votes
1answer
14 views

How do I determine the require order for my gem?

I'm working on a gem that for now just requires a handful of other gems. The problem I'm running into is that the mutant gem needs to be required after the other two, but when I add my gem to a ...
1
vote
1answer
29 views

Making an executable from ruby files using Ocra, LoadError?

I'm trying to make an executable from a couple ruby files on Windows, so I installed Ocra. I thought I understood the process of how Ocra works, but can't seem to get the executable working correctly. ...
0
votes
1answer
67 views

Load Javascript like PHP's include

Today im asking for something, that i cant believe to find on the web. Im trying to make a javascript function, which allows me to give a filename/pathname as a parameter and the function returns ...
0
votes
2answers
44 views

Uninitialized constant error in Ruby scripts

I am modeling a web application where you can get to another application page by clicking some link. I decided to do something like this: file C:/Sandbox/common_page.rb: require_relative "./pageA" ...
0
votes
0answers
54 views

How to use multiple locales using r.js and hbs.js

I have a project where I use require.js and hbs.js (require-handlebars-plugin), among others. Everything is working fine in my development environment, but after I optimized the project using r.js ...
1
vote
1answer
29 views

node cached export object is broken

I'm requiring an module that has already been required in another file, but when I get the object, many of it's keys are undefined. A bunch of the keys are there, but some are not, even after I call ...
1
vote
2answers
66 views

How to correctly modularize a node.js project?

I'm creating a node.js project following the class constructor pattern: function my_class(x,y){ this.x = x; this.y = y; } The starting point of the project is the main.js file. Any class of ...
0
votes
0answers
32 views

why does this require say declare ..: mixin #0 is unknown. Did you use dojo.require to pull it in?

first of all, i dont use the amd loader because its an old project which hasn't been converted yet. i require the following the old way and use the dojo ready function because of a few post i have ...
0
votes
1answer
43 views

How to migrate from old dojo require to the new dojo AMD loader?

i want to migrate from the old dojo.require loader to the new AMD loader so i changed this: dojo.require("dojo._base.xhr"); dojo.require("dojox.mobile.parser"); ...
3
votes
0answers
39 views

Gem does not load over config.ru

I have my own gem "RocketRuby". I loaded it in irb and it worked loading it. In earlyer versions I had it also in my config.ru and it worked. Now I compiled it again and installed it again. Then ...
0
votes
0answers
21 views

Where does Dojo store required modules? Need to investigate if something is loaded

I was wondering if anyone knew how I could get a reference to the actual array or associative array or whatever data structure stores the loaded modules in Dojo. What I am doing is this: I work in a ...
0
votes
1answer
35 views

How do I require a ruby file from child directory

I have the following structure tests specific tests first_test.rb more tests second_test.rb test_helper.rb Now I am trying to require test_helper in both first_test and second_test. ...
0
votes
1answer
26 views

loading a dictionary of files as if it were 1 file, in requireJS

I`m trying to write a game engine in javascript, what i would like to do is load all the engine code before the game code can be executed. Now, that's only the first step, because what i would also ...
-1
votes
1answer
51 views

Jquery extention not working with multiple PHP require

In my main.php I have something like this. <?php require 'require/display1.php';?> <?php require 'require/display2.php';?> <?php require 'require/display3.php';?> Each PHP ...
0
votes
1answer
48 views

PHP: A working file doesn't find other files after inclusion?

first of all: Sorry for the title. If you can make something up to replace it, please do it since I just really didn't know how to name my problem in the first place. That said, there could very ...
0
votes
2answers
33 views

Clojure: Require png-extract doesnt work with []'s?

Why does this work: (ns image-test.core (:gen-class) (:require (png-extract) [clojure.string :as string])) but this fails: (ns image-test.core (:gen-class) ...
1
vote
0answers
38 views

When using the requireJS optimizer, what's the advantages of buildlayered javascript?

I'm trying my first attempts with the requireJs optimizer r.js (here) to prepare an application for production. I can get everything to work and can uglify all of my js into a single main.js file, ...
0
votes
2answers
40 views

Methods on passing code from one php page to another

I'm sorry if this is a simple question, I'm fairly new to php! Anyhow, my issue is the following: I have a few lines of code on one page, in which I use mysql, html and php, and I would like to pass ...
0
votes
1answer
38 views

Lua module invocation with require returns boolean

i have wrote the next lua module: --mod.lua local M = {} function M.bar() print "bar" end return M And i'm trying to use it on another lua script as: --main.lua ...
1
vote
1answer
55 views

Trying to include Rails helper library in module

I have a module called Sms that I'm defining in lib/sms.rb. Within it, I have a method called Sms.chunk that uses the method word_wrap. This is part of the TextHelper library, so I am including it at ...
1
vote
2answers
48 views

Node.js require fail when outside of app.js

I am trying to load a custom module ./routes/exchange.js from another module ./routes/socketRouter.js. It throws module.js:340 throw err; ^ Error: Cannot find module './routes/exchange' The ...
0
votes
1answer
83 views

Requiring Java Classes in LuaJ

I'm attempting to make a game library in Java that uses Lua for the scripts. The real issue appears when I try to require a Java class (that is inside of a jar), and whenever I try to do so, I get an ...
0
votes
2answers
35 views

PHP: How to anchor a variable within a page

I'm trying to make a simple calculation form using PHP. A page will contain textfileds where users would input numerical values and by hitting a button, an mathematical operation will be performed and ...
1
vote
2answers
64 views

Since r.js compiles AMD modules into one big file, where is the “asynchronous” in Asynchronous Module Definition?

I'm finding it a little difficult to understand where the asynchronous aspect of AMD architecture exists once you have used something like r.js to bundle up all your modules into one big file. What ...

1 2 3 4 5 15