Changeset 602619
- Timestamp:
- 09/23/2012 08:00:05 AM (14 years ago)
- Location:
- edge-suite/trunk
- Files:
-
- 3 edited
-
admin/manage.php (modified) (1 diff)
-
includes/edge-suite-comp-builder.inc (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
edge-suite/trunk/admin/manage.php
r602441 r602619 108 108 <input type="hidden" name="upit" value="yes" /> 109 109 <input type="hidden" name="action" value="upload" /> 110 <p>Upload a new Adobe Edge composition in a zipped archive, allowed formats are zip and gz.</p> 110 <p>Upload a new Adobe Edge composition in a zipped archive, allowed formats are zip and gz. </br> 111 Minified projects are not supported yet, please use the raw project files and compress them to an archive.</p> 111 112 <p class="submit"> 112 113 <input type="submit" class="button-primary" value="Upload" /> -
edge-suite/trunk/includes/edge-suite-comp-builder.inc
r602441 r602619 258 258 foreach ($ignored_files as $f) { 259 259 if (!is_dir($f)) { 260 $filename = basename($f);260 $filename = substr($f, strlen($this->tmpDir)); 261 261 if ($filename == $this->projectName . '.edge' || $filename == $this->projectName . '.html') { 262 262 $files_names_obsolete[] = $filename; … … 268 268 } 269 269 $this->setFileMessages($files_names_obsolete, 'The following files were ignored as they are not needed:'); 270 $this->setFileMessages($files_names_ignored, 'The following files were ignored as they are not supported:', 'warning');270 $this->setFileMessages($files_names_ignored, 'The following files were ignored as they are not needed/supported:', 'warning'); 271 271 272 272 // Delete the tmp archive directory with all remaining files. … … 599 599 // Get dir path relative to project tmp base path without leading slash. 600 600 $rel_dir = substr($dir, strlen($src) + 1); 601 if(substr($rel_dir, 0 ,8) === 'publish/'){ 602 continue; 603 } 601 604 if (!file_exists($dest . '/' . $rel_dir)) { 602 605 mkdir_recursive($dest . '/' . $rel_dir); -
edge-suite/trunk/readme.txt
r602441 r602619 30 30 31 31 == Frequently Asked Questions == 32 33 = Animations don't show up = 34 Uploading worked but nothings shows up on the page. Things to check: 35 36 * Edge Suite doesn't support minified/published projects yet. Just zip the raw project folder (without the publish folder) 37 38 * Look at the source code of the page and search for: 39 40 * "stage" - You should find a div container, if so HTML rendering went fine. 41 42 * "_preloader" - You should find a script tag, if so JS inclusion went fine. 43 44 * If "stage" or "_preloader" are not found, disable other plugins for testing to check if they might interferer. 45 46 * Open the debug console in Chrome (mac: alt + cmd + j) or Firefox and check for JavaScript errors. 47 48 * For testing remove all other fancy JavaScript like galleries, slideshows, etc. that are placed alongside the animation, the JS might collide. 49 50 = Head Cleaner: Animations don't show up = 51 52 Head Cleaner basically skips the processing of edge_suite_header() which is needed to inject the Edge Javascript. 53 Under Settings > Head Cleaner > Active Filters check the box "Don't process!" for "edge_suite_header" and click "Save options". 54 This stops Head Cleaner from "processing" ede_suite_header(), which basically means allowing edge_suite_header() (reverse logic). 32 55 33 56 = PHP ZipArchive not found =
Note: See TracChangeset
for help on using the changeset viewer.