View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update | 
|---|---|---|---|---|---|
| 17303 | Bug reports | Theme editor | public | 2021-05-17 14:36 | 2021-07-12 11:53 | 
| Reporter | DenisChenu | Assigned To | c_schmitz | ||
| Priority | none | Severity | minor | ||
| Status | closed | Resolution | fixed | ||
| Product Version | 3.25.20 | ||||
| Summary | 17303: ZipArchive::close(): Invalid or uninitialized Zip object (debug > 2) | ||||
| Description | When want to export a valid template : receive a PHP Warning  | ||||
| Steps To Reproduce | Extend vanilla (or import included theme) Set debug > 1 Export  | ||||
| Additional Information | I 99% sure it work with debug some week ago.  | ||||
| Tags | No tags attached. | ||||
| Attached Files |  PHP warning.html (23,691 bytes)   
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PHP warning</title>
<style type="text/css">
/*<![CDATA[*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;margin:0;padding:0;}
body{line-height:1;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
:focus{outline:0;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse;border-spacing:0;}
body {
	font: normal 9pt "Verdana";
	color: #000;
	background: #fff;
}
h1 {
	font: normal 18pt "Verdana";
	color: #f00;
	margin-bottom: .5em;
}
h2 {
	font: normal 14pt "Verdana";
	color: #800000;
	margin-bottom: .5em;
}
h3 {
	font: bold 11pt "Verdana";
}
pre {
	font: normal 11pt Menlo, Consolas, "Lucida Console", Monospace;
}
pre span.error {
	display: block;
	background: #fce3e3;
}
pre span.ln {
	color: #999;
	padding-right: 0.5em;
	border-right: 1px solid #ccc;
}
pre span.error-ln {
	font-weight: bold;
}
.container {
	margin: 1em 4em;
}
.version {
	color: gray;
	font-size: 8pt;
	border-top: 1px solid #aaa;
	padding-top: 1em;
	margin-bottom: 1em;
}
.message {
	color: #000;
	padding: 1em;
	font-size: 11pt;
	background: #f3f3f3;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 1em;
	line-height: 160%;
}
.source {
	margin-bottom: 1em;
}
.code pre {
	background-color: #ffe;
	margin: 0.5em 0;
	padding: 0.5em;
	line-height: 125%;
	border: 1px solid #eee;
}
.source .file {
	margin-bottom: 1em;
	font-weight: bold;
}
.traces {
	margin: 2em 0;
}
.trace {
	margin: 0.5em 0;
	padding: 0.5em;
}
.trace.app {
	border: 1px dashed #c00;
}
.trace .number {
	text-align: right;
	width: 2em;
	padding: 0.5em;
}
.trace .content {
	padding: 0.5em;
}
.trace .plus,
.trace .minus {
	display:inline;
	vertical-align:middle;
	text-align:center;
	border:1px solid #000;
	color:#000;
	font-size:10px;
	line-height:10px;
	margin:0;
	padding:0 1px;
	width:10px;
	height:10px;
}
.trace.collapsed .minus,
.trace.expanded .plus,
.trace.collapsed pre {
	display: none;
}
.trace-file {
	cursor: pointer;
	padding: 0.2em;
}
.trace-file:hover {
	background: #f0ffff;
}
/*]]>*/
</style>
</head>
<body>
<div class="container">
	<h1>PHP warning</h1>
	<p class="message">
		ZipArchive::close(): Invalid or uninitialized Zip object	</p>
	<div class="source">
		<p class="file">/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/common_helper.php(5056)</p>
		<div class="code"><pre><span class="ln">5044</span> function get_zip_originalsize($filename)
