Right, so I ran this in mod.class.php and the result at first, was this:
[2013-01-01 01:49:55] (ERROR @ /index.php) `0` is not a valid integer and may not be passed to makeUrl()
[2013-01-01 01:49:55] (ERROR @ /index.php) #0 /paas/c0440/www/core/components/discuss/model/discuss/discuss.class.php(169): modX->makeUrl('0')
#1 /paas/c0440/www/core/cache/includes/elements/modsnippet/50.include.cache.php(40): Discuss->initialize('web')
#2 /paas/c0440/www/core/model/modx/modscript.class.php(66): elements_modsnippet_50(Array)
#3 /paas/c0440/www/core/model/modx/modparser.class.php(484): modScript->process(NULL)
#4 /paas/c0440/www/core/model/modx/modparser.class.php(221): modParser->processTag(Array, true)
#5 /paas/c0440/www/core/model/modx/modresponse.class.php(83): modParser->processElementTags('', '[[!Discuss]]', true, false, '[[', ']]', Array, 10)
#6 /paas/c0440/www/core/model/modx/modrequest.class.php(144): modResponse->outputContent(Array)
#7 /paas/c0440/www/core/model/modx/modrequest.class.php(128): modRequest->prepareResponse()
#8 /paas/c0440/www/core/model/modx/modx.class.php(1312): modRequest->handleRequest()
#9 /paas/c0440/www/index.php(72): modX->handleRequest()
#10 {main}
There is no snippet or plugin with an ID of 50 although the Discuss snippets started at id 48 through 58 (or something like that). ID's 50 and 51 were not existent.
So, since loading up Discuss was just on a whim while developing a template at Cloud, I reinstalled Discuss, and then since it didn't give me any new snippets, I uninstalled it.
makeURL error remains, and the stack trace shows this now:
[2013-01-01 02:07:52] (ERROR @ /index.php) `id` is not a valid integer and may not be passed to makeUrl()
[2013-01-01 02:07:52] (ERROR @ /index.php) #0 /paas/c0440/www/core/model/modx/modparser.class.php(1271): modX->makeUrl('id', '', '', '-1', Array)
#1 /paas/c0440/www/core/model/modx/modparser.class.php(447): modLinkTag->process(NULL)
#2 /paas/c0440/www/core/model/modx/modparser.class.php(221): modParser->processTag(Array, false)
#3 /paas/c0440/www/core/model/modx/modparser.class.php(399): modParser->processElementTags('[[!getImageList...', '!getImageList? ...', false)
#4 /paas/c0440/www/core/model/modx/modparser.class.php(221): modParser->processTag(Array, false)
#5 /paas/c0440/www/core/model/modx/modchunk.class.php(118): modParser->processElementTags('[[$soBoxyBasicP...', ' <div class="ro...', false, false, '[[', ']]', Array, 10)
#6 /paas/c0440/www/core/model/modx/modparser.class.php(455): modChunk->process(NULL)
#7 /paas/c0440/www/core/model/modx/modparser.class.php(221): modParser->processTag(Array, false)
#8 /paas/c0440/www/core/model/modx/modtemplate.class.php(120): modParser->processElementTags('[[]]', '[[$soBoxyHeader...', false, false, '[[', ']]', Array, 10)
#9 /paas/c0440/www/core/model/modx/modresource.class.php(318): modTemplate->process()
#10 /paas/c0440/www/core/model/modx/modresponse.class.php(75): modResource->process()
#11 /paas/c0440/www/core/model/modx/modrequest.class.php(144): modResponse->outputContent(Array)
#12 /paas/c0440/www/core/model/modx/modrequest.class.php(128): modRequest->prepareResponse()
#13 /paas/c0440/www/core/model/modx/modx.class.php(1312): modRequest->handleRequest()
#14 /paas/c0440/www/index.php(72): modX->handleRequest()
#15 {main}
#3 refers to the getImageList call from a MIGX TV.
#5 refers to a static chunk between the head and footer chunks and an obscure div class=row element (this class appears more than once in the chunk so I can't say which it is)
#8 refers to the actual head chunk, also static. Nothing else in this line gives clue.
So, since others have posted here, I will too. My problem lies in the fact that image TV's do not work. No image output at all from the MIGX TV, but containers show. When I call a simple image TV in the template all I get is the image name, no path. If the image TV is set to default output, I see the image name in the output. If set to image, there's no output but I so get a href="imageName.jpg" in the source.
I don't know if it's related to the makeURL error or not.
MODX Cloud Dev environment.
Ideas?