Hello.
Best wishes for everybody.
I would like to put a widget on my kde desktop.
I want to show a list of town in a dropdownlistbox.
Then when I click on one town I want to start the internet explorer with a html file argument ( for every town there is a html file )
Or better :
In the widget include a small embeded html page which would be fed by the page content of the html file content.
I'm working on a Worklight project that downloads a zip file, unpacks it, and stores the files in the specific documents directory of the platform (in iOS that's NSDocumentDirectory, on Android I'm using getFilesDir()). The file consists of one HTML file and several images, located in a sub directory (media). Downloading and unzipping works fine on both platforms.
I have a fresh VPS installation from my provider (Windows 2008 R2, IIS 7.5).
The default web site works fine: http://5.9.251.167/
I created a new website, and binding for http://new.ianquigley.com
On that server and everywhere else that Domain maps to the IP address.
I'm setting my son up so he can manage his simple website by editing a file on dropbox.
My nginx config looks like this:---
server {
listen 80;
server_name name.com *.name.com;
location / {
proxy_pass https://dl.dropbox.com/u/12345678/index.html;
}
}
This works fine for serving the index.html file.
Hi
i want to store output in html file.but the problem is the html file already has its content..i want to append the new output to that html file..please suggest any new ideas...i m tryin to store the output in a textfile and append to that html file..but its nt workin..need ur help
Code:
while read LINE
do
echo $LINE | grep UCM | egrep '(Shutdown|Unavailable)'|
Hello,
I have a script which is sending an html file as an attachment.
#!/usr/bin/ksh
export MAILTO="user@company.com"
export CONTENT="/usr/tmp/file.html"
export SUBJECT="EmailSubject"
(
echo "Subject: $SUBJECT"
echo "MIME-Version: 1.0"
echo "Content-Type: text/html"
echo "Content-Disposition: inline"
cat $CONTENT
) | /
When I create a .htaccess file with the text such as ErrorDocument 403 /content/error-docs/403.html and ErrorDocument 404 /content/error-docs/404.html it doesn't work. The file in ubuntu desktop shows "Error" within the icon of the file. However, other .htaccess files work just fine and show "Option" in the icon of the file.
I am new to perl scripting and i am trying to execute following code
#!/usr/bin/perl
$html = "Content-Type: text/html
<HTML>
<HEAD>
<TITLE>Hello World</TITLE>
</HEAD>
<BODY>
<H4>Hello World</H4>
<P>
Your IP Address is $ENV{REMOTE_ADDR}
<P>
<H5>Have a nice day</H5>
</BODY>
</HTML>";
print $html;
when i execute
Hello all! I am trying to prevent my users from looking through directory files on a web server.