website

un able to phpbb session login through my own website

We are unable to login phpbb through my own site using session. please help us. <?php session_start(); include "conn.php"; include "PHPBB_Login.php"; echo $_SESSION['username']; $data=mysql_query("select * from people where username='".$_SESSION['username']."'"); $data_data=mysql_fetch_array($data); echo $_SESSION['usernam...

unable to login in to phpbb through session of wesite

With the below code we unable to session ingrate please help us how to integrate is there any modification let give modification. Thank you <?php session_start(); include "conn.php"; include "PHPBB_Login.php"; echo $_SESSION['username']; $data=mysql_query("select * from people where username='".$_SESSION['username'...

Using fink to install from a website

I want to use fink to install smalltalk. I found this on the fink website. I was wondering if there was some way to install smalltalk from the url (sudo fink install smalltalk does not work). Is there a way to do this? Or do I not understand fink correctly? ...

What is the proper way to localize a static website

Hey! I need to localize our site to a number of languages. The site consists of several static pages, no dynamic backend. We have a nice international community and the people are ready to help us. The problem is how to arrange website translation, what is the right workflow? What are the best practices for static website localization...

Where to start when developing an app for a website

Hey! I am planning on developing an iPhone App for a website, powered by Wordpress. Where can/should I start codewise when developing an app for such sites? Should I use Wordpress' API, or should I access the (MySQL) database directly? I am very open for ideas. Thank you. ...

What is the need of JavaScript while developing a page?

I have been developing websites for some time now and I hardly use any Javascript in my pages. Whatever I can want to do with JavaScript, it is possible through PHP. Just like ajax itself. We can send a regular request instead of a ajax request, can't we? We can use "include" to include sub part of pages. So am i missing something abou...

Protecting my website content from being downloaded through cURL

I heard about external access of a website using curl by the following code: $curl_handle=curl_init(); curl_setopt($curl_handle,CURLOPT_URL,'http://example.com'); $buffer=curl_exec($curl_handle); curl_close($curl_handle); I want to protect my website from this external access. I am using PHP. How can I protect my web site? ...

How Transport for London Website Works

Hi, Here let me clarify , I have no intentions to peep in to or any evil intention towards tfls database and other related information. But , ofcourse Millions of users are greatly beniftted the way it serves the information. http://journeyplanner.tfl.gov.uk/ So , If we want to create some site like tfl, journeyplanner , what are the ...

Best way to use the same HTML on static web-pages

If you use dynamic pages like JSP or asp.net, you can have your page template included, and then content added. But what if you have no server-side component and all pages are just HTML/JS? You can of course create a template then copy it for each page, but then if you want to change something you risk having to modify every page, even i...

I made a website in English, what's the most optimal way to add one more language?

So, I have created a big website (a lot of text in different files and a lot of programming). I need to add one more language, how should I do? What is the fastest way I can add second language and let my visitors to choose between them? Any ideas? Thanks. ...

How can someone with no experience learn how to program?

A friend and I have been coming up with website ideas for a couple years, mostly just jotting them down whenever we come up with a good, useful idea when browsing the web. For the past 6 months we've hired a couple different programmers to make a couple of the sites for us, but have been disappointed with how it's gone. Been too slow a...

Anyone ever been able to build a website with a moving video as a background?

Trying to build a website where the background of the site is a video and then there would be an actual html page laid on top of it. ...

How can I login to a website with Python?

How can I do it? I was trying to enter some specified link (with urllib), but to do it, I need to log in. I have this source from the site: <form id="login-form" action="auth/login" method="post"> <div> <!--label for="rememberme">Remember me</label><input type="checkbox" class="remember" checked="checked" name="remember me" /-...

Checking up remotely on Website Usage

A client of mine has a pure HTML website that was built in the dark ages - they want me to find where their users are coming from, how many individual users there are, etc. They want to know if the site is being used enough for them to invest the money into renovating it. I am remote from their site and do not have access to their web ...

Have you ever created a application/website without bugs?

Have you ever created application/website that worked on first, with no bugs in IE/Firefox/Chrome...? Or it's just dream of every programmer? :) ...

Add an existing ASP.NET Website to Subversion using AnkhSVN/Tortoise

How do you add a existing ASP.NET website to Subversion dealing with the problems that Subversion dosent support multiple folder structures in the repository: An default ASP.NET Website Solution folder structure look like this: C:\Documents and Settings\UserName\My Documents\Visual Studio 2008\Projects\WebSite1\ WebSite1.sln WebSite1....

How can you make certain parts of your website not appear on search engine results?

How can you make certain parts of your website not appear on search engine results? Will a password protected directory not appear on search engine results? ...

How can I create a website just like stackoverflow.com?

I am a student from China. I like stackoverflow.com very much. I am wondering How can I create a website just like stackoverflow.com? Thx ...

Convert user title (text) to URL, what instead spaces, #, & and other characters?

I have some form on the website where users can add new pages. I must generate SEO friendly URLs and make this URLs unique. What characters can I display in URL, I know that spaces I should convert to underscore: " "->"_" and before it - underscores to something else, for example: "_"->/underscore It is easy make title from URL back....

How do I nicely manage many localhost web site URIs with IIS7

I'm having trouble setting up a clean development environment with all the web sites I'm working on. I'm working on up to 40 different web sites, and at least 5 of them simultaneously. I need them all to be in a site root, for URL management to work with all CMSes. My first attempt was to use increasing port numbers for them, beginning ...