<span class="ln">5045</span> {
<span class="ln">5046</span> 
<span class="ln">5047</span>     if (class_exists('ZipArchive')) {
<span class="ln">5048</span>         $size = 0;
<span class="ln">5049</span>         $zip = new ZipArchive;
<span class="ln">5050</span>         $zip->open($filename);
<span class="ln">5051</span> 
<span class="ln">5052</span>         for ($i = 0; $i < $zip->numFiles; $i++) {
<span class="ln">5053</span>                 $aEntry = $zip->statIndex($i);
<span class="ln">5054</span>                 $size += $aEntry['size'];
<span class="ln">5055</span>         }
<span class="error"><span class="ln error-ln">5056</span>         $zip->close();
</span><span class="ln">5057</span>         return $size;
<span class="ln">5058</span>     }else{
<span class="ln">5059</span>         if ( YII_DEBUG ){
<span class="ln">5060</span>             Yii::app()->setFlashMessage("Warning! The PHP Zip extension is not installed on this server. You're not protected from ZIP bomb attacks.", 'error');
<span class="ln">5061</span>         }
<span class="ln">5062</span>     }
<span class="ln">5063</span> 
<span class="ln">5064</span>     return -1;
<span class="ln">5065</span> }
<span class="ln">5066</span> 
<span class="ln">5067</span> /**
<span class="ln">5068</span>  * PHP7 has created a little nasty bomb with count throwing erroros on uncountables
</pre></div>	</div>
	<div class="traces">
		<h2>Stack Trace</h2>
				<table style="width:100%;">
						<tbody><tr class="trace app expanded">
			<td class="number">
				#0			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/helpers/common_helper.php(5056): <strong>ZipArchive</strong>-><strong>close</strong>()				</div>
				<div class="code"><pre><span class="ln">5051</span> 
<span class="ln">5052</span>         for ($i = 0; $i < $zip->numFiles; $i++) {
<span class="ln">5053</span>                 $aEntry = $zip->statIndex($i);
<span class="ln">5054</span>                 $size += $aEntry['size'];
<span class="ln">5055</span>         }
<span class="error"><span class="ln error-ln">5056</span>         $zip->close();
</span><span class="ln">5057</span>         return $size;
<span class="ln">5058</span>     }else{
<span class="ln">5059</span>         if ( YII_DEBUG ){
<span class="ln">5060</span>             Yii::app()->setFlashMessage("Warning! The PHP Zip extension is not installed on this server. You're not protected from ZIP bomb attacks.", 'error');
<span class="ln">5061</span>         }
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#1			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/helpers/common_helper.php(5035): <strong>get_zip_originalsize</strong>("/mnt/data/shnoulle/nginx/www/3LTS/tmp/errorpage_vanilla.zip")				</div>
				<div class="code"><pre><span class="ln">5030</span>  * @param string $zip_filename
<span class="ln">5031</span>  * @return int
<span class="ln">5032</span>  */
<span class="ln">5033</span> function isZipBomb($zip_filename)
<span class="ln">5034</span> {
<span class="error"><span class="ln error-ln">5035</span>     return ( get_zip_originalsize($zip_filename) >  Yii::app()->getConfig('maximum_unzipped_size') );
</span><span class="ln">5036</span> }
<span class="ln">5037</span> 
<span class="ln">5038</span> /**
<span class="ln">5039</span>  * Get the original size of a zip archive to prevent Zip Bombing
<span class="ln">5040</span>  * see comment here : http://php.net/manual/en/function.zip-entry-filesize.php
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#2			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/third_party/pclzip/pclzip.lib.php(226): <strong>isZipBomb</strong>("/mnt/data/shnoulle/nginx/www/3LTS/tmp/errorpage_vanilla.zip")				</div>
				<div class="code"><pre><span class="ln">221</span>       die('Abort '.basename(__FILE__).' : Missing zlib extensions');
<span class="ln">222</span>     }
<span class="ln">223</span> 
<span class="ln">224</span> 
<span class="ln">225</span>     // Added by LS Team to prevent Zip Bombing
<span class="error"><span class="ln error-ln">226</span>     if ($bCheckZipBomb && isZipBomb($p_zipname)){
</span><span class="ln">227</span>         die('Abort '.basename(__FILE__).' : Unzipped file is bigger than upload_max_filesize or post_max_size');
<span class="ln">228</span>     }
<span class="ln">229</span> 
<span class="ln">230</span> 
<span class="ln">231</span>     // ----- Set the attributes
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#3			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/controllers/admin/themes.php(57): <strong>PclZip</strong>-><strong>__construct</strong>("/mnt/data/shnoulle/nginx/www/3LTS/tmp/errorpage_vanilla.zip")				</div>
				<div class="code"><pre><span class="ln">52</span>             $templatedir = $oEditedTemplate->path;
<span class="ln">53</span>             $tempdir = Yii::app()->getConfig('tempdir');
<span class="ln">54</span> 
<span class="ln">55</span>             $zipfile = "$tempdir/$templatename.zip";
<span class="ln">56</span>             Yii::app()->loadLibrary('admin.pclzip');
<span class="error"><span class="ln error-ln">57</span>             $zip = new PclZip($zipfile);
</span><span class="ln">58</span>             $zip->create($templatedir, PCLZIP_OPT_REMOVE_PATH, $oEditedTemplate->path);
<span class="ln">59</span> 
<span class="ln">60</span>             if (is_file($zipfile)) {
<span class="ln">61</span>                 // Send the file for download!
<span class="ln">62</span>                 header("Expires: 0");
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#4			</td>
			<td class="content">
				<div class="trace-file">
										 unknown(0): <strong>themes</strong>-><strong>templatezip</strong>("errorpage_vanilla")				</div>
							</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#5			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/actions/CAction.php(115): <strong>ReflectionMethod</strong>-><strong>invokeArgs</strong>(themes, array("errorpage_vanilla"))				</div>
				<div class="code"><pre><span class="ln">110</span>             elseif($param->isDefaultValueAvailable())
<span class="ln">111</span>                 $ps[]=$param->getDefaultValue();
<span class="ln">112</span>             else
<span class="ln">113</span>                 return false;
<span class="ln">114</span>         }
<span class="error"><span class="ln error-ln">115</span>         $method->invokeArgs($object,$ps);
</span><span class="ln">116</span>         return true;
<span class="ln">117</span>     }
<span class="ln">118</span> }
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#6			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/core/Survey_Common_Action.php(83): <strong>CAction</strong>-><strong>runWithParamsInternal</strong>(themes,
 ReflectionMethod, array("r" => 
"admin/themes/sa/templatezip/templatename/errorpage_vanilla", "sa" =>
 "templatezip", "templatename" => "errorpage_vanilla"))				</div>
				<div class="code"><pre><span class="ln">78</span>             $oMethod = new ReflectionMethod($this, $sDefault);
<span class="ln">79</span>         }
<span class="ln">80</span> 
<span class="ln">81</span>         // We're all good to go, let's execute it
<span class="ln">82</span>         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
<span class="error"><span class="ln error-ln">83</span>         return parent::runWithParamsInternal($this, $oMethod, $params);
</span><span class="ln">84</span>     }
<span class="ln">85</span> 
<span class="ln">86</span>     /**
<span class="ln">87</span>      * Some functions have different parameters, which are just an alias of the
<span class="ln">88</span>      * usual parameters we're getting in the url. This function just populates
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#7			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/controllers/admin/themes.php(33): <strong>Survey_Common_Action</strong>-><strong>runWithParams</strong>(array("r"
 => "admin/themes/sa/templatezip/templatename/errorpage_vanilla", 
"sa" => "templatezip", "templatename" => "errorpage_vanilla"))				</div>
				<div class="code"><pre><span class="ln">28</span>     public function runWithParams($params)
<span class="ln">29</span>     {
<span class="ln">30</span> 
<span class="ln">31</span>         $sTemplateName = Yii::app()->request->getPost('templatename', '');
<span class="ln">32</span>         if (Permission::model()->hasGlobalPermission('templates', 'read') || Permission::model()->hasTemplatePermission($sTemplateName)) {
<span class="error"><span class="ln error-ln">33</span>             parent::runWithParams($params);
</span><span class="ln">34</span>         } else {
<span class="ln">35</span>             Yii::app()->setFlashMessage(gT("We are sorry but you don't have permissions to do this."), 'error');
<span class="ln">36</span>             $this->getController()->redirect(array("admin/themeoptions"));
<span class="ln">37</span>         }
<span class="ln">38</span>     }
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#8			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/CController.php(308): <strong>themes</strong>-><strong>runWithParams</strong>(array("r"
 => "admin/themes/sa/templatezip/templatename/errorpage_vanilla", 
"sa" => "templatezip", "templatename" => "errorpage_vanilla"))				</div>
				<div class="code"><pre><span class="ln">303</span>     {
<span class="ln">304</span>         $priorAction=$this->_action;
<span class="ln">305</span>         $this->_action=$action;
<span class="ln">306</span>         if($this->beforeAction($action))
<span class="ln">307</span>         {
<span class="error"><span class="ln error-ln">308</span>             if($action->runWithParams($this->getActionParams())===false)
</span><span class="ln">309</span>                 $this->invalidActionParams($action);
<span class="ln">310</span>             else
<span class="ln">311</span>                 $this->afterAction($action);
<span class="ln">312</span>         }
<span class="ln">313</span>         $this->_action=$priorAction;
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#9			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/CController.php(286): <strong>CController</strong>-><strong>runAction</strong>(themes)				</div>
				<div class="code"><pre><span class="ln">281</span>      * @see runAction
<span class="ln">282</span>      */
<span class="ln">283</span>     public function runActionWithFilters($action,$filters)
<span class="ln">284</span>     {
<span class="ln">285</span>         if(empty($filters))
<span class="error"><span class="ln error-ln">286</span>             $this->runAction($action);
</span><span class="ln">287</span>         else
<span class="ln">288</span>         {
<span class="ln">289</span>             $priorAction=$this->_action;
<span class="ln">290</span>             $this->_action=$action;
<span class="ln">291</span>             CFilterChain::create($this,$action,$filters)->run();
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#10			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/CController.php(265): <strong>CController</strong>-><strong>runActionWithFilters</strong>(themes, array())				</div>
				<div class="code"><pre><span class="ln">260</span>         {
<span class="ln">261</span>             if(($parent=$this->getModule())===null)
<span class="ln">262</span>                 $parent=Yii::app();
<span class="ln">263</span>             if($parent->beforeControllerAction($this,$action))
<span class="ln">264</span>             {
<span class="error"><span class="ln error-ln">265</span>                 $this->runActionWithFilters($action,$this->filters());
</span><span class="ln">266</span>                 $parent->afterControllerAction($this,$action);
<span class="ln">267</span>             }
<span class="ln">268</span>         }
<span class="ln">269</span>         else
<span class="ln">270</span>             $this->missingAction($actionID);
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#11			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/application/controllers/AdminController.php(165): <strong>CController</strong>-><strong>run</strong>("themes")				</div>
				<div class="code"><pre><span class="ln">160</span>                     $this->redirect(array('/admin/authentication/sa/login'));
<span class="ln">161</span>                 }
<span class="ln">162</span>             }
<span class="ln">163</span>         }
<span class="ln">164</span> 
<span class="error"><span class="ln error-ln">165</span>         return parent::run($action);
</span><span class="ln">166</span>     }
<span class="ln">167</span> 
<span class="ln">168</span>     /**
<span class="ln">169</span>      * Routes all the actions to their respective places
<span class="ln">170</span>      *
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#12			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/CWebApplication.php(282): <strong>AdminController</strong>-><strong>run</strong>("themes")				</div>
				<div class="code"><pre><span class="ln">277</span>         {
<span class="ln">278</span>             list($controller,$actionID)=$ca;
<span class="ln">279</span>             $oldController=$this->_controller;
<span class="ln">280</span>             $this->_controller=$controller;
<span class="ln">281</span>             $controller->init();
<span class="error"><span class="ln error-ln">282</span>             $controller->run($actionID);
</span><span class="ln">283</span>             $this->_controller=$oldController;
<span class="ln">284</span>         }
<span class="ln">285</span>         else
<span class="ln">286</span>             throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
<span class="ln">287</span>                 array('{route}'=>$route===''?$this->defaultController:$route)));
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#13			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/web/CWebApplication.php(141): <strong>CWebApplication</strong>-><strong>runController</strong>("admin/themes/sa/templatezip/templatename/errorpage_vanilla")				</div>
				<div class="code"><pre><span class="ln">136</span>             foreach(array_splice($this->catchAllRequest,1) as $name=>$value)
<span class="ln">137</span>                 $_GET[$name]=$value;
<span class="ln">138</span>         }
<span class="ln">139</span>         else
<span class="ln">140</span>             $route=$this->getUrlManager()->parseUrl($this->getRequest());
<span class="error"><span class="ln error-ln">141</span>         $this->runController($route);
</span><span class="ln">142</span>     }
<span class="ln">143</span> 
<span class="ln">144</span>     /**
<span class="ln">145</span>      * Registers the core application components.
<span class="ln">146</span>      * This method overrides the parent implementation by registering additional core components.
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#14			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/framework/base/CApplication.php(185): <strong>CWebApplication</strong>-><strong>processRequest</strong>()				</div>
				<div class="code"><pre><span class="ln">180</span>     public function run()
<span class="ln">181</span>     {
<span class="ln">182</span>         if($this->hasEventHandler('onBeginRequest'))
<span class="ln">183</span>             $this->onBeginRequest(new CEvent($this));
<span class="ln">184</span>         register_shutdown_function(array($this,'end'),0,false);
<span class="error"><span class="ln error-ln">185</span>         $this->processRequest();
</span><span class="ln">186</span>         if($this->hasEventHandler('onEndRequest'))
<span class="ln">187</span>             $this->onEndRequest(new CEvent($this));
<span class="ln">188</span>     }
<span class="ln">189</span> 
<span class="ln">190</span>     /**
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#15			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/3LTS/index.php(194): <strong>CApplication</strong>-><strong>run</strong>()				</div>
				<div class="code"><pre><span class="ln">189</span> require_once APPPATH . 'core/LSYii_Application' . EXT;
<span class="ln">190</span> 
<span class="ln">191</span> $config = require_once(APPPATH . 'config/internal' . EXT);
<span class="ln">192</span> 
<span class="ln">193</span> Yii::$enableIncludePath = false;
<span class="error"><span class="ln error-ln">194</span> Yii::createApplication('LSYii_Application', $config)->run();
</span><span class="ln">195</span> 
<span class="ln">196</span> /* End of file index.php */
<span class="ln">197</span> /* Location: ./index.php */
</pre></div>			</td>
		</tr>
				</tbody></table>
	</div>
	<div class="version">
		2021-05-17 12:31:45 nginx/1.20.0 <a href="http://www.yiiframework.com/">Yii Framework</a>/1.1.24-dev	</div>
