Questions tagged [loadmodule]
30 questions
0
votes
1 answer
debugging vxworks loadModule failure
I have a VxWorks Image Project project without a File-System on MPC5200B, using DIAB tool-chain.
I need to dynamically load a module from flash.
I allocated memory on my stack char myTemporaryModuleData[MAX_MODULE_SIZE]
and filled it with the module…

Tomer W
- 3,395
- 2
- 29
- 44
0
votes
0 answers
Remove a "deadend" Alias from a PDS
I have a Load Module PDS (RECFM=U) which I have to convert to a Program Object PDSE. There is a member "xxxx" in the PDS which is ALIAS-OF member "yyyy" but "yyyy" does not exist in the PDS. When I try to copy the PDS to a PDSE this member is not…

Danny Amir
- 11
- 4
0
votes
1 answer
How do I pass arguments while loading any modules in typescript?
I have a module in typescript which contains the following code.
export class Account {
constructor(app: any) {
this.initialize(app);
}
private initialize(app: any) {
app.get("/login", (req: any, res: any) => {
res.render("index",…

Deepak
- 1,510
- 1
- 14
- 27
0
votes
2 answers
Can modules be loaded and not show up on a phpinfo() page?
There is a phpinfo() page in our test environment that displays a heading Loaded Modules and shows all of the modules that are loaded. A duplicate phpinfo() page on the live site does not have a Loaded Modules section and some modules that handle…

B6431
- 317
- 1
- 4
- 13
0
votes
3 answers
How can I copy load module using rexx?
I want to copy a load module from one pds to another using REXX.

monkey
- 41
- 5
0
votes
1 answer
How to add modules into Apache (mod_dbd and mod_auth_dbd)
I have tried my best to see if I can add the modules mod_dbd and mod_auth_dbd into Apache but I can't seem to get them to work. I am not sure if I am doing this correct, inside the httpd.conf file I have this line:
LoadModule dbd_module…

dark_illusion_909099
- 1,067
- 2
- 21
- 41
0
votes
1 answer
Getting load module source library into program
is it possible to get the the path where the program was called from?
I call the program on z/Os like this
call 'MCOE.XXXXXXXX.C.LOAD(args)' 'hi there'
My intention is to get the MCOE.XXXXXXXX.C.LOAD dataset in called program without specifying this…

Petr Sedláček
- 25
- 3
0
votes
0 answers
Undefined symbol when load a module to the target
I got some errors when I try to load a lib to the target system with loadModule function.
Some symbols are undefined
Undefined symbol: __divdi3 (binding 1 type 0)
Undefined symbol: __floatdidf (binding 1 type 0)
Undefined symbol: recv…

Rgls
- 1
- 3
0
votes
0 answers
LuaInterface error loading module(Lua for Windows is OK)
While I DoFile:
Lua luaVM = new Lua();
luaVM.DoFile("test.lua");
This is the error I got.
An unhandled exception of type 'LuaInterface.LuaException' occurred in LuaInterface.dll
Additional information: error loading module 'mytestlib' from file…

Peng Zup
- 1
- 4
0
votes
1 answer
Joomla Load Module in Featured Article
What I use:
- Joomla 2.5
- gantry framework
Need:
I must place in my homepage a slideshow module inside the mainbody as a featured article.
What I did:
Installed a slideshow module and placed temporary inside gantry's maintop-a position to…

Stefano Minin
- 27
- 10
0
votes
1 answer
Assembly.Load causes AccessViolationException
using c# i'm trying to load a dll written in C++/Cli, i used the following command:
Assembly assembly = Assembly.Load(assemblyName);
previously it has worked with no issues and i'm not exactly sure what changed but today i started getting the…

hidra2000
- 11
- 1
0
votes
5 answers
How to use Joomlas {loadmodule}
Can somebody please provide an example how to use joomlas build in {loadmodule} feature to load a custom html module. According to the docs at http://docs.joomla.org/How_do_you_put_a_module_inside_an_article%3F
it should be something…

user2779473
- 131
- 4
- 9
0
votes
1 answer
Make an entire linkable when a module is loaded inside to it
My question relates to make an entire DIV linkable when a module is loaded inside to it (Joomla 2.5.latest).
I have 4 boxes side by side, all as below in my custom-css.
.box1 {
width: 22%;
height: 225px;
border-radius: 5%;
…
bgree
- 39
- 1
- 2
- 9
My question relates to make an entire DIV linkable when a module is loaded inside to it (Joomla 2.5.latest).
I have 4 boxes side by side, all as below in my custom-css.
.box1 {
width: 22%;
height: 225px;
border-radius: 5%;
…

bgree
- 39
- 1
- 2
- 9
0
votes
1 answer
WPF + PRISM - Cannot 'LoadModule' in separate thread
I have a WPF application in PRISM architecture.
I have a 'Login View' that is shown in the 'Main Region' when the app loads.
When the user presses 'Login' - I connect to a WCF service, authenticate the user, and get a list of roles for that user…

John Miner
- 893
- 1
- 15
- 32
-3
votes
0 answers
echo function does not work in server side php script when using php 8.1
When upgrading to php 8.1, the echo function does not work in server side script, such as:
echo $data;
?>
but it works on html file for display.
I already have the following configuration in the apache httpd conf file:
LoadModule php_module…

Robert Liu
- 1
- 1