TigerDirect

NeatUpload and Windows 2008 Server

Posted by Johan Cyprich on 11 Jul 2008 | Tagged as: Tech Tips

NeatUpload will not work by default when used with Windows 2008 Server. Like many other web applications that you install from earlier Windows servers, you need to make modifications to the web.config file.

First of all, you need to make sure that the component is installed properly. This procedure is described in its documentation. Then you need to make the following change (in bold) in web.config:

<httpModules>
     <remove name="ScriptModule" />
     <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     <add name="UploadHttpModule" type="Brettle.Web.NeatUpload.UploadHttpModule, Brettle.Web.NeatUpload" />
</httpModules>

The component should function normally now. You can read the post on the Brettle web site where this question was answered by Dean Brettle.

Related posts:
Related Posts
    Fixing File Upload Size Limit in IIS 7
    It’s Not a Bug … It’s a Feature!
    Fixing web.config for Windows 2008 Server Web Applications
    Commodore SX-64 vs. MacBook Air

Share this post:

del.icio.us:NeatUpload and Windows 2008 Server digg:NeatUpload and Windows 2008 Server spurl:NeatUpload and Windows 2008 Server wists:NeatUpload and Windows 2008 Server simpy:NeatUpload and Windows 2008 Server newsvine:NeatUpload and Windows 2008 Server blinklist:NeatUpload and Windows 2008 Server furl:NeatUpload and Windows 2008 Server reddit:NeatUpload and Windows 2008 Server fark:NeatUpload and Windows 2008 Server blogmarks:NeatUpload and Windows 2008 Server Y!:NeatUpload and Windows 2008 Server smarking:NeatUpload and Windows 2008 Server magnolia:NeatUpload and Windows 2008 Server segnalo:NeatUpload and Windows 2008 Server gifttagging:NeatUpload and Windows 2008 Server

Fixing web.config for Windows 2008 Server Web Applications

Posted by Johan Cyprich on 11 Jul 2008 | Tagged as: Tech Tips

A web site created with Visual Web Developer 2008 Express Edition will not work in Windows 2008 Server. The web.config file needs to be modified in order for the web site to run correctly.

For an ASP.NET Web Site (.NET 3.5), make the following changes:

  1. In <configSections>, add comments around scriptResourceHandler:

    <!–
    <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
    –>

  2. Again, in <configSections> in the scriptResourceHandler section, place comments around jsonSerialization, profileService, and authenticationService:

    <!–
    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
    –>

  3. In <system.web> in <httpModules>, place comment around ScriptModule:

    <!–
    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
    –>

The web.config file will now work in Windows 2008 Server. You can download a fixed web.config file and replace the old file when you create a new web application.

Related posts:
Related Posts
    Fixing File Upload Size Limit in IIS 7
    NeatUpload and Windows 2008 Server
    It’s Not a Bug … It’s a Feature!
    Importing and Exporting with SQL Server 2005 Express

Share this post:

del.icio.us:Fixing web.config for Windows 2008 Server Web Applications digg:Fixing web.config for Windows 2008 Server Web Applications spurl:Fixing web.config for Windows 2008 Server Web Applications wists:Fixing web.config for Windows 2008 Server Web Applications simpy:Fixing web.config for Windows 2008 Server Web Applications newsvine:Fixing web.config for Windows 2008 Server Web Applications blinklist:Fixing web.config for Windows 2008 Server Web Applications furl:Fixing web.config for Windows 2008 Server Web Applications reddit:Fixing web.config for Windows 2008 Server Web Applications fark:Fixing web.config for Windows 2008 Server Web Applications blogmarks:Fixing web.config for Windows 2008 Server Web Applications Y!:Fixing web.config for Windows 2008 Server Web Applications smarking:Fixing web.config for Windows 2008 Server Web Applications magnolia:Fixing web.config for Windows 2008 Server Web Applications segnalo:Fixing web.config for Windows 2008 Server Web Applications gifttagging:Fixing web.config for Windows 2008 Server Web Applications

Viewing .htaccess in Remote Connections in Eclipse

Posted by Johan Cyprich on 04 Jul 2008 | Tagged as: Tech Tips

I’ve been trying to view .htaccess files in a web site connected to remotely in Eclipse. These do not appear in file listings so they can’t be opened. I’ve added an .htaccess file type, but that didn’t work. After searching around in the Preferences (found in the Windows pull down menu), I found an option in the Remote Systems->File section. If you check on Show hidden files, then .htaccess will appear (you may need to Refresh the folder first). Then you can open the file by double-clicking on it.

I’ve shown below where this option can be found in Eclipse 3.3.2 and the new Zend Studio for Eclipse. Click on the image for a larger view.

Preferences in Eclipse 3.3.2

image

Preferences in Zend Studio for Eclipse

image