</div>
<script type="text/javascript">
/*<![CDATA[*/
var traceReg = new RegExp("(^|\\s)trace-file(\\s|$)");
var collapsedReg = new RegExp("(^|\\s)collapsed(\\s|$)");
var e = document.getElementsByTagName("div");
for(var j=0,len=e.length;j<len;j++){
	if(traceReg.test(e[j].className)){
		e[j].onclick = function(){
			var trace = this.parentNode.parentNode;
			if(collapsedReg.test(trace.className))
				trace.className = trace.className.replace("collapsed", "expanded");
			else
				trace.className = trace.className.replace("expanded", "collapsed");
		}
	}
}
/*]]>*/
</script>
<div id="grammalecte_menu_main_button_shadow_host" style="width: 0px; height: 0px;"></div></body><script src="PHP%20warning_fichiers/api.js"></script></html> | ||||
| Bug heat | 6 | ||||
| Complete LimeSurvey version number (& build) | 3.26.4 | ||||
| I will donate to the project if issue is resolved | No | ||||
| Browser | firefox | ||||
| Database type & version | mariadb | ||||
| Server OS (if known) | fedora/linux | ||||
| Webserver software & version (if known) | nginx | ||||
| PHP Version | 7.4.19 | ||||
| 
	 Without debug : theme seems complete.  | 
