-
Posts
196 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by fawkers
-
I can highly recommend Impero Impero - Complete Lab Management Solution
- 6 replies
-
- internet
- monitoring
-
(and 2 more)
Tagged with:
-
hi everyone pay is: £19,788 to £25,053
-
You can just go to phpmyadmin, click on the printmaster database, then on the export tab. If your using XAMPP the defult settings should give you a .sql file. Once your've set up your new database you can just go the SQL tab in phpmyadmin and copy paste the .sql file in and runit. That should move everything over for you.
-
if it gets pulled it will be after i've installed it! it's always that way...
-
Hello Zag, I've done some work on this over half term, which i will post but its NOT complete and still has quite a few errors. PrintMasterTest.zip but you should be able to see where i'm going with it. The issue seams to be in the Consumable.php class file around lines 220 - 235
-
thanks vikpaw (only 1 day off)
-
assuming that you extracted the files to a 'printmaster' folder you should just be able to go to http://localhost/printmaster
-
ummm, i think the end of the month the 20th is rinnging bells.
-
Offical support starts with the next releace but only with newly installed farms not an upgrade. At least this was correct on the last upgrade document I saw.
-
Hello Everyone, Trying to create a ADMX template for this can anyone see where this is going wrong? around line 32, the error that i get is: Expected one of the following possible elements(s), ,,, but found The erros is sounds good but i've been following How to create custom .adm or .admx files to add search providers to the toolbar search box in Internet Explorer 7 exactly. Google http://www.google.com/search?q={searchTerms}&sourceid=ie7&rls=com.microsoft:{language}:{referrer:source}&ie={inputEncoding?}&oe={outputEncoding?} Google http://www.google.com/search?q={searchTerms}&sourceid=ie7&rls=com.microsoft:{language}:{referrer:source}&ie={inputEncoding?}&oe={outputEncoding?}
-
Hello Everyone, Does anyone know of any 'free' or cheap solutions to this problem? I work for a charity and we would like to collect money from our members electronically so we can cut down on the amount of money we handle. There is PayPal, but can anyone thing of any other solutions? Thanks .Adam
-
hi zag, As per my post #52 the implementation on the backend isn't too bad, but i'm a php novice (a whole 48 hours ) so I might have a better look at it over half term
-
OK here is the corrected version, amazing how one line can drive you nuts! AddDrumsandLightCarts.zip There is a know fault, once you mark a consumable as one of the new types (drum or light cartridge) you cant remove it as such without editing the table. Cant track down why either.
-
sorry fokes i think i've missed one line of code in this file since im now getting; Fatal error: Call to a member function addOneOrMoreRule() on a non-object in D:\Program Files\xampp\xampp\htdocs\printmastertest\consumables.php on line 150 when adding a drum... grrrrrr i had this dam thing working, i love coding
-
Well I had some time and decided to try to implement a small extra, Recording what drums are in stock. Results are attached; if anyone could give any feedback it would be most welcome. .Adam PrintMasterAddDrums.zip
-
Hello Everyone, First off my thanks to webman for such a useful tool. I've had a word with my NM and she would like to use it however we do need to keep track of costs before we can do so. (We currently use an excell sheet) So here's my 2p's worth First of create a 'costs' table with an ID, cost, consumable_id and Effective_from fields (with consumable_id and a forgien key) CREATE TABLE IF NOT EXISTS `costs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cost` decimal(10,2) unsigned NOT NULL DEFAULT '0' COMMENT 'Cost of consumable', `consumable_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quantity of consumable in stock', `effective_from` datetime NOT NULL COMMENT 'Time of Cost', PRIMARY KEY (`id`), KEY `consumables` (`consumable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Details about the cost of consumables at a given time' AUTO_INCREMENT=0 ; ALTER TABLE `costs` ADD CONSTRAINT FOREIGN KEY (`consumable_id`) REFERENCES `consumables` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; Change the `events` table to include a cost_id field CREATE TABLE IF NOT EXISTS `events` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `printer_id` int(10) unsigned NOT NULL COMMENT 'Printer ID installed in to', `consumable_id` int(10) unsigned NOT NULL COMMENT 'Consumable ID installed', `date` datetime NOT NULL, `cost_id` int(10) unsigned NOT NULL COMMENT 'ID of the Cost', PRIMARY KEY (`id`), KEY `printerhistory` (`printer_id`), KEY `consumablehistory` (`consumable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Audit history of consumable installation into printers' AUTO_INCREMENT=0 ; ALTER TABLE `events` ADD CONSTRAINT FOREIGN KEY (`cost_id`) REFERENCES `costs` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION; now when ever you 'install' a cartridge you would have to run the following to work out what cost to use SELECT `id` FROM `costs` WHERE `consumable_id` = '1' AND effective_from < NOW() ORDER BY `effective_from` DESC LIMIT 1; and of course you would have to add a costs field to the add\edit consumable screens and update the `costs` table each time. now the catch, I know nothing what so ever about PHP so i can only test this from the cmd line, but what do you think?
-
Hello Everyone Sorry to bump an old thread but would anyone be willing to send me a copy of their SLA's or service contact they they have with a primary (suitabily redacted). Were considering offering this service out and would be quite intrested in the nitty gritty details. Also since this is an old thread how are things going? Thanks .Adam
-
Hello Everyone I'm looking for a solution so that we can e-mail all our parents. We are running Sims Learning Gateway which means we have the AD Provisioning Service running. When a new Contact is added to a student we provision that contact so that they have an AD User Account to login. This also means that the User has an e-mail field with their home e-mail address in it. Exchange in it's own unique way wont accept any Users in a distribution group which are not mail enabled, of course if you mail enable them that means that they have a mail box on our system which they would have to check (a non-starter). THe only way I can see or find documented to be able to e-mail out to these parents would be to create a Contact for each parent as well as their user account and add these contacts to the relevent groups. How do you do it? .Adam
-
Resolved: Using the wrong url I should have been using the following stssync://sts/?ver=1.1&type=calendar&cmd=add-folder&base-url=https%3A%2F%2FSUBDOMAIN%2EDOMAIN%2Eorg&list-url=%2FLists%2FCalendar%2F&guid=%7B43028452%2Da6e2%2D41f4%2Da787%2D63ea9c332868%7D&site-name=SHSG%20Learning%20Gateway&list-name=Staff%20Calendar which you get when using 'connect to outlook' in the calendar.
-
Hello Everyone, I'm trying to add a defualt SharePoint list to all my users who use Outlook. I've gone to group policy and created a policy under Admin Templates\MS Outlook 2007\Tools | Accoutn Settings /Sharepoint lists and added a name value of Staff Calendat (this is ignored i know) and a value of https://Server.local/Lists/Calendar/ New this policy is applying correctly (checked with RSOP) however the list isn't being added to the users outlook profile. Any Ideas? thanks Adam
-
you could try a little scripting (powershell) $path = "M:\Source\" $List = Get-ChildItem -path $path -Name foreach($item in $list) { $input = $path+$item $output = $path+$item+"output" .\HandBrakeCLI -i $input -o $output --preset="Universal" } This needs to be run the the DIR of the Handbrakecli.exe file
