rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - maverick

Pages: 1 2 3 4 5 6
46
Bug reports / Dynamic DNS - No-IP
« on: December 17, 2006, 09:48:36 AM »

Dynamic DNS Updater Request - Log Results - No-IP

Correct - v2.1b build 067 - DNS update requested for xxx.xxx.xxx.xxx: successful

Wrong - v2.1c build 071 - DNS update requested for xxx.xxx.xxx.xxx: unknown reply: status=0 
(btw status=0 means successful)

47
HFS ~ HTTP File Server / v2.1b build ?? - What's the newest?
« on: December 15, 2006, 07:55:49 PM »
What's the newest build of v2.1b?  The home page says build 067.  I read somewhere in the forum about a build 069. (I can't find it now).

Can all forum posts about new builds go into 1 sticky topic and also include the changelogs?  Right now it seems as if new build announcements are scattered all over the place buried in forum threads.

I thought the thread called Topic: 2.1 has come was where all new build announcements would be made.  Not so, as the newest build mentioned in that thread is 066.

Is there a reason for this?


48
HFS ~ HTTP File Server / Suggestion: %list% Pages Feature
« on: December 03, 2006, 01:43:32 PM »
%list% Pages

Some of our directories are huge and take time to display especially if [file.jpg], [file.mp3] etc. is used.

Would it be possible to add a file/folder "pages" option?  A page feature similar to what is used in forums to limit the amount of threads per screen.   A feature like this would also help those that are on dial-up or on a slower high speed connection.

49
HTML & templates / [file.jpg] and IE problem
« on: December 03, 2006, 01:23:20 PM »
[file.jpg]

Has anyone else noticed that [file.jpg] isn't working for Internet Explorer?  I tested using v6.0.  No problem with Opera, Firefox or Netscape. 

Has anyone got it working for IE?

50
Bug reports / Access Violation v2.1b build 064
« on: December 03, 2006, 01:57:00 AM »

Access Violation v2.1b build 064

I got this while HFS was shutting down.

[attachment deleted by admin]

51
Bug reports / Updates - Auto Check
« on: November 30, 2006, 07:16:17 PM »
v2.1b build 063

Updates - auto check everyday

It doesn't remember the OFF setting (no checkmark).  It turns itself back on when you reload HFS.  I manually check for updates when I feel the time is right for me.  Please fix.  Also, I suspect that it updates more than just once a day.  From time to time I notice a quick flash in the middle of my screen which I'm almost sure has to do with this update feature or something else from HFS as it started with build 063.  Why not include a log entry when an update request takes place so we know.


52
Everything else / Forum Section Icons
« on: November 29, 2006, 12:44:33 AM »

Is it just me, or have the forum's section icons disappeared?

53
Bug reports / Access Violation v2.1a build 61
« on: November 27, 2006, 08:03:07 PM »
v2.1a build 61

This error popped up when just going to a previous page. 


[attachment deleted by admin]

54
Bug reports / BUG: Let Download & Virtual Folders
« on: November 13, 2006, 09:51:38 AM »

The 'Let Download' feature doesn't work right for 'Virtual Folders' when 'List Protected Items Only for Allowed Users' is enabled.  No problem with Real Folders.

55
Everything else / Make Firefox Load and Browse Faster!!!
« on: October 17, 2006, 03:59:20 AM »
Firefox is a good browser but I found it to be slower than it should be.  I found the following information on the net and thought I would pass it on in case any of you would also like to do some tweaking.  Credits go out to the author or author's of this information.  I have no idea who they might be.

Make Firefox Load and Browse Faster!!!

1. Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining
network.http.proxy.pipelining
network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.

2. Alter the entries as follows:
Set "network.http.pipelining" to "true".
Set "network.http.proxy.pipelining" to "true".
Set "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once.

3. Lastly right-click anywhere and select New-> Integer.

Name it "nglayout.initialpaint.delay" and set its value to "0".