|
| 
	 Can you find which commit added ZipArchive?  | 
|
| 
	 $ git checkout 0bb9202e0ce1e99de9d009bc87bc626e7ee19960 is OK (previous release)  | 
|
| 
	 This commit adds ZipArchive: 88ccdb37d2eaed3000412278a98dce27d0503382 git log -GZipArchive  | 
|
| 
	 PS : i just test quicly after checkout for another bug report  | 
|
| 
	 Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&id=31797  | 
|
| 
	 Fix committed to 3.x-LTS branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&id=31798  | 
|
| 
	 Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&id=31814  | 
|
| 
	 Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&id=32031  | 
|
| 
	 Release done.  | 
|
| 
	
	 LimeSurvey: master 532fc971 2021-05-18 14:56 Details Diff  | 
Fixed issue 17303: ZipArchive error when exporting theme and debug mode is avtive | 
Affected Issues 17303  | 
|
| mod - application/controllers/admin/themes.php | Diff File | ||
| rm - application/core/web/LSYii_SecurityManager.php | Diff | ||
| mod - application/helpers/common_helper.php | Diff File | ||
| 
	
	 LimeSurvey: master def3c216 2021-05-18 14:56 Committer: ollehar Details Diff  | 
Fixed issue 17303: ZipArchive error when exporting theme and debug mode is avtive | 
Affected Issues 17303  | 
|
| mod - application/controllers/admin/themes.php | Diff File | ||
| rm - application/core/web/LSYii_SecurityManager.php | Diff | ||
| mod - application/helpers/common_helper.php | Diff File | ||
| 
	
	 LimeSurvey: master f94b771a 2021-05-18 14:56 Committer: ollehar Details Diff  | 
