Questions tagged [loadmodule]

30 questions
4
votes
3 answers

Kernel module with multiple files - unknown symbol

Hello stackoverflowers :) For the last several hours I've been trying to compile+load a multiple file module. The compilation emits a strange warning and the module fails to load. Here are the module, Makefile, compilation output and…
Bugum Burum
  • 171
  • 2
  • 8
3
votes
0 answers

How to debug Symbol not found: ___exp10

I am compiling my own web server using the following : curl-7.43.0 httpd-2.4.12 jpegsrc.v9 libpng-1.6.18 libxml2-2.9.2 pcre-8.37 php-5.4.43 I have no problem on MacOS 10.9 but I encounter this error on MacOS 10.8 : httpd: Syntax error on line 18…
arnaud
  • 113
  • 2
  • 2
  • 8
3
votes
3 answers

Apache: Inline PHP not working on Linux

I am having trouble getting my PHP to work for my Apache server. I am running Oracle Linux, and used yum install php + yum install httpd to get my PHP and Apache. I have scoured the internet and done a couple of things: Firstly, I have gone into…
Zhouster
  • 746
  • 3
  • 13
  • 23
2
votes
5 answers

how do you statically find dynamically loaded modules

How does one get (finds the location of) the dynamically imported modules from a python script ? so, python from my understanding can dynamically (at run time) load modules. Be it using _import_(module_name), or using the exec "from x import y",…
John11
  • 437
  • 1
  • 6
  • 16
2
votes
0 answers

Windows DLL user space calling process

I'm trying to understand how Windows recursively loads DLLs in user space. Tracing kernel32.ReadProcessMemory as an example: The first step for ReadProcessMemory is the IAT of kernel32: 00007FF901F6AFA0 | 48:FF25 21D20500 | jmp qword ptr…
user1220022
  • 11,167
  • 19
  • 41
  • 57
2
votes
2 answers

Angular Karma Jasmine forEach@ Error

I'm trying to test an interceptor with Karma and Jasmine, but having unexpected errors. I was following this code: http://jbavari.github.io/blog/2014/06/20/testing-interceptor-headers-in-angularjs/ Code: angular .module('xos.helpers',[ …
teone
  • 2,153
  • 3
  • 25
  • 49
1
vote
1 answer

Dynamically calling a NODLL cobol program from a DLL cobol program on z/OS

On the mainframe using Enterprise Cobol for z/OS, is it possible to dynamically CALL a Cobol Dyamic link library (DLL) program from a cobol program that has been compiled with NODLL?
Kb.
  • 7,240
  • 13
  • 56
  • 75
1
vote
1 answer

I have the start address of a loaded DLL, how can I discover and call its exports?

I'm writing an add-in that runs in-process. I'm reliably able to discover the memory address of a DLL that is already loaded in that process. The memory at the offset clearly shows an "MZ" DOS header and a "PE" header. Later, there appears to be the…
ThunderFrame
  • 9,352
  • 2
  • 29
  • 60
1
vote
2 answers

Loading a module from /usr/lib/modules into Apache

I follows this guide http://modwsgi.readthedocs.io/en/develop/user-guides/quick-installation-guide.html. And have gotten to the point where I have to load the module, but when I run the LoadModule command I get: LoadModule: command not found I am…
Joshua Blevins
  • 689
  • 1
  • 10
  • 27
1
vote
1 answer

Apache 2.4 with php5

Hi I am trying to run php5 with apache 2.4 Earlier i have tested with php7 with apache 2.4 working fine on windows server 2012. But when i switched from php7 to php5 a load module error arise. Cannot start Apache (c:/wamp/php5/php5apache2_4.dll into…
Er Ajit Kumar
  • 113
  • 1
  • 2
  • 8
1
vote
1 answer

how can I load a joomla module as a link?

this is my problem... I have some of images and links that I want to load different joomla modules when user click on them. mean each hyperlink can load another module|position thanks all
Aida
  • 11
  • 3
1
vote
1 answer

Having problems loading PHP Driver for SQL Server 2008 Express

I am trying to make use of the PHP driver for MS SQL Server version 1.0. I have everything setup but I think I am having trouble loading up the extension php_sqlsrv_ts.dll. I have gone to the command line and try…
Abs
  • 56,052
  • 101
  • 275
  • 409
1
vote
3 answers

Loading a Joomla 2.5 module into another module

I've seen the question Loading a module in another module in Joomla, but that was about Joomla 1.5 I have exactly the same question about Joomla 2.5 Is there an official way to do so?
Mohammad Naji
  • 5,372
  • 10
  • 54
  • 79
0
votes
0 answers

clarification and support on 'ERR_DLOPEN_FAILED'

I'm new with code and apps either launching or trial. Recently I've been trying to set up a node on my mac terminal and experienced the below problems.... ironfish…
0
votes
0 answers

Can I import a function dynamically from different .py files based a condition through command "from import module"

Scenario: I have a function which is going to instantiated in different test_.py files EX: test_name1.py test_name2.py test_name3.py instance name is tools.py and will be created in with same name in all of the above test files. now I would need…
1
2