This value is the amount of time the browser waits before it acts on information it recieves.

If you're using a brodband connection you'll load pages 2-3 times faster now.

Tested and Working!

------------------------- more info from another source -------------------------

Performance Settings

Before we start, i suggest that you make a new file in your firefox profile (C:\Documents and Settings\%User%\Application Data\Mozilla\Firefox\Profiles\ve9hjttm.default) is where it is normally found. Now make a new file called user.js. i have forgotten the whole story of why you do this but i think it is along the lines of firefox not being able to edit this. it will always be safe. i hope. as well as this it keeps all your mods in one place.


Quick and Dirty Settings

Code: [Select]
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("nglayout.initialpaint.delay", 0);

Pipelining does multiple data requests at once and should speed things up. I believe IE did this before and this was partially attributable to the speed advantage that IE had over older versions of Mozilla/Netscape. Initial Paint Delay actually slows down the rendering of the ENTIRE page but since users tend to start reading before the entire page is rendered, setting this to a low value gives the impression that the page loads faster.


Common to all configurations

These are the settings that seem to be common to all configuration files regardless of connection speed or computer speed with a couple of additions - plugin paths can be found with about:plugins and the bookmark menu delay is turned off.

Code: [Select]
user_pref("network.http.pipelining", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("content.notify.backoffcount", 5);
user_pref("plugin.expose_full_path", true);
user_pref("ui.submenuDelay", 0);


Fast Computer Fast Connection

Code: [Select]
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("browser.cache.memory.capacity", 65536);

A couple settings of note - Firefox is allocated 4096 KB of memory by default and in this configuration we give it roughly 65MB as denoted by the last line. This can be changed according to what is used.


Fast Computer, Slower Connection

This configuration is more suited to people without ultra fast connections. We are not talking about dial up connections but slower DSL / Cable connections.

Code: [Select]
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("browser.cache.memory.capacity", 65536);


Fast Computer, Slow Connection

Code: [Select]
user_pref("browser.xul.error_pages.enabled", true);
user_pref("content.interrupt.parsing", true);
user_pref("content.max.tokenizing.time", 3000000);
user_pref("content.maxtextrun", 8191);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("network.http.max-connections", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 4);
user_pref("nglayout.initialpaint.delay", 0);
user_pref("browser.cache.memory.capacity", 65536);


Slow Computer, Fast Connection

Code: [Select]
user_pref("content.max.tokenizing.time", 3000000);
user_pref("content.notify.backoffcount", 5);
user_pref("content.notify.interval", 1000000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 1000000);
user_pref("content.maxtextrun", 4095);
user_pref("nglayout.initialpaint.delay", 1000);
user_pref("network.http.max-connections", 48);
user_pref("network.http.max-connections-per-server", 16);
user_pref("network.http.max-persistent-connections-per-proxy", 16);
user_pref("network.http.max-persistent-connections-per-server", 8);
user_pref("dom.disable_window_status_change", true);

One of the changes made for this particular configuration is the final line where the status bar is disabled for changing web pages to save processor time.


Slow Computer, Slow Connection

We have entered the doldrums of the dial-up user

Code: [Select]
user_pref("content.max.tokenizing.time", 2250000);
user_pref("content.notify.interval", 750000);
user_pref("content.notify.ontimer", true);
user_pref("content.switch.threshold", 750000);
user_pref("nglayout.initialpaint.delay", 750);
user_pref("network.http.max-connections", 32);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 4);
user_pref("dom.disable_window_status_change", true);


Some of the options we chose not to include as opposed to suggestions on the Mozillazine threads included the suggestion of catching SSL pages. Regardless of computer speed, one of the common trends is that pipelining is a good thing. Those with faster computers and gobs of memory may want to up the amount of memory available to Firefox while those with slower computers can still increase the default 4MB to something higher. This was not done in our configuration files however. Powerusers are also welcome to disable the status bar to eek out that extra CPU cycle or two.