Related posts:
Related Posts
    Installing Fireboard in Joomla 1.5
    WordPress 2.2.1 Upgrade
    Don’t Use Java 6
    PostgreSQL Using Too Much Memory

Share this post:

del.icio.us:Viewing .htaccess in Remote Connections in Eclipse digg:Viewing .htaccess in Remote Connections in Eclipse spurl:Viewing .htaccess in Remote Connections in Eclipse wists:Viewing .htaccess in Remote Connections in Eclipse simpy:Viewing .htaccess in Remote Connections in Eclipse newsvine:Viewing .htaccess in Remote Connections in Eclipse blinklist:Viewing .htaccess in Remote Connections in Eclipse furl:Viewing .htaccess in Remote Connections in Eclipse reddit:Viewing .htaccess in Remote Connections in Eclipse fark:Viewing .htaccess in Remote Connections in Eclipse blogmarks:Viewing .htaccess in Remote Connections in Eclipse Y!:Viewing .htaccess in Remote Connections in Eclipse smarking:Viewing .htaccess in Remote Connections in Eclipse magnolia:Viewing .htaccess in Remote Connections in Eclipse segnalo:Viewing .htaccess in Remote Connections in Eclipse gifttagging:Viewing .htaccess in Remote Connections in Eclipse

PDF Becomes an ISO Standard

Posted by Johan Cyprich on 03 Jul 2008 | Tagged as: Technology

The International Organization for Standardization (ISO) will now be in control of Adobe’s Portable Document Format (PDF). The new standard, ISO 32000-1, Document management - Portable document format - Part 1: PDF 1.7, is not only an excessively long name but its also based on version 1.7 of PDF.

The PDF format was created in 1993 and has become the standard format for creating documents for viewing and printing. The format does have several problems. Fonts that require a licence do not get embedded in a PDF which causes all sorts of problems when trying to print the document. Instead of the correct font appearing, it will default to Courier instead. Colour separation and colour matching are also difficult to do in a PDF.

There are many PDF creators and viewers, but the only ones that really work properly are Adobe’s products. I haven’t used anything displays documents as accurately as Acrobat Reader, and Acrobat Distiller still produces the cleanest PDF’s.

All of this may change with the ISO standardization.

Related posts:
Related Posts
    C++09 - The New C++ Standard
    OpenDocument: One Standard To Rule Them All
    Noam Chomsky and Blogging
    8,002,530 Downloads and a World Record

Share this post:

del.icio.us:PDF Becomes an ISO Standard digg:PDF Becomes an ISO Standard spurl:PDF Becomes an ISO Standard wists:PDF Becomes an ISO Standard simpy:PDF Becomes an ISO Standard newsvine:PDF Becomes an ISO Standard blinklist:PDF Becomes an ISO Standard furl:PDF Becomes an ISO Standard reddit:PDF Becomes an ISO Standard fark:PDF Becomes an ISO Standard blogmarks:PDF Becomes an ISO Standard Y!:PDF Becomes an ISO Standard smarking:PDF Becomes an ISO Standard magnolia:PDF Becomes an ISO Standard segnalo:PDF Becomes an ISO Standard gifttagging:PDF Becomes an ISO Standard

8,002,530 Downloads and a World Record

Posted by Johan Cyprich on 02 Jul 2008 | Tagged as: Applications

It’s official. Mozilla set a Guinness world record last month with the greatest number of software downloads in one day. The 24 hour period occurred from June 17 (18:16 UTC) to June 18 (18:16 UTC) where 8,002,530 copies of Firefox 3 was downloaded. The goal was to get at least 5 million downloads.

There have been 28 million downloads since Firefox 3 was released and there are currently 180 million users worldwide. Firefox has a 19% market share and is the second most popular browser after Microsoft’s Internet Explorer.

In spite of these downloads and the market share, Internet Explorer still dominates the web and they are the standard which all web sites must work with.

Related posts:
Related Posts
    Firefox 3 and the World Record Challenge
    Download Firefox 3 on June 17, 2008
    Set a World Record with Firefox
    Over 500,000 WordPress Users

Share this post:

del.icio.us:8,002,530 Downloads and a World Record digg:8,002,530 Downloads and a World Record spurl:8,002,530 Downloads and a World Record wists:8,002,530 Downloads and a World Record simpy:8,002,530 Downloads and a World Record newsvine:8,002,530 Downloads and a World Record blinklist:8,002,530 Downloads and a World Record furl:8,002,530 Downloads and a World Record reddit:8,002,530 Downloads and a World Record fark:8,002,530 Downloads and a World Record blogmarks:8,002,530 Downloads and a World Record Y!:8,002,530 Downloads and a World Record smarking:8,002,530 Downloads and a World Record magnolia:8,002,530 Downloads and a World Record segnalo:8,002,530 Downloads and a World Record gifttagging:8,002,530 Downloads and a World Record

« Newer Entries - Older Entries »