Fixed issue 17303: ZipArchive error when exporting theme and debug mode is avtive | 
Affected Issues 17303  | 
|
| mod - application/controllers/admin/themes.php | Diff File | ||
| rm - application/core/web/LSYii_SecurityManager.php | Diff | ||
| mod - application/helpers/common_helper.php | Diff File | ||
| 
	
	 LimeSurvey: 3.x-LTS cdfaa7a6 2021-05-18 14:59 Details Diff  | 
Fixed issue 17303: ZipArchive error when exporting theme and debug mode is avtive | 
Affected Issues 17303  | 
|
| mod - application/controllers/admin/themes.php | Diff File | ||
| rm - application/core/web/LSYii_SecurityManager.php | Diff | ||
| mod - application/helpers/common_helper.php | Diff File | ||
| Date Modified | Username | Field | Change | 
|---|---|---|---|
| 2021-05-17 14:36 | DenisChenu | New Issue | |
| 2021-05-17 14:36 | DenisChenu | File Added: PHP warning.html | |
| 2021-05-17 14:36 | DenisChenu | File Added: errorpage_vanilla.zip | |
| 2021-05-17 14:37 | DenisChenu | Note Added: 64429 | |
| 2021-05-17 17:39 | ollehar | Note Added: 64436 | |
| 2021-05-17 18:44 | DenisChenu | Note Added: 64439 | |
| 2021-05-17 18:49 | ollehar | Note Added: 64440 | |
| 2021-05-17 20:13 | DenisChenu | Note Added: 64446 | |
| 2021-05-18 10:36 | ollehar | Sync to Zoho Project | => |Yes| | 
| 2021-05-18 12:01 | ollehar | Assigned To | => c_schmitz | 
| 2021-05-18 12:01 | ollehar | Status | new => assigned | 
| 2021-05-18 12:57 | c_schmitz | Changeset attached | => LimeSurvey master 532fc971 | 
| 2021-05-18 12:57 | c_schmitz | Note Added: 64460 | |
| 2021-05-18 12:57 | c_schmitz | Resolution | open => fixed | 
| 2021-05-18 12:59 | c_schmitz | Changeset attached | => LimeSurvey 3.x-LTS cdfaa7a6 | 
| 2021-05-18 12:59 | c_schmitz | Note Added: 64461 | |
| 2021-05-18 12:59 | c_schmitz | Status | assigned => resolved | 
| 2021-05-21 10:29 | ollehar | Changeset attached | => LimeSurvey master def3c216 | 
| 2021-05-21 10:29 | c_schmitz | Note Added: 64500 | |
| 2021-06-10 11:45 | ollehar | Changeset attached | => LimeSurvey master f94b771a | 
| 2021-06-10 11:45 | c_schmitz | Note Added: 64829 | |
| 2021-07-12 11:53 | c_schmitz | Note Added: 65310 | |
| 2021-07-12 11:53 | c_schmitz | Status | resolved => closed |