Jump to content

notalot

Members
  • Posts

    275
  • Joined

  • Last visited

Everything posted by notalot

  1. The way it worked at county hall is if you took a pay rise you started at the bottom of the scale, then went up 1 spinal point per year of service. Not sure what happened with pay cuts OFC they had the option of 3-5 year pay protection. Not amazingly happy with mine, thought I’d be higher on 1 or 2 factors, can someone let me know what they got within the ICT 3 profile for Knowledge, Mental Skills, Initiative and Independence and Mental Demands. Would be happy if you preferred to pm me them, just starting to work out what factors to fight on.
  2. Would be the hard drive compatibility mode that NikChillin is talking about I think, we get it with some of the Dell PC’s that we have. If its is the above then once it starts happening you wouldnt get the error untill you change it.
  3. Is it really an exe or just a wrapper for an MSI try and open it using winrar or other tool, you might find an MSI in there.
  4. I had the same problem on one of my early servers, took ages to sort (this was before Bioms). As LiamH said hand out the axes, possibly spawn a load and put them in a storage box
  5. Arcath, did Notch fix the portals in multiplayer, I've not seen anything about it.
  6. Yep, MCedit is a easy and effective one to use, once you get the hang of it.
  7. I play it quite a bit, possably to much
  8. Hello all, I’ve been asked to make a group in Sims (v 7.128) to give a member of staff access to enter the Free school meals information for students (dietary section). We can’t really use the built in groups as it will give this member of staff to much access to the system. Has anyone done this and if so with permissions in system did you have to give? Thanks
  9. Thanks CESIL that's what I needed, from that I was able to pin down and fix the code.
  10. Hi, we are looking at using MRBS over our Excel booking system next year and ive been asked if we can add a few bits in to it, however my PHP knowledge isn’t very good. We are trying to add a dropdown box that contains the subjects for our site and enter this in to a mysql database (MRBS_entry in a field called Subject) I have been able to get all the subjects out of a MySQL database without too much difficulty and put them in to a drop down box using the following code // select the Subject $sql = "select ID, Subject from $tbl_subjects order by Subject"; $res = sql_query($sql); if ($res) { for ($i = 0; ($row = sql_row_keyed($res, $i)); $i++) { $selected = ""; if ($row['id'] == $Subject) { $selected = "selected=\"selected\""; } echo " " . htmlspecialchars($row['Subject']) . "\n"; // store room names for emails $room_names[$i] = $row['Subject']; } } ?> I’m guessing that my code is very messy, sorry for that, but it works and puts the subjects in a dropdown box. What I can’t get right is the code to get the information in to the MySQL database. My understanding is that the code comes from MRBS_sql.inc and I think that the code that I need to change is /** mrbsCreateSingleEntry() * * Create a single (non-repeating) entry in the database * * $starttime - Start time of entry * $endtime - End time of entry * $entry_type - Entry type * $repeat_id - Repeat ID * $room_id - Room ID * $owner - Owner * $name - Name * $type - Type (Internal/External) * $description - Description * $private - Private Booking (TRUE/FALSE) * $status - Status code of the entry * $Subject - Subject for the Booking * * Returns: * 0 - An error occured while inserting the entry * non-zero - The entry's ID */ function mrbsCreateSingleEntry($starttime, $endtime, $entry_type, $repeat_id, $room_id, $owner, $name, $type, $description, $private, $status, $Subject) { global $tbl_entry; $private = $private ? 1 : 0; $name = addslashes($name); $description = addslashes($description); $owner = addslashes($owner); $type = addslashes($type); // make sure that any entry is of a positive duration // this is to trap potential negative duration created when DST comes // into effect if ($endtime > $starttime) { $sql = "INSERT INTO $tbl_entry (start_time, end_time, entry_type, repeat_id, room_id, create_by, name, type, description, private, status, Subject) VALUES ($starttime, $endtime, $entry_type, $repeat_id, $room_id, '$owner', '$name', '$type', '$description', $private, $status, '$Subject')"; $ent_id = mrbsCreateSingleEntry($reps[$i], $reps[$i] + $diff, 1, $id, $room_id, $owner, $name, $type, $description, $private, $status, $Subject); } } $result['id'] = $id; $result['series'] = TRUE; return $result; } When submitting this to the database it is entering the information for everything else but the subject so I think that I’m not getting the information out of the form correctly or I have not edited the correct SQL insert. With any luck someone else will have done something similar before and can point me in the right direction If needed i can post the PHP and INC files. Thanks in advance
  11. we dont sync anything on that server.
  12. No thoughts, the only other thing that is diffrent on the server is that it has a DFS share on it (but its all the shares that we lose access to)
  13. We have been having a problem for a few months and its bugging me now. We are running 3 Windows 7 64Bit on Dell dimension 9200s in a windows 2003 Domain and they all have the problem. We can access shares from all but 1 server all the time and 1 server we can access the shares intermitently. When we first start the workstation we have access to it but over the course of the day it will drop out and then we will need to restart the workstation but it will drop out again. If we use the IP of the server we can access it fine (most of the time) but we can remote desktop to the server name, so it’s not DNS. We have disabled the power saving setting on the Network cards and have updated the drivers for them. Any thought on what to try next.
  14. Cracked it, not sure why it doesnt like the %temp% we tryed, but if we used C:\Documents and Settings\%username%\Local Settings\Temp\gm_ttt_????? then it worked. we also have added 2 more rules just in case there is a old profile in there c:\documents and settings\%username%.(Domain)\local settings\temp\gm_ttt_* c:\documents and settings\%username%.(Domain).???\local settings\temp\gm_ttt_*
  15. thanks Rvdmast, any other thoughts?
  16. I’m currently stumped, we are running a windows 2003 environment and I’m currently trying to get game maker 7 working again. We added a new software restriction policy to stop out students running files straight out of zips where we used %temp% and blocked the normal file types including exe files. When you try and run your game game maker creates a exe file in %temp%\gm_ttt_(5 numbers)\filename.exe So I’m trying to create a path rule that will allow the exe to run. I have tried the following (one at a time); %temp%\gm %temp%\gm_ttt %temp%\gm* %temp%\gm*\* %temp%\gm_ttt* %temp%\gm_ttt_?????* %temp%\gm_ttt_?????\ %temp%\gm_ttt_?????\* %temp%\gm_ttt_?????\*.exe I have been using the same policy that blocks the %temp% folder and removing the policy allows the program to work without any problem. The policy is being applyed, when looking in RSOP and it is still blocking the running of files from zips. Can anyone see what I’m doing wrong? Or suggest a better way of stopping students running files straight out of a zip without extracting them.
  17. Filtered threw EMBC Http 1) JSON 45723 2) 200 1) AMF 40101 2) 300 Https 1) JSON 49239 2) 200 1) AMF 42501 2) 300
  18. We are doing threw the same here, but only had 3 job roles 1 NM 1 Senior Tech and 1 Trainee Tech, there are 3 of us here and they applies the logic that 3 job roles means only 1 person in each role, ended up being classed as a Trainee Tech (Job Group not post). Had a meeting with the head OFC and was told that half the stuff on my job description I wasn’t expected to do. That one sent me mad, just waiting for the actual Job descriptions to come through then we shall see if all hell breaks lose
  19. Ok properly me being daft but I’ve been trying to write a script that call a process if there are less than 10 copies running, but for some reason I cant count the number of process running, colProcessList.Count only comes back with 1. On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objShell = CreateObject("WScript.Shell") Set colProcessList = objWMIService.ExecQuery _ ("Select * from Win32_Process" & _ " Where Name = 'cmd.exe'") dim fs,objTextFileset set fs=CreateObject("Scripting.FileSystemObject") dim arrStr set objTextFile = fs.OpenTextFile("C:\Users\men\Desktop\temp.csv") Set WSHShell = CreateObject("Wscript.Shell") Do while NOT objTextFile.AtEndOfStream arrStr = split(objTextFile.ReadLine,",") If colProcessList.Count = 2 Then wscript.Sleep 4000 Else WSHShell.Run "C:\Users\men\Desktop\xcacls.bat" & " " & arrStr(0) End If loop objTextFile.Closeset objTextFile = Nothingset fs = Nothing Any thoughts or even a better way of getting all the permitions off a Shaired drive.
  20. Gets threw EMBC filtering as well
  21. The way that we do it is In AD add yourself to the mailbox security with full mail box access Add the student to the Staff GAL Open Outlook and create a new profile Remove the offending email Undo all the above changes I’m not sure if this is the correct way or the best way but it works and is only done with written permission from SLT
  22. Same as all the above better to have them navigate threw than give them access to the other member of staffs account but if you do go down the route of handing out the Staff that’s on leaves account password get in it writing to cover your back. Ps. just remember to check that personal details aren’t viewable if you give out the password
  23. Do you use software restriction policies threw AD, all the active teach programs create files in %temp% If you do, use a program like FolderMonitor to see what files are created and removed when its running and add them to your software restriction list.
  24. You'll need to test this before using it but copy "\\server\Xcacls.vbs" "c:\" cscript c:\xcacls.vbs c:\folder /E /p "Authenticated users":re;re cscript c:\xcacls.vbs c:\folder /E /p "Domain\Staff":f;f cscript c:\xcacls.vbs c:\folder /E /p "Domain\domain Admins":f;f del c:\xcacls.vbs /s /q Just change the bold bits to what you need, ive not had much luck running Xcacls from a network shair also never tried it in a GPO let me know if it works.
  25. We have been running an inhouse version of SLG and the newer SLG2 and we have no end of problems. The level of support from Capita has been schocking (even by capita standards). I would strongly recomend against an inhouse hosted SLG (unless you have someone who is very experanced with Shairpoint). We are intending on moving to an LA hosted SLG once they have it up and running.
×
×
  • Create New...