56
Everything else / OH NO -- ADS!!!
« on: October 01, 2006, 03:32:14 PM »

I hope these ads I'm seeing in this forum for the first time today aren't here to stay.   :-\

57
Bug reports / HFS v2.1 b16 - Template Editor
« on: September 17, 2006, 09:11:51 PM »
rejetto,

Sorry, but I still wish you could somehow put word wrapping back into the editor.  Or at least give us a menu option to either have word wrapping or look at color decorations.  As I understand it from a old post of your's, you can't have both.  The way it is now makes it difficult, for me anyway, to make code adjustments etc. when code flows from window to window.

Now, with v2.1 beta 16, I can't highlight code past the first window or from the last window going towards the first window.  The highlighting and cursor just stops at the end of the window no matter what direction you are going.

Is there some kind of purpose for that verticle grey line shown after the help menu function that goes down the length of the window?

I also got this access violation when horizontal scrolling with the scroll bar.

Access violation at address 004EC0CA in module 'hfs.exe'. Read of address 0187C000
HFS 2.1 beta16
----------------------------------------------------------------
Stack list, generated 9/17/06 2:29:10 PM
 + $4A[004EC0CA]{hfs.exe     } JvEditorCommon.TJvErrorHighlighting.PaintError + $4A
 + $33[0040414F]{hfs.exe     } System.@HandleAnyException + $33
 + $351[004EFA59]{hfs.exe     } JvEditor.TJvCustomEditor.PaintLineText + $351
 + $91[004E9519]{hfs.exe     } JvEditorCommon.TJvCustomEditorBase.PaintLine + $91
 + $B5[004E9459]{hfs.exe     } JvEditorCommon.TJvCustomEditorBase.Paint + $B5
 + $57[0046E2FB]{hfs.exe     } Controls.TCustomControl.PaintWindow + $57
 + $4E[0046A3BE]{hfs.exe     } Controls.TWinControl.PaintHandler + $4E
 + $3F[0046A88F]{hfs.exe     } Controls.TWinControl.WMPaint + $3F
 + $10[0046E294]{hfs.exe     } Controls.TCustomControl.WMPaint + $10
 + $188[00467284]{hfs.exe     } Controls.TControl.WndProc + $188
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $4E4[004E1784]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $4E4
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $15[0046C58D]{hfs.exe     } Controls.TWinControl.Update + $15
 + $1FD[004E7C65]{hfs.exe     } JvEditorCommon.TJvCustomEditorBase.Scroll + $1FD
 + $3A[004E7A5E]{hfs.exe     } JvEditorCommon.TJvCustomEditorBase.ScrollBarScroll + $3A
 + $12[004E53EA]{hfs.exe     } JvEditorCommon.TJvControlScrollBar95.Scroll + $12
 + $BA[004E53BE]{hfs.exe     } JvEditorCommon.TJvControlScrollBar95.DoScroll + $BA
 + $6[004E6BBE]{hfs.exe     } JvEditorCommon.TJvCustomEditorBase.WMHScroll + $6
 + $188[00467284]{hfs.exe     } Controls.TControl.WndProc + $188
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $3[00407AAF]{hfs.exe     } Windows.DefMDIChildProc + $3
 + $7[0041E082]{hfs.exe     } Classes.TThreadList.UnlockList (Line 3097, "classes.pas" + 1) + $7
 + $98[0042F734]{hfs.exe     } Graphics.FreeMemoryContexts + $98
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $41[00469EB9]{hfs.exe     } Controls.TWinControl.MainWndProc + $41
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $4E4[004E1784]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $4E4
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $3[00407AAF]{hfs.exe     } Windows.DefMDIChildProc + $3
 + $D7[0046A30B]{hfs.exe     } Controls.TWinControl.DefaultHandler + $D7
 + $3[00407AAF]{hfs.exe     } Windows.DefMDIChildProc + $3
 + $9F[0046B8C7]{hfs.exe     } Controls.TWinControl.WMSysCommand + $9F
 + $188[00467284]{hfs.exe     } Controls.TControl.WndProc + $188
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $421[00450D25]{hfs.exe     } Forms.TCustomForm.WndProc + $421
 + $7[0041E082]{hfs.exe     } Classes.TThreadList.UnlockList (Line 3097, "classes.pas" + 1) + $7
 + $98[0042F734]{hfs.exe     } Graphics.FreeMemoryContexts + $98
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $41[00469EB9]{hfs.exe     } Controls.TWinControl.MainWndProc + $41
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $4E4[004E1784]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $4E4
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $3[00407AAF]{hfs.exe     } Windows.DefMDIChildProc + $3
 + $D7[0046A30B]{hfs.exe     } Controls.TWinControl.DefaultHandler + $D7
 + $3[00407AAF]{hfs.exe     } Windows.DefMDIChildProc + $3
 + $15[00467561]{hfs.exe     } Controls.TControl.WMNCLButtonDown + $15
 + $188[00467284]{hfs.exe     } Controls.TControl.WndProc + $188
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $89[0046A159]{hfs.exe     } Controls.TWinControl.WndProc + $89
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $4E4[004E1784]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $4E4
 + $520[004E17C0]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $520
 + $7[0041E082]{hfs.exe     } Classes.TThreadList.UnlockList (Line 3097, "classes.pas" + 1) + $7
 + $98[0042F734]{hfs.exe     } Graphics.FreeMemoryContexts + $98
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $41[00469EB9]{hfs.exe     } Controls.TWinControl.MainWndProc + $41
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $157[0046A227]{hfs.exe     } Controls.TWinControl.WndProc + $157
 + $4E4[004E1784]{hfs.exe     } JvExControls.TJvExCustomControl.WndProc + $4E4
 + $2C[00469EA4]{hfs.exe     } Controls.TWinControl.MainWndProc + $2C
 + $0[00428F7C]{hfs.exe     } Classes.StdWndProc (Line 10565, "classes.pas" + 8) + $0
 + $A[00433662]{hfs.exe     } Contnrs.TComponentList.GetItems + $A
 + $83[00456F2B]{hfs.exe     } Forms.TApplication.ProcessMessage + $83
 + $A[00456F62]{hfs.exe     } Forms.TApplication.HandleMessage + $A
 + $96[00457182]{hfs.exe     } Forms.TApplication.Run + $96
 + $2[0053C8ED]{hfs.exe     } hfs.hfs (Line 69, "c:\code\mine\hfs\hfs.dpr" + 15) + $2
