local

sIFR: visible on local, not remote

When working on a static mirror of the site, the sIFR is rendered correctly using Dreamweaver's live view. When viewing site locally in a browser, the regular text is printed, as expected. However, when uploaded and viewed from a remote web server, neither is visible. I am using version 3 of sIFR, and the site can be viewed here, with a...

In VIM: How to highlight "local variables" in a "C" file

I have highlighted all Symbols by using tags file & highlight option. But I could not able to highlight my local variables. I have an idea, that is, VIM already supports autocompletion of keywords for a current file, it does autocompletion of my local variable, so, if I get a list of keywords for my current file then I will highlight t...

Comparing local and remote file size via Net::FTP in Rails

I wrote a sync script to upload a local file if it does not exist on the ftp server. I want to make it more robust by ensuring that the file size on each match. This will allow the script to correct the file if it was interrupted during an upload. What is the best way to get the file size for both the remote and local files. I am usin...

Making a local package installer

I'm going to be building a package manager and installer for my home network, and I'm unsure of the technologies i should use. I was thinking WPF for the interface and SQL for actually storing package data, as well as some sort of scripting for configurable installation. However, i don't know if I'm missing anything. In short, here are m...

Static local in class member function survives class reallocation?

class Foo { public: void bar(); }; void Foo::bar() { static int n = 0; printf("%d\n", n++); } int main(int argc, char **argv) { Foo *f = new Foo(); f->bar(); delete f; f = new Foo(); f->bar(); delete f; return 0; } Does n reset to 0 after delete'ing and new'ing the class over again? Or is n e...

Local functions in Python

In the following Python code, I get an UnboundLocalError. As I understand it, local functions share the local variables of the containing function, but this hardly seems to be the case here. I recognise that a is an immutable value in this context, but that should not be a problem. def outer(): a = 0 def inner(): a += 1 ...

Making a distribultable standalone program in PHP

Hello, I've decided to code some applications in PHP that are supposed to run offline in the user's machine. However, I can't seem to find an user-friendly install wizard to create a local server in where the script will run. Any ideas? PS: Here's an example of what I want: http://www.nolapro.com ...

How do I get linux server to use local PHP.ini in a shared environment?

I'm on shared server environment (Dreamhost.com uses Linux/Debian). I followed their instructions @ http://wiki.dreamhost.com/Advanced%5FPHP%5Fconfiguration on setting up a local PHP5 instance on my user account so that I could use APC (php5 accelerator) A couple of caveats is that I dont have php5 installed on the root directory "/ho...

Recommend me a quick setup local http/php/mysql server for development (WIndows)

I need a quick and dirty http server to use for local application development, that supports php and mysql. Xampp will not work for me (64 bit Win 7), so Im looking for something similar. ...

JNDI lookup of EJB3 inside an EAR file on Glassfish

I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unmanaged POJO, also contained in the EAR (and in this case in the same JAR as the EJBs as well). I tried following the Glassfish EJB FAQ, but I keep on receiving ...

AIR(Flex) local socket connection

When connecting from a local AIR/Flex application to a local application (c++) using sockets do you still need a socket policy file? If you do, is there an easy way to load the policy file without sending the policy from the local application you are trying to connect to? side note: I am writing both applications. ...

Android: How to communicate and exchange objects with a Local Service

So far I've a class for a simple local service. What I want to do is to send requests to this local service from different activies in my application. Depending on the parameters of these requests the service will connect via HttpClient to a webserver and receive a JSONObject and return it to the activity. All the HTTP communication is a...

Copying live sites to local

Recently I've been getting more and more into web development and as such have a few questions. I have a few websites that are on a production LAMP server and I've been trying to copy them to my local computer running xampp 1.7.1 on XP Pro. The problem I've been having is mostly path issues. I mainly develop for wordpress, joomla, magent...

Transferring DNNdatabase from local to production

Hi, I creaed one dnn applicaiton, and the source is moved to production and also same as the database is also moved to production server, but i am getting the dotnetnuke error. I think there is a database not inserted correctly. Can you help me how to transfer the database from local to production.. ...

Correct command to retrieve remote mercurial updates pushed from my second machine

I'm new to Mercurial. I initialized a Mercurial project on Machine A, committed my changes and uploaded them to a remote repository. Then I cloned that repository on Machine B, committed some additional changes and uploaded them to the same remote repository. In both cases, I uploaded the changes with the same command: hg push https...

Python | How to make local variable global, after script execution

Here is the code. What I need to do is find a way to make 'i' global so that upon repeated executions the value of 'i' will increment by 1 instead of being reset to 0 everytime. The code in 'main' is from another script that I embed in 'main' in order to have the trace function work. This is all being done from Java. from __future__ imp...

Lookup Local EJB from Glassfish LifeCycle module

I can look up the remote interface of an EJB3 from a Glassfish 2.1 using the global jndi name. However, as I understand, if this were not a LC module but an EJB (Servlet), I would have an ejb-local-ref entry in its ejb-jar.xml (web.xml). Is there a place to define Local references for an LC module? Thanks! ...

Loop doesnt work without alert() in ajax readystate()

Problem description: Hello ! My XMLHTTPRequest object, when ready, does a couple of things, as in, the responseText which i receive, is split up, and sent as a parameter to myFunction() Now, i need to call myFunction() 'n' number of times, with substrings of the response text as parameters. This Works: myAjaxObj.onreadystatechange=fun...

Report View - Could not load file or assembly ...

I use VS2008 to develop a web application. When I open a local report, it's report datasource does not show. I click the report->DataSource to see it's datasource, but it appear an error message: "Could not load file or assembly ### " But the file or assembly does exist. How can I solve this problem? I searched everywhere and didnt...

PHP server on local machine?

Hello, I'm trying to build a php site and I'm wanting to test my php files without uploading them to my host. Basically testing them on my own machine before I upload them. This question has probably been asked a million times, but I can't seem to find a thread on it. Any help would be appreciated. Thanks in advance Rich ...