Chamilo LMS - Bug #6044 AICC import - "The package you are trying to upload has an unknown format."

Size: px
Start display at page:

Download "Chamilo LMS - Bug #6044 AICC import - "The package you are trying to upload has an unknown format.""

Transcription

1 Chamilo LMS - Bug #6044 AICC import - "The package you are trying to upload has an unknown format." 19/03/ :13 - Terence van Jaarsveldt Status: Bug resolved Start date: 19/03/2013 Priority: Normal Due date: Assignee: Yannick Warnier % Done: 100% Category: Learning paths / Lecciones Estimated time: 0.00 hour Target version: Spent time: 0.00 hour Complexity: Normal SCRUM pts - complexity:? Description Hi I have a problem when importing an AICC package in chamilo. My installation is a normal clean chamilo installation. I tried this on multiple servers including localhost. I also tried with installation with same results. When I try to upload the AICC package (.zip - 6KB) it shows this error: The package you are trying to upload has an unknown format. Please check it uses one of the supported formats. This is a test AICC package that has been tested on other portals. Thank you Associated revisions Revision abf5cf78-02/12/ :56 - Yannick Warnier Fix bug with unrecognized AICC format - refs #6044 History #1-04/04/ :16 - Terence van Jaarsveldt Anyone please help. This is really urgent! #2-04/04/ :58 - Yannick Warnier - Priority changed from Urgent to Normal Hi Terence, Sorry, we are apparently all very busy at the moment. We generally prioritize support to people who have provided support to others previously in our big family. Seeing this is your first contribution here, don't get your hopes too high. We will help eventually, but we all have very urgent stuff to do. You can find the code related to this error around line 26 of main/upload/upload.scorm.php (as you have installed Chamilo which isn't considered stable yet, I assume you have technical skills of some kind). The AICC support has been left uncared for several years now, so you might need to refresh some little things to get it working. Let us know if you fix it (that will count for the next time you need help). 22/09/2018 1/6

2 Please, do not use the "Priority" setting of the task if you are not yourself an active contributor. This is to indicate that this task is urgent for the community at large. Thank you for reporting. #3-04/04/ :08 - Terence van Jaarsveldt Thank you very much. I will work on this and return on this topic. Sorry for using the priority setting. Maybe let people know of this in the reporting guide or maybe I missed it. #4-12/08/ :05 - Terence van Jaarsveldt Hello everyone I am at a total loss. I can't seem to get anything to work. Could anyone please help with this or direct me in the right direction please. #5-20/08/ :04 - Terence van Jaarsveldt Hello I tried to upload a test AICC package and a sample AICC package that I found on both the Chamilo LMS and Chamilo LCMS demo/try sites. This failed with the same error. Both of these courses uploaded successfully on Scormcloud as well. Please help #6-20/08/ :29 - Marko Kastelic hi, some days ago i construct course 'AICC test' (or something) on stable chamilo. I uploaded some sample aicc packages (document repository). I notices that uploading of the package fails when manifest file is not included in the package (manifest????). Than; with the sample from CourseLab (2) with included manifest; there are some problems in interaction with api (no progress stored,...). I did not found the time to investigate further... #7-21/08/ :28 - Yannick Warnier Hi Terence, do you have a test package we can try out? #8-21/08/ :37 - Marko Kastelic Looks like AICC package cannot be recognized. The piece of code from main/newscorm/learnpath.class.php (get_package_type/2), from line 1856: elseif (preg_match('/aicc\//i', $thiscontent['filename'])) { // If found an aicc directory... (!= false means it cannot be false (error) or 0 (no match)). $package_type = 'aicc'; // // Don't exit the loop, because if we find an imsmanifest afterwards, we want it, not the AICC. 22/09/2018 2/6