----------------------------------------------------------------
System   : Windows XP Professional, Version: 5.1, Build: A28, "Service Pack 2"
Processor: Intel, Pentium 4, 3.00 GHz MMX
Display  : 1024x768 pixels, 24 bpp
----------------------------------------------------------------
----------------------------------------------------------------
Product Versions

hfs.exe: Build: 0 9/17/06 8:21:00 PM


58
HFS ~ HTTP File Server / Stop Spiders from Indexing
« on: September 03, 2006, 12:39:22 PM »

Does anyone know how to stop spiders from indexing a https site?

robots.txt and <META NAME="ROBOTS" CONTENT="NOINDEX,NOFOLLOW"> only work for a http site.

Anyone know.  ???

59
HFS ~ HTTP File Server / ~login
« on: August 30, 2006, 06:23:09 AM »
At present, ~login uses only http with a resulting url shown as http://......

Would it be possible for ~login to also recognize https with a resulting url shown as https://...... if commanded to do so? ???

60
Everything else / Email Address
« on: August 26, 2006, 03:33:14 AM »
I can see an email icon with my email address in my posts in the threads. :o  In my profile I selected hide email address.  8)  Why is it shown in the pages?  ???  And by the way, how do you change your email address in the profile?  I didn't see an option to do it. >:(

Pages: 1 2 3 4 5 6