<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AshliForbes</id>
	<title>UBC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AshliForbes"/>
	<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/Special:Contributions/AshliForbes"/>
	<updated>2026-07-31T09:08:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614387</id>
		<title>Sandbox:ARCHIVED: WeBWorK/Mechanics Problem Creation Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614387"/>
		<updated>2020-08-31T17:55:51Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: Added the general math formatting section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OER Mechanics WeBWorK project is recording helpful notes during problem development.  &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Error Messages:&amp;lt;/u&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;The macro alias was unable to form a URL for the auxiliary file... used in this problem&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Double-check the format of the file uploaded or the image that the code is trying to fetch.&lt;br /&gt;
&lt;br /&gt;
If your computer saved the image as a capitalized .PNG rather than a .png, it will be uploaded to Webwork as .PNG.&lt;br /&gt;
&lt;br /&gt;
When the code subsequently tries to fetch a .png file, it will fail to recognize .PNG as the same file even if they have the same name.&lt;br /&gt;
&lt;br /&gt;
Fix this by renaming the image from .PNG to .png on Webwork in the File Manager. It will not work by changing the code to fetch .PNG instead of .png and leaving the image as .PNG on Webwork.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;Errors parsing PGML: Warning: unknown block type &#039;balance&#039; in PGML::Format::html::format&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Sorry pal, it looks like you used a single quotation mark &#039; instead of the grave accent ` somewhere in your code, most likely when you are trying to call for MathJax or Latex formatting.&lt;br /&gt;
&lt;br /&gt;
Check all your square brackets and insert grave accents where needed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Constant Webwork Error Page when Re-Uploading&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Try deleting the file and re-uploading, or simply turn on &amp;quot;Overwrite existing files silently&amp;quot;. Be careful when overwriting however; make sure the file is in the right place and that only what you want is changed.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Question Templates:&amp;lt;/u&amp;gt; ===&lt;br /&gt;
Here you will find relevant and easy to use question templates in PDF form with commented code for a variety of general uses. &lt;br /&gt;
&lt;br /&gt;
[[:File:GeneralQuestionTemplate.pdf]]&lt;br /&gt;
&lt;br /&gt;
Eqn variable answers: -NW&lt;br /&gt;
&lt;br /&gt;
Multiple Choice: -NW&lt;br /&gt;
&lt;br /&gt;
How to upload images: - NW&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;General Math Formatting:&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
====== &#039;&#039;&#039;Contexts:&#039;&#039;&#039; ======&lt;br /&gt;
In PGML, when doing calculations there are different &#039;contexts&#039; that should be used.  &lt;br /&gt;
&lt;br /&gt;
====== &#039;&#039;&#039;Variables:&#039;&#039;&#039; ======&lt;br /&gt;
&#039;&#039;Ex.&#039;&#039; $A = random(2, 5, 1);&lt;br /&gt;
&lt;br /&gt;
&#039;A&#039; is the label of the variable, when addressing it throughout the code, it has a to have a &#039;$&#039; in front of it in order to compute. The function random generates a number as &#039;random(low, high, step)&#039;. In this case, the lowest number is 2, with the highest number being 5 with a step size of 1. This means the numbers could be 2,3,4 or 5. To set any variable &#039;$&#039;  &#039;&#039;&#039;&#039;&#039;must be used&#039;&#039;&#039;&#039;&#039; or else the file will not compile&lt;br /&gt;
&lt;br /&gt;
===== &#039;&#039;&#039;Math Rules:&#039;&#039;&#039; =====&lt;br /&gt;
&#039;&#039;Ex.&#039;&#039; $answer = cos($A*pi)/2;&lt;br /&gt;
&lt;br /&gt;
Computations follow similar rules to Perl. * is multiplication, / is division, + is addition, - is subtraction. Calling pi within computations and functions can be used as shown above. All computations are in &#039;&#039;&#039;&#039;&#039;radians&#039;&#039;&#039;&#039;&#039;, to use degrees within the written question, simply convert to radians before any computations.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Uploading Archives (Multiple Problems)&amp;lt;/u&amp;gt; &#039;&#039;-&#039;&#039;&#039;&#039;&#039; BK ===&lt;br /&gt;
Webwork can only unpack .tgz or .tar.gz files. Instructions below work for the free archiving program 7zip.&lt;br /&gt;
&lt;br /&gt;
1. Select all your files that you want to upload&lt;br /&gt;
&lt;br /&gt;
2. Right click, select 7zip &amp;gt; Add to archive…&lt;br /&gt;
&lt;br /&gt;
3. Pick &amp;quot;tar&amp;quot; from the Archive Format dropdown&lt;br /&gt;
&lt;br /&gt;
4. Select the .tar file it creates, right click it and add it to archive again&lt;br /&gt;
&lt;br /&gt;
5. This time, select gzip from the dropdown&lt;br /&gt;
&lt;br /&gt;
6. Upload the .tar.gz file to webwork, and it&#039;ll automatically unpack it&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614386</id>
		<title>Sandbox:ARCHIVED: WeBWorK/Mechanics Problem Creation Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614386"/>
		<updated>2020-08-31T17:33:02Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: /* Question Templates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OER Mechanics WeBWorK project is recording helpful notes during problem development. &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Error Messages:&amp;lt;/u&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;The macro alias was unable to form a URL for the auxiliary file... used in this problem&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Double-check the format of the file uploaded or the image that the code is trying to fetch.&lt;br /&gt;
&lt;br /&gt;
If your computer saved the image as a capitalized .PNG rather than a .png, it will be uploaded to Webwork as .PNG.&lt;br /&gt;
&lt;br /&gt;
When the code subsequently tries to fetch a .png file, it will fail to recognize .PNG as the same file even if they have the same name.&lt;br /&gt;
&lt;br /&gt;
Fix this by renaming the image from .PNG to .png on Webwork in the File Manager. It will not work by changing the code to fetch .PNG instead of .png and leaving the image as .PNG on Webwork.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;Errors parsing PGML: Warning: unknown block type &#039;balance&#039; in PGML::Format::html::format&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Sorry pal, it looks like you used a single quotation mark &#039; instead of the grave accent ` somewhere in your code, most likely when you are trying to call for MathJax or Latex formatting.&lt;br /&gt;
&lt;br /&gt;
Check all your square brackets and insert grave accents where needed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Constant Webwork Error Page when Re-Uploading&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Try deleting the file and re-uploading, or simply turn on &amp;quot;Overwrite existing files silently&amp;quot;. Be careful when overwriting however; make sure the file is in the right place and that only what you want is changed.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Question Templates&amp;lt;/u&amp;gt; ===&lt;br /&gt;
Here you will find relevant and easy to use question templates in PDF form with commented code for a variety of general uses. &lt;br /&gt;
&lt;br /&gt;
[[:File:GeneralQuestionTemplate.pdf]]&lt;br /&gt;
&lt;br /&gt;
Eqn variable answers: -NW&lt;br /&gt;
&lt;br /&gt;
Multiple Choice: -NW&lt;br /&gt;
&lt;br /&gt;
How to upload images: - NW&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Uploading Archives (Multiple Problems)&amp;lt;/u&amp;gt; &#039;&#039;-&#039;&#039;&#039;&#039;&#039; BK ===&lt;br /&gt;
Webwork can only unpack .tgz or .tar.gz files. Instructions below work for the free archiving program 7zip.&lt;br /&gt;
&lt;br /&gt;
1. Select all your files that you want to upload&lt;br /&gt;
&lt;br /&gt;
2. Right click, select 7zip &amp;gt; Add to archive…&lt;br /&gt;
&lt;br /&gt;
3. Pick &amp;quot;tar&amp;quot; from the Archive Format dropdown&lt;br /&gt;
&lt;br /&gt;
4. Select the .tar file it creates, right click it and add it to archive again&lt;br /&gt;
&lt;br /&gt;
5. This time, select gzip from the dropdown&lt;br /&gt;
&lt;br /&gt;
6. Upload the .tar.gz file to webwork, and it&#039;ll automatically unpack it&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=File:GeneralQuestionTemplate.pdf&amp;diff=614385</id>
		<title>File:GeneralQuestionTemplate.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=File:GeneralQuestionTemplate.pdf&amp;diff=614385"/>
		<updated>2020-08-31T17:31:22Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=A PDF version of the general equation template, which WebWork writers may copy and paste into their editors to create WebWork questions.}}&lt;br /&gt;
|date=2020-08-28&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:AshliForbes|AshliForbes]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:MathHelp]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:WebWork]]&lt;br /&gt;
[[Category:Documentation]]&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614384</id>
		<title>Sandbox:ARCHIVED: WeBWorK/Mechanics Problem Creation Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614384"/>
		<updated>2020-08-31T17:16:37Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: /* Question Templates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OER Mechanics WeBWorK project is recording helpful notes during problem development. &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Error Messages:&amp;lt;/u&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;The macro alias was unable to form a URL for the auxiliary file... used in this problem&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Double-check the format of the file uploaded or the image that the code is trying to fetch.&lt;br /&gt;
&lt;br /&gt;
If your computer saved the image as a capitalized .PNG rather than a .png, it will be uploaded to Webwork as .PNG.&lt;br /&gt;
&lt;br /&gt;
When the code subsequently tries to fetch a .png file, it will fail to recognize .PNG as the same file even if they have the same name.&lt;br /&gt;
&lt;br /&gt;
Fix this by renaming the image from .PNG to .png on Webwork in the File Manager. It will not work by changing the code to fetch .PNG instead of .png and leaving the image as .PNG on Webwork.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;Errors parsing PGML: Warning: unknown block type &#039;balance&#039; in PGML::Format::html::format&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Sorry pal, it looks like you used a single quotation mark &#039; instead of the grave accent ` somewhere in your code, most likely when you are trying to call for MathJax or Latex formatting.&lt;br /&gt;
&lt;br /&gt;
Check all your square brackets and insert grave accents where needed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Constant Webwork Error Page when Re-Uploading&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Try deleting the file and re-uploading, or simply turn on &amp;quot;Overwrite existing files silently&amp;quot;. Be careful when overwriting however; make sure the file is in the right place and that only what you want is changed.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Question Templates&amp;lt;/u&amp;gt; ===&lt;br /&gt;
Eqn variable answers: -NW&lt;br /&gt;
&lt;br /&gt;
Multiple Choice: -NW&lt;br /&gt;
&lt;br /&gt;
[[:File:Trial.pdf]]&lt;br /&gt;
&lt;br /&gt;
How to upload images: - NW&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Uploading Archives (Multiple Problems)&amp;lt;/u&amp;gt; &#039;&#039;-&#039;&#039;&#039;&#039;&#039; BK ===&lt;br /&gt;
Webwork can only unpack .tgz or .tar.gz files. Instructions below work for the free archiving program 7zip.&lt;br /&gt;
&lt;br /&gt;
1. Select all your files that you want to upload&lt;br /&gt;
&lt;br /&gt;
2. Right click, select 7zip &amp;gt; Add to archive…&lt;br /&gt;
&lt;br /&gt;
3. Pick &amp;quot;tar&amp;quot; from the Archive Format dropdown&lt;br /&gt;
&lt;br /&gt;
4. Select the .tar file it creates, right click it and add it to archive again&lt;br /&gt;
&lt;br /&gt;
5. This time, select gzip from the dropdown&lt;br /&gt;
&lt;br /&gt;
6. Upload the .tar.gz file to webwork, and it&#039;ll automatically unpack it&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=File:Trial.pdf&amp;diff=614383</id>
		<title>File:Trial.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=File:Trial.pdf&amp;diff=614383"/>
		<updated>2020-08-31T17:16:00Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: User created page with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=General Question Template with Descriptions}}&lt;br /&gt;
|date=2020-08-28&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:AshliForbes|AshliForbes]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:WebWork]]&lt;br /&gt;
[[Category:Physics]]&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614382</id>
		<title>Sandbox:ARCHIVED: WeBWorK/Mechanics Problem Creation Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614382"/>
		<updated>2020-08-31T17:13:17Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: headings and some organizing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OER Mechanics WeBWorK project is recording helpful notes during problem development. &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Error Messages:&amp;lt;/u&amp;gt;&#039;&#039;&#039; ===&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;The macro alias was unable to form a URL for the auxiliary file... used in this problem&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Double-check the format of the file uploaded or the image that the code is trying to fetch.&lt;br /&gt;
&lt;br /&gt;
If your computer saved the image as a capitalized .PNG rather than a .png, it will be uploaded to Webwork as .PNG.&lt;br /&gt;
&lt;br /&gt;
When the code subsequently tries to fetch a .png file, it will fail to recognize .PNG as the same file even if they have the same name.&lt;br /&gt;
&lt;br /&gt;
Fix this by renaming the image from .PNG to .png on Webwork in the File Manager. It will not work by changing the code to fetch .PNG instead of .png and leaving the image as .PNG on Webwork.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;Errors parsing PGML: Warning: unknown block type &#039;balance&#039; in PGML::Format::html::format&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Sorry pal, it looks like you used a single quotation mark &#039; instead of the grave accent ` somewhere in your code, most likely when you are trying to call for MathJax or Latex formatting.&lt;br /&gt;
&lt;br /&gt;
Check all your square brackets and insert grave accents where needed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Constant Webwork Error Page when Re-Uploading&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Try deleting the file and re-uploading, or simply turn on &amp;quot;Overwrite existing files silently&amp;quot;. Be careful when overwriting however; make sure the file is in the right place and that only what you want is changed.&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;Question Templates&amp;lt;/u&amp;gt; ===&lt;br /&gt;
Eqn variable answers: -NW&lt;br /&gt;
&lt;br /&gt;
Multiple Choice: -NW&lt;br /&gt;
&lt;br /&gt;
General Question - AF&lt;br /&gt;
&lt;br /&gt;
How to upload images: - NW&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;&amp;lt;u&amp;gt;Uploading Archives (Multiple Problems)&amp;lt;/u&amp;gt; &#039;&#039;-&#039;&#039;&#039;&#039;&#039; BK ===&lt;br /&gt;
Webwork can only unpack .tgz or .tar.gz files. Instructions below work for the free archiving program 7zip.&lt;br /&gt;
&lt;br /&gt;
1. Select all your files that you want to upload&lt;br /&gt;
&lt;br /&gt;
2. Right click, select 7zip &amp;gt; Add to archive…&lt;br /&gt;
&lt;br /&gt;
3. Pick &amp;quot;tar&amp;quot; from the Archive Format dropdown&lt;br /&gt;
&lt;br /&gt;
4. Select the .tar file it creates, right click it and add it to archive again&lt;br /&gt;
&lt;br /&gt;
5. This time, select gzip from the dropdown&lt;br /&gt;
&lt;br /&gt;
6. Upload the .tar.gz file to webwork, and it&#039;ll automatically unpack it&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614342</id>
		<title>Sandbox:ARCHIVED: WeBWorK/Mechanics Problem Creation Notes</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Sandbox:ARCHIVED:_WeBWorK/Mechanics_Problem_Creation_Notes&amp;diff=614342"/>
		<updated>2020-08-28T20:35:00Z</updated>

		<summary type="html">&lt;p&gt;AshliForbes: added a new line&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The OER Mechanics WeBWorK project is recording helpful notes during problem development.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;u&amp;gt;Error Message Trouble shooting:&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;The macro alias was unable to form a URL for the auxiliary file... used in this problem&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Double-check the format of the file uploaded or the image that the code is trying to fetch.&lt;br /&gt;
&lt;br /&gt;
If your computer saved the image as a capitalized .PNG rather than a .png, it will be uploaded to Webwork as .PNG.&lt;br /&gt;
&lt;br /&gt;
When the code subsequently tries to fetch a .png file, it will fail to recognize .PNG as the same file even if they have the same name.&lt;br /&gt;
&lt;br /&gt;
Fix this by renaming the image from .PNG to .png on Webwork in the File Manager. It will not work by changing the code to fetch .PNG instead of .png and leaving the image as .PNG on Webwork.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;&amp;quot;Errors parsing PGML: Warning: unknown block type &#039;balance&#039; in PGML::Format::html::format&amp;quot;&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Sorry pal, it looks like you used a single quotation mark &#039; instead of the grave accent ` somewhere in your code, most likely when you are trying to call for MathJax or Latex formatting.&lt;br /&gt;
&lt;br /&gt;
Check all your square brackets and insert grave accents where needed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Constant Webwork Error Page when Re-Uploading&#039;&#039;&#039;&#039;&#039; -DK&lt;br /&gt;
&lt;br /&gt;
Try deleting the file and re-uploading, or simply turn on &amp;quot;Overwrite existing files silently&amp;quot;. Be careful when overwriting however; make sure the file is in the right place and that only what you want is changed.&lt;br /&gt;
&lt;br /&gt;
Eqn variable answers: -NW&lt;br /&gt;
&lt;br /&gt;
Multiple Choice: -NW&lt;br /&gt;
&lt;br /&gt;
General Question - AF&lt;br /&gt;
&lt;br /&gt;
How to upload images: - NW&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;Uploading Archives (Multiple Problems) -&#039;&#039;&#039;&#039;&#039; BK&lt;br /&gt;
&lt;br /&gt;
Webwork can only unpack .tgz or .tar.gz files. Instructions below work for the free archiving program 7zip.&lt;br /&gt;
&lt;br /&gt;
1. Select all your files that you want to upload&lt;br /&gt;
&lt;br /&gt;
2. Right click, select 7zip &amp;gt; Add to archive…&lt;br /&gt;
&lt;br /&gt;
3. Pick &amp;quot;tar&amp;quot; from the Archive Format dropdown&lt;br /&gt;
&lt;br /&gt;
4. Select the .tar file it creates, right click it and add it to archive again&lt;br /&gt;
&lt;br /&gt;
5. This time, select gzip from the dropdown&lt;br /&gt;
&lt;br /&gt;
6. Upload the .tar.gz file to webwork, and it&#039;ll automatically unpack it&lt;/div&gt;</summary>
		<author><name>AshliForbes</name></author>
	</entry>
</feed>