3 looks for aicc folder and fails if there is no one. From aicc package specification: package contains files with extensions: - CRS - Course Description file (mandatory) - AU - Assignable Unit file (mandatory) - DES - Descriptor file (mandatory) - CST - Course Structure file (mandatory) - ORE - Objective Relationship file (optional) - PRE - Prerequisites file (optional) - CMP - Completion Requirements file (optional) so we should check if there is one of the mandatory files in the root of the package, like: elseif (preg_match('/aicc\//i', $thiscontent['filename'])!= false in_array(strtolower(pathinfo($thiscontent['filename'], PATHINFO_EXTENSION)), array( 'crs','au','des','cst'))) { this one fails if there is a file with different extension than one specified with array or elseif (preg_match('/aicc\//i', $thiscontent['filename'])!=false strtolower(pathinfo($thiscontent['filename'], PATHINFO_EXTENSION)) == 'crs') { with a little change in the rest of code (does we really need else { at the end of the method? as for manifest: there shouldn't be one as package is recognized as scorm #9-21/08/ :40 - Yannick Warnier I think it's worth putting a little bit more of the context here... this is the uncut part of the original code in Chamilo 1.9.6: $zipfile = new PclZip($file_path); // Check the zip content (real size and file extension). $zipcontentarray = $zipfile->listcontent(); $at_root = false; $manifest = ''; // The following loop should be stopped as soon as we found the right imsmanifest.xml (how to recognize it?). if (is_array($zipcontentarray) && count($zipcontentarray) > 0) { foreach ($zipcontentarray as $thiscontent) { if (preg_match('~.(php.* phtml)$~i', $thiscontent['filename'])) { // New behaviour: Don't do anything. These files will be removed in scorm::import_package. 22/09/2018 3/6

4 elseif (stristr($thiscontent['filename'], 'imsmanifest.xml')!== false) { $manifest = $thiscontent['filename']; // Just the relative directory inside scorm/ $package_type = 'scorm'; // Exit the foreach loop. elseif (preg_match('/aicc\//i', $thiscontent['filename'])) { // If found an aicc directory... (!= false means it cannot be false (error) or 0 (no match)). $package_type = 'aicc'; // // Don't exit the loop, because if we find an imsmanifest afterwards, we want it, not the AICC. else { return $package_type; From the requirements you indicate (Marko), it is important that all 4 of these files be present. The resulting code should thus be something like this: $zipfile = new PclZip($file_path); // Check the zip content (real size and file extension). $zipcontentarray = $zipfile->listcontent(); $at_root = false; $manifest = ''; $aicc_match_crs = 0; $aicc_match_au = 0; $aicc_match_des = 0; $aicc_match_cst = 0; // The following loop should be stopped as soon as we found the right imsmanifest.xml (how to recognize it?). if (is_array($zipcontentarray) && count($zipcontentarray) > 0) { foreach ($zipcontentarray as $thiscontent) { if (preg_match('~.(php.* phtml)$~i', $thiscontent['filename'])) { // New behaviour: Don't do anything. These files will be removed in scorm::import_package. elseif (stristr($thiscontent['filename'], 'imsmanifest.xml')!== false) { $manifest = $thiscontent['filename']; // Just the relative directory inside scorm/ $package_type = 'scorm'; // Exit the foreach loop. elseif (preg_match('/aicc\//i', $thiscontent['filename']) in_array(strtolower(pathinfo($thiscontent['filename'], PATHINFO_EXTENSION)), array( 'crs','au','des','cst'))) { $ext = strtolower(pathinfo($thiscontent['filename'], PATHINFO_EXTENSION)); switch ($ext) { case 'crs': $aicc_match_crs = 1; case 'au': $aicc_match_au = 1; 22/09/2018 4/6

5 case 'des': $aicc_match_des = 1; case 'cst': $aicc_match_cst = 1; default: // // Don't exit the loop, because if we find an imsmanifest afterwards, we want it, not the AICC. else { if (empty($package_type) && 4 == ($aicc_match_crs + $aicc_match_au + $aicc_match_des + $aicc_match_cst)) { // If found an aicc directory... (!= false means it cannot be false (error) or 0 (no match)). $package_type = 'aicc'; return $package_type; I think that would do it in a better way (at least taking into account the 4 "mandatory" items you mentionned). Terence, are you OK with trying out this test code, or do you need a specially-crafted zip? I'm asking because it makes us work more to provide betas to anyone, but that really helps if the opposite is not requesting but not helping at all either. #10-21/08/ :12 - Marko Kastelic test aicc packages : will be nice to get one from Terence... (my courselab sample sets score but not progress) edit: upload works like charm. Testted and can be implemented. #11-21/08/ :45 - Terence van Jaarsveldt - File L_ zip added - File sample_crs_flash.zip added Thank you for pursuing this. I'm attaching the test course and the sample course that I referred to previously. #12-23/08/ :22 - Yannick Warnier - Category set to Learning paths / Lecciones - Target version set to #13-02/09/ :51 - Terence van Jaarsveldt 22/09/2018 5/6

6 Hello everyone Is there maybe an update on this? #14-19/09/ :25 - Terence van Jaarsveldt Any news on this matter? I really would like to start using AICC. #15-30/09/ :01 - Terence van Jaarsveldt Hello? If there is any other resources that I need to provide, please let me know. #16-30/09/ :06 - Marko Kastelic - File learnpath.class.php added replace the original file.../main/newscorm/learnpath.class.php with attached one. note: package will load, but your samples(because of crossdomain content) probably won't. #17-22/10/ :20 - Yoselyn Castillo - Status changed from New to Assigned - Assignee set to Yoselyn Castillo checking.. #18-24/10/ :48 - Yoselyn Castillo - Status changed from Assigned to New - Assignee deleted (Yoselyn Castillo) #19-02/12/ :57 - Yannick Warnier - Status changed from New to Bug resolved - Assignee set to Yannick Warnier - % Done changed from 0 to 100 Terrence, I will be closing this task for lack of feedback. I have applied the changes documented previously (and sent as file by Marko), so as far as I am concerned, Marko having confirmed and all, this issue is fixed. Files Untitled.png 21.7 KB 19/03/2013 Terence van Jaarsveldt L_ zip 1.62 KB 21/08/2013 Terence van Jaarsveldt sample_crs_flash.zip 1 KB 21/08/2013 Terence van Jaarsveldt learnpath.class.php 426 KB 30/09/2013 Marko Kastelic 22/09/2018 6/6

7

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not?

Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Subversion was not there a minute ago. Then I went through a couple of menus and eventually it showed up. Why is it there sometimes and sometimes not? Trying to commit a first file. There is nothing on

More information

QGIS Application - Bug report #8942 R6034 runtime error

QGIS Application - Bug report #8942 R6034 runtime error QGIS Application - Bug report #8942 R6034 runtime error 2013-10-23 04:42 PM - Leszek Pawlowicz Status: Reopened Priority: rmal Assignee: Category: Build/Install Affected QGIS version:2.18.11 Regression?:

More information

============================================================================

============================================================================ Add Ubuntu Unity support, Panel Applet (Tray Icon) Posted by ezkomomo - 2013/07/20 09:50 On Ubuntu 13.04 with Unity it would be very useful to add a tray icon (panel applet) like the icon in the window

More information

How to skin Rainlendar 2 Posted by he_the_great /11/01 16:03

How to skin Rainlendar 2 Posted by he_the_great /11/01 16:03 How to skin Rainlendar 2 Posted by he_the_great - 2006/11/01 16:03 Rainy hasn't documented the skinning of RL2 yet, so I thought I would start with explaining some general aspects of it relating to the

More information

QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering

QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering QGIS Application - Bug report #18988 QGIS Server rendering different from Desktop rendering 04:13 PM - Status: Closed Priority: rmal Assignee: Paul Blottiere Category: QGIS Server Affected QGIS version:3.1(master)

More information

Setting Up OS/2 Peer-to-Peer Networking & Coexistence of Warp & NT Machines

Setting Up OS/2 Peer-to-Peer Networking & Coexistence of Warp & NT Machines Setting Up OS/2 Peer-to-Peer Networking & Coexistence of Warp & NT Machines 1998, Frank R. Field, III (furd@mit.edu) (Last revision: February 13, 1998} Ed. Original version is http://web.mit.edu/activities/os2/peer/warppeer.htm.

More information

CAELinux 2013: development and testing Posted by jcugnoni - 06 Apr :45

CAELinux 2013: development and testing Posted by jcugnoni - 06 Apr :45 CAELinux 2013: development and testing Posted by jcugnoni - 06 Apr 2013 13:45 Hi everyone, after a long break in 2012 without much development of CAELinux, I am restarting the development of a new release,

More information

CHIRP - Bug # Description

CHIRP - Bug # Description CHIRP - Bug # 3539 Status: Closed Priority: Normal Author: Bob Belbeck Category: Created: 04/02/2016 Assignee: Pavel Milanes Updated: 06/16/2017 Due date: Chirp Version: daily Model affected: QYT KT8900

More information

CHIRP - New Model # 1343

CHIRP - New Model # 1343 CHIRP - New Model # 1343 Status: Closed Priority: Normal Author: Robert Elsinga Category: Created: 01/02/2014 Assignee: Robert Elsinga Updated: 06/28/2018 Due date: Chirp Version: 0.3.0 Equipment Loan

More information

"Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug :14

Missing log in edit viewer, all media gone Posted by prodeuser - 17 Aug :14 "Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug 2013 06:14 So, this has happened a couple of times now. I am a new Lightworks user and have been doing some testing. As I increase

More information

In today s video I'm going show you how you can set up your own online business using marketing and affiliate marketing.

In today s video I'm going show you how you can set up your own online business using  marketing and affiliate marketing. Hey guys, Diggy here with a summary of part two of the four part free video series. If you haven't watched the first video yet, please do so (https://sixfigureinc.com/intro), before continuing with this

More information

Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5

Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5 Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5 [talking head] This lecture we study theory design and implementation. Programmers have two roles to play here. In one role, they

More information

BUSINESS SKILLS LESSON 5: ING OPENING AND CLOSING AN AIM OF THE LESSON: TO LEARN HOW TO OPEN AND CLOSE AN . Version without a key.

BUSINESS SKILLS LESSON 5:  ING OPENING AND CLOSING AN  AIM OF THE LESSON: TO LEARN HOW TO OPEN AND CLOSE AN  . Version without a key. SZKOLENIA JĘZYKOWE DLA FIRM BUSINESS SKILLS LESSON 5: EMAILING OPENING AND CLOSING AN EMAIL AIM OF THE LESSON: TO LEARN HOW TO OPEN AND CLOSE AN EMAIL Version without a key. 1 READING READ THE TEXT and

More information

FileWave 10 Webinar Q&A

FileWave 10 Webinar Q&A FileWave 10 Webinar Q&A When will 10 be released? October 14 th, but you can sign up today to get into the beta program. Link: www.filewave.com/beta-program How stable is the beta? Should we use it for

More information

============================================================================

============================================================================ Linux, Cinnamon: cannot create panel icon Posted by JN_Mint - 2019/01/05 21:28 In Cinnamon (on Mint 19.3), with 'show tray icon' enabled in Rainlendar, there is no icon in any panel on my system and Cinnamon

More information

Taking Control of Your . Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006

Taking Control of Your  . Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006 Taking Control of Your E-Mail Terry Stewart Lowell Williamson AHS Computing Monday, March 20, 2006 Overview Setting up a system that works for you Types of e-mail Creating appointments, contacts and tasks

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

Setup Error Code 43 Nvidia Windows 7 Bluetooth

Setup Error Code 43 Nvidia Windows 7 Bluetooth Setup Error Code 43 Nvidia Windows 7 Bluetooth Windows 7 code 43 error fixing trick How to fix errors on windows 7 64 bit and 32 bit please. I have an Nvidia GTX 460 and have had it for four years without

More information

Sorry The Operation Could Not Be Completed Error Code 0

Sorry The Operation Could Not Be Completed Error Code 0 Sorry The Operation Could Not Be Completed Error Code 0 I get an error message that says Sorry the operation could not be completed because an unexpected error occurred (Error code 0). Any ideas? I successfully.

More information

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration Who am I? I m a python developer who has been working on OpenStack since 2011. I currently work for Aptira, who do OpenStack, SDN, and orchestration consulting. I m here today to help you learn from my

More information

============================================================================

============================================================================ VMware 7 Eve stutters in windowed mode Posted by innriwins - 2014/02/10 10:28 Hi, So i started running eve on VMware 7 and i got a problem with very frequent stutters. It goes away when i change to "intervale

More information

BBC Learning English Face up to Phrasals Bob & Jackie's Chemistry Project

BBC Learning English Face up to Phrasals Bob & Jackie's Chemistry Project BBC Learning English Face up to Phrasals & 's Chemistry Project Episode 1: Let's Get Started : Ok, chemistry project. Let's get this up. Are you ok,? experiment set What's all this about a chemistry project?

More information

Genealogy Software. Table of Contents

Genealogy Software. Table of Contents Genealogy Software Table of Contents Genealogy Software Overview... 2 Best Genealogy Software of 2017... 4 Family Tree Maker Software Update Information... 4 1 Genealogy Software Overview GENEALOGY SOFTWARE

More information

MITOCW watch?v=w_-sx4vr53m

MITOCW watch?v=w_-sx4vr53m MITOCW watch?v=w_-sx4vr53m The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To

More information

BBC LEARNING ENGLISH 6 Minute English Wireless furniture for phones

BBC LEARNING ENGLISH 6 Minute English Wireless furniture for phones BBC LEARNING ENGLISH 6 Minute English Wireless furniture for phones NB: This is not a word-for-word transcript Hello and welcome to 6 Minute English. I'm and I'm. Hello. Hello,! Now,, could I borrow your

More information

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5

9.0 Help for Community Managers About Jive for Google Docs...4. System Requirements & Best Practices... 5 for Google Docs Contents 2 Contents 9.0 Help for Community Managers... 3 About Jive for Google Docs...4 System Requirements & Best Practices... 5 Administering Jive for Google Docs... 6 Quick Start...6

More information

Understandable manual? Posted by Max Besser - 02 Feb :10

Understandable manual? Posted by Max Besser - 02 Feb :10 Understandable manual? Posted by Besser - 02 Feb 2011 17:10 www.lightworksbeta.com/index.php?option=com_kunena&func=view&catid=6&id=5100& amp;limit=6&limitstart=6&itemid=202#5167 Forum Admin wrote: @ Besser

More information

QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file

QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file QGIS Application - Bug report #17043 Browser keeps scanning directory with gpkg file 2017-08-21 12:50 PM - Richard Duivenvoorde Status: Closed Priority: High Assignee: Alessandro Pasotti Category: Browser

More information

Grocery List: An Android Application

Grocery List: An Android Application The University of Akron IdeaExchange@UAkron Honors Research Projects The Dr. Gary B. and Pamela S. Williams Honors College Spring 2018 Grocery List: An Android Application Daniel McFadden djm188@zips.uakron.edu

More information

MITOCW watch?v=0jljzrnhwoi

MITOCW watch?v=0jljzrnhwoi MITOCW watch?v=0jljzrnhwoi The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

CHIRP - New Model # 217

CHIRP - New Model # 217 CHIRP - New Model # 217 Status: Closed Priority: Normal Author: James Beckner Category: Created: 06/13/2012 Assignee: Tom Hayward Updated: 10/30/2015 Due date: Chirp Version: daily Equipment Loan Offered:

More information

SIMPLE PROGRAMMING. The 10 Minute Guide to Bitwise Operators

SIMPLE PROGRAMMING. The 10 Minute Guide to Bitwise Operators Simple Programming SIMPLE PROGRAMMING The 10 Minute Guide to Bitwise Operators (Cause you've got 10 minutes until your interview starts and you know you should probably know this, right?) Twitter: Web:

More information

CHIRP - Bug # Description. When trying to download from radio, recieve "Incorrect Model Selected" error, Associated revisions.

CHIRP - Bug # Description. When trying to download from radio, recieve Incorrect Model Selected error, Associated revisions. CHIRP - Bug # 5625 Status: In Progress Priority: Normal Author: David Gordley Category: Created: 03/04/2018 Assignee: Unroe Updated: 08/22/2018 Due date: Chirp Version: daily Model affected: BTECH GMRS-V1

More information

Java Programming. Computer Science 112

Java Programming. Computer Science 112 Java Programming Computer Science 112 Yay Programming! How did the RPS program go? Did you notice the part where I pointed at the answer on the board that we did together? Biggest problems in NumbersAndMath

More information

Version Developed & Programmed by Ryan Stevenson. Plugin Support:

Version Developed & Programmed by Ryan Stevenson. Plugin Support: Version 1.0 http://localazon.com/ Developed & Programmed by Ryan Stevenson Plugin Support: http://localazon.com/support/ Free Global Marketing Newsletter: http://localazon.com/global/ Table of Contents

More information

Exiv2 - Support #1151 Small raw images size

Exiv2 - Support #1151 Small raw images size Exiv2 - Support #1151 Small raw images size 10 Jan 2016 16:17 - Wil Hermes Status: Closed Start date: 10 Jan 2016 Priority: Normal Due date: Assignee: Robin Mills % Done: 100% Category: basicio Estimated

More information

How to import, edit, AVI files? Posted by curmudgeon66-02 Dec :33

How to import, edit, AVI files? Posted by curmudgeon66-02 Dec :33 How to import, edit, AVI files? Posted by curmudgeon66-02 Dec 2010 03:33 Running Windows 7 64bit on HPE-450t, Intel core i7 CPU 870, ATI Radeon HD 5570 video card. The install appears to have gone just

More information

WYBCS Android Programming (with AppInventor) Family fun day

WYBCS Android Programming (with AppInventor) Family fun day WYBCS Android Programming (with AppInventor) Family fun day Overview of the day Intros Hello Android! Installing AppInventor Overview of AppInventor Making your first app What's special about mobile? Changing

More information

CHIRP - Bug # Cannot upload to Yaesu FT-897D (US) Mac OS X Description

CHIRP - Bug # Cannot upload to Yaesu FT-897D (US) Mac OS X Description CHIRP - Bug # 1715 Status: Feedback Priority: Normal Author: Chuck Reti Category: Created: 06/23/2014 Assignee: Filippi Marco Updated: 08/05/2014 Due date: Chirp Version: 0.4.0 Model affected: FT897 Platform:

More information

The following content is provided under a Creative Commons license. Your support

The following content is provided under a Creative Commons license. Your support MITOCW Recitation 1 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To make

More information

6.2 Ingredion Learning Workday Drive Learning Admin - 08.Nov.2018

6.2 Ingredion Learning Workday Drive Learning Admin - 08.Nov.2018 Contents Overview... 2 Accessing the Drive... 2 What s already in the Drive... 3 Adding Content to the Drive... 4 Creating New Folders... 5 Sharing Content in the Drive... 5 Previewing Content... 6 Editing

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs anywhere. Change a file on the web, your computer, or your mobile device, and it updates

More information

Azon Master Class. By Ryan Stevenson Guidebook #10 Google and YouTube Marketing

Azon Master Class. By Ryan Stevenson   Guidebook #10 Google and YouTube Marketing Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #10 Google and YouTube Marketing Table of Contents 1. Google Analytics 2. Google Webmaster Tools 3. Google Plus 4. YouTube

More information

BEGINNER PHP Table of Contents

BEGINNER PHP Table of Contents Table of Contents 4 5 6 7 8 9 0 Introduction Getting Setup Your first PHP webpage Working with text Talking to the user Comparison & If statements If & Else Cleaning up the game Remembering values Finishing

More information

The Definitive Guide to Fractal Awesomeness with J-WildFire!

The Definitive Guide to Fractal Awesomeness with J-WildFire! Installing Java and J-WildFire - by Martin Flink Copyright 2013 Martin Flink All Rights Reserved. No part of this document may be reproduced in any form without permission in writing from the author. Contact:

More information

Close Your File Template

Close Your File Template In every sale there is always a scenario where I can t get someone to respond. No matter what I do. I can t get an answer from them. When people stop responding I use the Permission To. This is one of

More information

Update Root Certificates Feature Isn Enabled >>>CLICK HERE<<<

Update Root Certificates Feature Isn Enabled >>>CLICK HERE<<< Update Root Certificates Feature Isn Enabled Windows Xp If you are having issues accessing the itunes Store after updating to the latest version of Enable the option to "Set date and time automatically"

More information

The Stack, Free Store, and Global Namespace

The Stack, Free Store, and Global Namespace Pointers This tutorial is my attempt at clarifying pointers for anyone still confused about them. Pointers are notoriously hard to grasp, so I thought I'd take a shot at explaining them. The more information

More information

Windows Xp Sp3 Unable To Use Windows Update Not Working

Windows Xp Sp3 Unable To Use Windows Update Not Working Windows Xp Sp3 Unable To Use Windows Update Not Working Use the troubleshooter in this article to resolve Windows Update errors "0x80248007". If you are running Windows Vista or Windows XP Service Pack

More information

Git Workbook. Self-Study Guide to Git. Lorna Mitchell. This book is for sale at

Git Workbook. Self-Study Guide to Git. Lorna Mitchell. This book is for sale at Git Workbook Self-Study Guide to Git Lorna Mitchell This book is for sale at http://leanpub.com/gitworkbook This version was published on 2018-01-15 This is a Leanpub book. Leanpub empowers authors and

More information

QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file

QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file QGIS Application - Bug report #418 QGIS fails to read undefined projection from user datum in shape.prj file 2006-12-03 02:38 AM - neteler-itc-it - Status: Closed Priority: Low Assignee: Magnus Homann

More information

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly.

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly. Wrong time on recurring google calendar events Posted by AraldoL - 2014/01/11 06:21 Hello, using the latest stable Rainlendar Pro 2.12 I had some issues: After every installation on my two computers it

More information

1.7 Limit of a Function

1.7 Limit of a Function 1.7 Limit of a Function We will discuss the following in this section: 1. Limit Notation 2. Finding a it numerically 3. Right and Left Hand Limits 4. Infinite Limits Consider the following graph Notation:

More information

Manually Backup Itunes Library To External >>>CLICK HERE<<<

Manually Backup Itunes Library To External >>>CLICK HERE<<< Manually Backup Itunes Library To External Drive Windows 7 Make a new backup of your itunes library, or update your existing backup before you move it. Note: If you move your media to an external hard

More information

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile Status: Closed Priority: Normal Author: Enno Grà per Category: Created: 2011-07-17 Assignee: Updated: 2012-06-23 Due date:

More information

Q&A Session for Connect with Remedy - CMDB Best Practices Coffee Break

Q&A Session for Connect with Remedy - CMDB Best Practices Coffee Break Q&A Session for Connect with Remedy - CMDB Best Practices Coffee Break Date: Thursday, March 05, 2015 Q: When going to Asset Management Console and making an update on there, does that go to a sandbox

More information

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018

CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018 CSSE 304 Assignment #13 (interpreter milestone #1) Updated for Fall, 2018 Deliverables: Your code (submit to PLC server). A13 participation survey (on Moodle, by the day after the A13 due date). This is

More information

MITOCW watch?v=yarwp7tntl4

MITOCW watch?v=yarwp7tntl4 MITOCW watch?v=yarwp7tntl4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality, educational resources for free.

More information

Internet Connection Problems Manual Ip Address Failed Ps3 Wireless

Internet Connection Problems Manual Ip Address Failed Ps3 Wireless Internet Connection Problems Manual Ip Address Failed Ps3 Wireless The PS3 aquires an IP address now but fails on the internet connection. likely given your other devices work) or could be a technical

More information

Download, Install and Use Winzip

Download, Install and Use Winzip Download, Install and Use Winzip Something that you are frequently asked to do (particularly if you are in one of my classes) is to either 'zip' or 'unzip' a file or folders. Invariably, when I ask people

More information

[Processing.js #2002] loadxml() is broken 10 messages

[Processing.js #2002] loadxml() is broken 10 messages 1 of 5 2/3/2015 2:20 PM [Processing.js #2002] loadxml() is broken 10 messages Sun, Mar 17, 2013 at 3:49 AM matteosistisette updated this ticket at March 17th, 2013 @ 06:49 AM Tested on 2.08b. String url="http://www.matteosistisette.com/upf-redes-x/php/_processing/formas_xml/cargaformas.php"

More information

Clickteam Fusion 2.5 Creating a Debug System - Guide

Clickteam Fusion 2.5 Creating a Debug System - Guide INTRODUCTION In this guide, we will look at how to create your own 'debug' system in Fusion 2.5. Sometimes when you're developing and testing a game, you want to see some of the real-time values of certain

More information

BCSWomen Android programming (with AppInventor) Family fun day World record attempt

BCSWomen Android programming (with AppInventor) Family fun day World record attempt BCSWomen Android programming (with AppInventor) Family fun day World record attempt Overview of the day Intros Hello Android! Getting your app on your phone Getting into groups Ideas for apps Overview

More information

RIS shading Series #2 Meet The Plugins

RIS shading Series #2 Meet The Plugins RIS shading Series #2 Meet The Plugins In this tutorial I will be going over what each type of plugin is, what their uses are, and the basic layout of each. By the end you should understand the three basic

More information

CHIRP - New Model # 2475

CHIRP - New Model # 2475 CHIRP - New Model # 2475 Status: Feedback Priority: Normal Author: Gary M Category: Created: 03/30/2015 Assignee: Jim Unroe Updated: 06/19/2015 Due date: Chirp Version: daily Equipment Loan Offered: No

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

#jenkinsconf. Jenkins user plugin. This time it's. Jenkins User Conference Israel. Shiran JFrog

#jenkinsconf. Jenkins user plugin. This time it's. Jenkins User Conference Israel. Shiran JFrog Jenkins user plugin This time it's Shiran Rubin @ShiranRU JFrog http://jfrog.com July 16, 2014 About me Groovy developer in JFrog. The home of We work with: But support many others. It's time to There's

More information

Blog post on updates yesterday and today:

Blog post on updates yesterday and today: Beta Bug Prioritization meeting IRC Transcript 12 November 2013 Meeting was held in IRC, on the #devmo channel. Meetings are weekly, every Tuesday at 17:00 UTC (10am PST) ok, everyone, we're ready to start

More information

Out for Shopping-Understanding Linear Data Structures English

Out for Shopping-Understanding Linear Data Structures English Out for Shopping-Understanding Linear Data Structures English [MUSIC PLAYING] [MUSIC PLAYING] TANZEELA ALI: Hi, it's Tanzeela Ali. I'm a software engineer, and also a teacher at Superior University, which

More information

MITOCW ocw f99-lec07_300k

MITOCW ocw f99-lec07_300k MITOCW ocw-18.06-f99-lec07_300k OK, here's linear algebra lecture seven. I've been talking about vector spaces and specially the null space of a matrix and the column space of a matrix. What's in those

More information

Helping the Compiler Help You. Thomas Dy

Helping the Compiler Help You. Thomas Dy Helping the Compiler Help You Thomas Dy Programming do { programmer.write_code(); if(lazy) { sleep(); } compile_code(); } while(compiler.has_errors()); Compiler: Me no speaky English Programmer: Compiler,

More information

Manual Vba Access 2010 Close Form Without Saving Record

Manual Vba Access 2010 Close Form Without Saving Record Manual Vba Access 2010 Close Form Without Saving Record I have an Access 2010 database which is using a form frmtimekeeper to keep Then when the database is closed the close sub writes to that same record

More information

Post Experiment Interview Questions

Post Experiment Interview Questions Post Experiment Interview Questions Questions about the Maximum Problem 1. What is this problem statement asking? 2. What is meant by positive integers? 3. What does it mean by the user entering valid

More information

Oracle Cloud. Content and Experience Cloud ios Mobile Help E

Oracle Cloud. Content and Experience Cloud ios Mobile Help E Oracle Cloud Content and Experience Cloud ios Mobile Help E82090-01 February 2017 Oracle Cloud Content and Experience Cloud ios Mobile Help, E82090-01 Copyright 2017, 2017, Oracle and/or its affiliates.

More information

Contributing to a Community

Contributing to a Community Contributing to a Community Contents 2 Contents Contributing to a Community...3 I'm Contributing to a Community, Where Do I Begin?...3 Set Up Your Profile... 4 What Else Can I Do Here?...4 What's My Role

More information

15-110: Principles of Computing, Spring 2018

15-110: Principles of Computing, Spring 2018 15-110: Principles of Computing, Spring 2018 Programming Assignment 11 (PA11) Due: Tuesday, May 1 by 9PM IMPORTANT ANNOUNCEMENT You cant drop this assignment even if it is your lowest PA score. Failure

More information

A PROGRAM IS A SEQUENCE of instructions that a computer can execute to

A PROGRAM IS A SEQUENCE of instructions that a computer can execute to A PROGRAM IS A SEQUENCE of instructions that a computer can execute to perform some task. A simple enough idea, but for the computer to make any use of the instructions, they must be written in a form

More information

Movian - Bug #1835.srt subtitles won't show if.mkv file has multiple subtitles tracks embedded (played from UPnP share)

Movian - Bug #1835.srt subtitles won't show if.mkv file has multiple subtitles tracks embedded (played from UPnP share) Movian - Bug #1835.srt subtitles won't show if.mkv file has multiple subtitles tracks embedded (played from UPnP share) 01/06/2014 02:07 PM - Maciek Rojek Status: Invalid Start date: 01/06/2014 Priority:

More information

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02 Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May 2018 21:02 Using trial version. Im unable to import anything. Ive tried converting to mp4/aac/mp3/mpg2(ive tried many more

More information

============================================================================

============================================================================ [Solved] Title effects in v11 free? Posted by Driftwood Productions - 08 Jul 2012 15:24 I'm running LWKS v11 free edition, and am trying to figure out how to add title effects to my project, however, I

More information

Linksys WRT54G v5.0 & 5.1 & 6.0

Linksys WRT54G v5.0 & 5.1 & 6.0 Log in / create account Go Main Page Community portal Current events Recent changes Random page Help Donations Linksys WRT54G v5.0 & 5.1 & 6.0 From DD-WRT Wiki Contents 1 How To Flash 2 Other Notes How

More information

Error Code 9 Tried All Troubleshooting

Error Code 9 Tried All Troubleshooting Error Code 9 Tried All Troubleshooting Multisite Tutorials, 9 Responses, April 12, 2015 All you need to do is add a few lines of code to turn on debugging mode for your site. Though, there is a way to

More information

Azon Master Class. By Ryan Stevenson Guidebook #4 WordPress Installation & Setup

Azon Master Class. By Ryan Stevenson   Guidebook #4 WordPress Installation & Setup Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #4 WordPress Installation & Setup Table of Contents 1. Add Your Domain To Your Website Hosting Account 2. Domain Name Server

More information

Do you think you'll be using a computer with the Windows 8 operating system on it anytime soon?

Do you think you'll be using a computer with the Windows 8 operating system on it anytime soon? Do you think you'll be using a computer with the Windows 8 operating system on it anytime soon? No Yes 53.1% 46.9% Do you think you'll be using a computer with the Windows 8 operating system on it anytime

More information

Use Error Code 43 Windows 7 Usb Ports Not Working

Use Error Code 43 Windows 7 Usb Ports Not Working Use Error Code 43 Windows 7 Usb Ports Not Working If you're receiving error Windows has stopped this device because it has reported problems (Code 43), for devices in Windows, fix is here. in the USB drive,

More information

Why You Should Not Use Arch

Why You Should Not Use Arch Why You Should Not Use Arch A new users guide to highly personalized, low maintenance operating system. Artur Frącek CC BY-NC-ND 4.0 1 Intro Arch is a very good Linux distribution so it is not a surprise

More information

The AffManual by Raimundas M.

The AffManual by Raimundas M. Page 1 METHOD #8 Clickbank and Mobile Apps Page 2 Introduction Mobile app industry is on fire at the moment and I don't see slowing down any time soon. Anyone who use smartphones, also use mobile apps.

More information

Robert Ragan s TOP 3

Robert Ragan s TOP 3 Robert Ragan s TOP 3 Internet Genealogy Research POWER TECHNIQUES that Have Stunned Audiences POWER TECHNIQUES TWO: Robert s Unique "Gather, Store and Quick Find Method." You'll have to see it to believe

More information

FAN-TASTIC HOME Solar X-rays:

FAN-TASTIC HOME Solar X-rays: FAN-TASTIC HOME Solar X-rays: Geomagnetic Field: CQ CQ...From The Cyber Seas on the Pirate Ship FANTASTIC to the High Desert...and Back! FAN-TASTIC FORUM Art Bell Art Bell On Board - A Special Cam Site

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Casio SK-1 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 3 1 2 3

More information

Contributing to a Community

Contributing to a Community Contributing to a Community Contents 2 Contents Contributing to a Community...3 I'm Contributing to a Community, Where Do I Begin?...3 Set Up Your Profile... 4 What Else Can I Do Here?...4 What's My Role

More information

related to Bug # 3211: Kenwood TK-260G bug Closed 01/24/2016 related to Bug # 3213: Kenwood TK-270G Closed 01/24/2016

related to Bug # 3211: Kenwood TK-260G bug Closed 01/24/2016 related to Bug # 3213: Kenwood TK-270G Closed 01/24/2016 CHIRP - Bug # 3349 Status: Closed Priority: Normal Author: tom ryan Category: Created: 02/17/2016 Assignee: Pavel Milanes Updated: 03/17/2016 Due date: Chirp Version: daily Model affected: Kenwood Series

More information

CFMG Training Modules Classified Ad Strategy Module

CFMG Training Modules Classified Ad Strategy Module CFMG Training Modules Classified Ad Strategy Module In This Module: 1. Introduction 2. Preliminary Set Up Create the Sequential Letterset for our Ad Strategy Set Up Your Vanity Responder Create Your Stealth

More information

Blog FAQ.

Blog FAQ. Blog FAQ Website: Support: http://ecommerce.aheadworks.com helpdesk@aheadworks.com Table of Contents Blog... 4 Can I use a WYSIWYG editor in Blog?... 4 Is it possible with the Blog extension to limit the

More information

Azon Master Class. By Ryan Stevenson Guidebook #5 WordPress Usage

Azon Master Class. By Ryan Stevenson   Guidebook #5 WordPress Usage Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #5 WordPress Usage Table of Contents 1. Widget Setup & Usage 2. WordPress Menu System 3. Categories, Posts & Tags 4. WordPress

More information

Register FAQ Calendar Today's Posts Search

Register FAQ Calendar Today's Posts Search Custom Search Highly Liquid Forum > Current Products > UMR2 Yamaha VSS-30 MIDI Retrofit Guide User Name User Name Password Remember Me? Log in Register FAQ Calendar Today's Posts Search Page 1 of 2 1 2

More information

QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis

QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis QGIS Application - Bug report #5475 Problem to insert splitted geometries in postgis 2012-04-23 01:20 PM - Luca Lanteri Status: Priority: Severe/Regression Assignee: Marco Hugentobler Category: Affected

More information

The following content is provided under a Creative Commons license. Your support

The following content is provided under a Creative Commons license. Your support MITOCW Recitation 4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To make

More information

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek Seite 1 von 5 Issue Date: FoxTalk July 2000 It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek This month, Paul Maskens and Andy Kramek discuss the problems of validating data entry.

More information

mismatch between what is maybe possible today and what is going on in many of today's IDEs.

mismatch between what is maybe possible today and what is going on in many of today's IDEs. What will happen if we do very, very small and lightweight tools instead of heavyweight, integrated big IDEs? Lecturer: Martin Lippert, VMware and Eclispe tooling expert LIPPERT: Welcome, everybody, to

More information