Posts
 
Reputation
Joined
Last Seen
Ranked #786
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
~28.4K People Reached
Interests
Computers, Downhil mountainbiking, raving, sound equipment.
PC Specs
AMD Athlon II x4 640 (O/C @ 3.2GHz). ASUS mobo & chipsets. 2GB 1333Mhz AMD Black RAM. RADEON HD…

59 Posted Topics

Member Avatar for NuGG

I have recently come into possession of 2 second hand Fujitsu RX series servers, and this issue is driving me nuts! When I got them neither had disks, so I popped some disks in and installed a Win Server 2019 hyper-v service. So both servers have entirely clean and activated …

Member Avatar for Dani
0
68
Member Avatar for NuGG

Ok this is a weird one and its been ongoing for many months, wondering if anyone has any ideas. We have 10-15 office 365 exchange email accounts and they all work perfectly fine apart from one account on one device. This particular account has intermittent issues with sending and emails …

Member Avatar for NuGG
0
4K
Member Avatar for NuGG

To start I want to make it clear I have no experiance with office 365 or the associated exhange stuff, and I would never personally recomend such a package to my clients, hence why I am totally in the dark about this. I have taken on the management of IT …

Member Avatar for rproffitt
0
3K
Member Avatar for NuGG

We have an Access mdb database originally built in the late 90s. We currently use MS Access 2000 on Win7. Since switching to win7 from XP the database keeps getting locked and corrupted and we are unable to open it. We then have to revert to backup copies made days …

Member Avatar for rproffitt
0
230
Member Avatar for NuGG

Ok so I have the following code for a table with CSS rules designed to "collapse the table horizontally" on smaller screens... <table> <thead class="thead"> <tr> <th>a</th> <th>b</th> <th>c</th> <th>d</th> <th>e</th> <th>f</th> <th>g</th> </tr> </thead> <tbody> <tr> <td data-label="a">1</td> <td data-label="b">2</td> <td data-label="c">3</td> <td data-label="d">4</td> <td data-label="e">5</td> <td data-label="f">6</td> <td …

Member Avatar for NuGG
0
539
Member Avatar for stokie-rich

Have you tried changing... if(isset($_POST['submit'])){ ...to... if(isset($_POST['Submit'])){ ...or change... name="Submit" ...to... name="submit" ...on the button? Could be that simple? As **"Submit" does not = "submit"**

Member Avatar for stokie-rich
0
344
Member Avatar for spud91

What is happening in cart_update.php in order to empty the cart? I suspect the login session is being destroyed in cart_update.php, and thus it cant find "login_user" because the session no longer exists and thus it is "undefined"...

Member Avatar for spud91
0
2K
Member Avatar for NuGG

I have been trying to figure out how to populate a html template with data from a multi dimensional array, but i cant figure it out. The template is taken from MySQL. This is what I have: $template=addslashes($row['content']); eval("\$body=\"$template\";"); print($body); Now the template is as follows: $row['content'] = "<html><p>array item …

Member Avatar for NuGG
0
238
Member Avatar for NuGG

I want to disallow certain query strings with robots.txt and I want to check I am doing this correctly... I am using: Disallow: /browse.asp?cat=*-* I want to check that this rule will allow these urls to be indexed: *browse.asp?cat=123/1234/1234-1 browse.asp?cat=123/1234-1* While disallowing these urls: *browse.asp?cat=1234-1 browse.asp?cat=1234-2* Will this rule work? …

Member Avatar for Ali_42
0
144
Member Avatar for NuGG

- I have a [URL=http://kings-head-inn.com/form/]form[/URL] and I need to send an email automatically to the person who submitted the form. - The form sends the information to an email address when submitted. - The form contains an email address field which will contain the email address of the person who …

Member Avatar for Brenda_1
0
439
Member Avatar for NuGG

I have been having trouble getting a result from this wondered if someone may be able to help me. I am trying to decode/parse this json output from a URL so that I can extract "result" and "success" and place them into variables. So far I cant even parse the …

Member Avatar for NuGG
0
328
Member Avatar for supermastereu

The question sounds kind of vague but http://www.princexml.com/ may be useful to you. Its a HTML/CSS - PDF converter. There is also http://www.tcpdf.org/ which is a php class for printing to pdf

Member Avatar for NuGG
0
113
Member Avatar for NuGG

I cannot run a program on a computer because there are software restrictions in place which prevent the running of .exe files. Is it possible to run a program with out the .exe file extension? (i.e. change it to something else?) If not are there any other ways of getting …

Member Avatar for Tcll
0
2K
Member Avatar for NuGG

I have tested a PSU with a multimeter while at idle and got these very odd results: 3.3v = 3.31v 5v = 5.56v 12v = 12.83v -12v = **3.27v** -5v = **3.4v** +5v = 5.02v The -12v and -5v are way out but the PC in question is running without …

Member Avatar for mike_2000_17
0
178
Member Avatar for NuGG

I am trying to get a total of all the records for playerid from table1, table2 and table3 by playername. There are 4 tables, table-1, table-2, table-3, and players. I am not great with queries and I expect somebody here can instantly see where I am going wrong. This is …

Member Avatar for ryantroop
0
268
Member Avatar for NuGG

Hi there, I have a problem with one of my websites. Some users are complaining that the site wont load in IE9 when others are saying it works fine in IE9. Some people report a 404 error, others report a 500, and some people are saying the page is just …

Member Avatar for JorgeM
0
192
Member Avatar for NuGG

Hi there, I am trying to combline results form a query into one variable/string without drastically changing the sites current code. Bacically I have been trying to add **rs2("name")** for each record into one string. For example, say the customer has "item1", "item2", and "item3" in their basket, well I …

0
123
Member Avatar for NuGG

I have an array of file names which gets split into 3's using array_chunk, then using array_push "X" is added to each array chunk. I now want to to reassemble the array chunks into one "2D" array. I have been playing around with array_merge, but I can only get the …

Member Avatar for NuGG
0
505
Member Avatar for NuGG

This is problem that I have struggled with for some time, but im sure the answer is very simple... I have a sub report that performs calculations on 2 fields ( [Rate] [Hours Worked] ) from a table called [Hours]. The report is GROUPED by [Rate] and is as follows: …

Member Avatar for NuGG
0
2K
Member Avatar for NuGG

I have made the mistake of adding a large amount of comma separated data to a specific field in a certain table without adding spaces between each! (Stupidly didn’t realise the associated application requires spaces!) Now I am trying to create a query that can add these spaces in automatically …

Member Avatar for ChrisPadgham
0
368
Member Avatar for NuGG

Im new to php and have been struggling with this for some time, but I expect its something simple. Basically I have some code below which I want to use to display an events board. -Info for each event comes from a separate xml file for each event. -XML files …

Member Avatar for NuGG
0
218
Member Avatar for NuGG

I have the following code witch is used to display HTML from an XML file. The XML file itself comes from a form POST where a "\" is added in after various HTML tags. Is there anyway I can modify the script below to hide/remove the "\" when the XML …

Member Avatar for ko ko
0
1K
Member Avatar for Catweazle
Member Avatar for hgvdriver
-1
1K
Member Avatar for NuGG

After the latest Microsoft Windows XP hotfix (the browser checker), I am unable to check my email in Microsoft Outlook (request times out). The Internet is very slow in IE8, and fails to load pages in Firefox at all. I have reinstalled IE8, Firefox, and Outlook to no avail. Have …

Member Avatar for NuGG
0
151
Member Avatar for NuGG

I have been experiancing slow/intermittent browsing in IE and firefox since the recent KB976002-v5 (browserchoice.exe) hotfix. My pop3 email accounts also time-out when sending/recieving. I have reinstalled both IE and firefox. Specified DNS Servers on the router and problem PC. Fixed all registy errors, and performed a deep clean including …

0
254
Member Avatar for NuGG

I was wondering if it is possible to print a file with out viewing it first by using a hyperlink on a webpage. Bacically i want users to print off a form (doc file) by clicking a link. eg: -so the hyperlink would be here: kings-head-inn.com/print/linkpage.html -and the doc file …

Member Avatar for essential
0
135
Member Avatar for NuGG

I was wondering if anyone knows how to get flash to open another html page after the movie has played. im trying to make an opening page to my website which plays a short movie with the company logo on etc. When the movie has loaded and finished playing I …

Member Avatar for Lije124
0
505
Member Avatar for NuGG

[I]I do apologise if this thread has been started in the wrong section. - Wasn’t sure where to put it...[/I] ________________________________________________________________ I am using Microsoft Access with a select query to combine 4 separate fields into 1 field for each record using the following expression:.. [B]Expr1: ([prod_group_name] & " - …

Member Avatar for kb.net
0
136
Member Avatar for NuGG

I have created a bat file to launch 3 browser windows with different URL's, to be run at system start up... [CODE] start iexplore http://www.domain.com/dyna.php?domain=ufbsound&tld=co.nr&pass=abcd&dir=ufbsound start iexplore http://www.domain.com/dyna.php?domain=ufblive&tld=co.nr&pass=abcd&dir=ufblive start iexplore http://www.domain.com/dyna.php?domain=ufbftp&tld=co.nr&pass=abcd&dir=ufbftp [/CODE] The URL's contain several "&" so the script opens the browser windows with the URL's up to the …

Member Avatar for afripino
0
203
Member Avatar for NuGG

I need some help with renaming files using a batch script... Say in a folder I have 2 html files. - 1.htm 2.htm I need a bat file that will rename "1.htm" to "1a.htm" and then change "2.htm" to "1.htm" In other words I need "2.htm" to become "1.htm"... Anyone …

Member Avatar for Temmu
0
1K
Member Avatar for NuGG

When I switch the computer on, if im lucky, it will tell me the processor speed amount of ram, etc. (sometimes the screen just turns blank before this stage.) Then it displays an error explaining there is a drive A:\ problem; however the computer in question is a server without …

Member Avatar for joytech22
0
316
Member Avatar for NuGG

I have obtained the following script which only lets a page load if the visitor has been to the previous page, if they haven’t it sends the visitor to the appropriate page. However, it only works in Mozilla. Can anyone help me adapt this script to work in Internet Explorer? …

Member Avatar for HazardTW
0
281
Member Avatar for NuGG

I’ve been using my network for months and never actually noticed that one of the client PC's cannot "be pinged" (I only noticed recently because I can’t get “Network Lookout

Member Avatar for Duki
0
135
Member Avatar for cade09

If using Windows, what version of Internet Information Services (IIS) do you have?

Member Avatar for sanjay kr singh
0
118
Member Avatar for NuGG

I have multiple pages with the same information on them (forthcoming events information), and when that information needs to be changed i have to change every page which takes time. I was wondering if XML can be used to change the information on the pages by editing one central XML …

Member Avatar for jwenting
0
137
Member Avatar for mim3

I wouldnt use freewebspace.com if i was you, their customer service is terrible. If something goes wrong they dont reply to your emails, and they dont have a UK call centre. NuGG

Member Avatar for WaltP
0
145
Member Avatar for NuGG

I want to print a html file by clicking on a hyperlink/button in a small popup window. I already have the popup that is not the problem, i was just wondering if this script can be modified to print the main window from the popup. [CODE]<!-- Begin function printWindow() { …

0
91
Member Avatar for GriffIT34

I think this is what you are asking... Basically you’re saying you have too many files in the root folder, and you want to re organize it. Say you are building an extreme sports website (just the first thing that came into my head). And you want to organize your …

Member Avatar for NuGG
0
127
Member Avatar for NuGG

I want a ".doc" file to be printed when you click on a hyperlink, however so far all i have been able to print is the page on which the link is situated, and not the doc file. Im using this script: [CODE] <!-- Begin function printWindow() { bV = …

0
98
Member Avatar for NuGG

Ok, ive created a login script and i have saved it as login.js. See below: <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function Login(){ var done=0; var username=document.login.username.value; username=username.toLowerCase(); var password=document.login.password.value; password=password.toLowerCase(); if (username=="someone" && password=="something") { window.location="page.htm"; done=1; } if (done==0) { alert("Invalid login! (try lower case)"); } } // End --> …

Member Avatar for tgreer
0
464
Member Avatar for mim3

[QUOTE=mim3;263510] html: when i made a script how do i make a site with it exemple: [URL="http://www."]www."********".com[/URL] like that ppl can go and see what i made. [/QUOTE] Huh? you cant make a website with a script. normally you use javascripts to do something that html cant, such as changing …

Member Avatar for GreenDay2001
0
187
Member Avatar for NuGG

I want some information about a browser, to be inserted automatically into a text box when a page loads. However quite how to do this im not sure. I have made the form and have a JavaScript which does the job, but I want to know how to get the …

Member Avatar for NuGG
0
165
Member Avatar for NuGG

I’m trying to reformat a PC using the Windows XP CD-ROM. The computer I am doing it on displays a message "cannot boot from CD: Code 5". Does anyone know what this means? And how can it be fixed? Before you ask, Yes the PC is configured to boot from …

Member Avatar for Cinder
0
458
Member Avatar for NuGG

Is it possible to reformat a hard drive and install Windows XP using a windows startup disk (floppy)? And if so, how? Note: I cannot get the PC to boot from CD and thats why I was wondering if this is possible. Ive been trying to reforamt a troublesome PC …

Member Avatar for Thong_Ispector
0
213
Member Avatar for NuGG

I've created a form which when submitted, is emailed to me. I have set up the form so that the "reply to" address comes from the "email" field in form. (See below) [CODE] <!--webbot bot="SaveResults" S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]" B-Email-Label-Fields="TRUE" B-Email-ReplyTo-From-Field="TRUE" S-Email-ReplyTo="Email" B-Email-Subject-From-Field="FALSE" S-Email-Subject="EMAIL SUBJECT" S-Date-Format="%Y-%m-%d" S-Time-Format="%H:%M" S-Builtin-Fields="HTTP_USER_AGENT Date Time" S-Form-Fields="Name Email …

0
66
Member Avatar for NuGG

I've created a form which when submitted, is emailed to me. I have set up the form so that the "reply to" address comes from the "email" field in form. (See below) [CODE] <!--webbot bot="SaveResults" S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]" B-Email-Label-Fields="TRUE" [B]B-Email-ReplyTo-From-Field="TRUE" S-Email-ReplyTo="Email"[/B] B-Email-Subject-From-Field="FALSE" S-Email-Subject="EMAIL SUBJECT" S-Date-Format="%Y-%m-%d" S-Time-Format="%H:%M" S-Builtin-Fields="HTTP_USER_AGENT Date Time" S-Form-Fields="Name Email …

0
73
Member Avatar for NuGG

I have a popup with a form on it. when the form is submitted i want it to load the next page in a new window (not in the popup window). Does anyone know how the submission code can be chainged to do this? [code] <!--webbot bot="SaveResults" S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]" B-Email-Label-Fields="TRUE" …

Member Avatar for NuGG
0
229
Member Avatar for NuGG

I have obtained the following script which only lets a page load if the visitor has been to the previous page, if they haven’t it sends the visitor to the appropriate page. However, it only works in Mozilla. Can anyone help me adapt this script to work in Internet Explorer? …

0
115
Member Avatar for NuGG

Im using the validation rule [B]">=(Now())" [/B] to ensure the date entered in the field is today onwards only. However, this rule does not allow todays date to be entered. How can i get it to [B]accept todays date but not previous dates[/B]? This is part of my a-level coursework, …

Member Avatar for relawson
0
180
Member Avatar for enigmamst

Ive got 3 extraction fans (2500rmp) at the back, an intake fan at the side (3000rmp), and a second intake at the front (2500rmp). Using this set up, i have managed to get my case temp down to 25oC or less. However my CPU is running at 45oC... Some graphics …

Member Avatar for anurag_pareek
0
218

The End.