Jump to content

jeve

Members
  • Posts

    13
  • Joined

  • Last visited

jeve's Achievements

Jr. Member

Jr. Member (3/6)

3

Reputation

  1. @Peter Knight Thanks Peter. Changing bucket destination with a new empty it works well!
  2. @Peter Knight Thanks Peter. I make the change but s3 still deleting files..
  3. @flydev Thanks for your quick replay. I'don't change these settings. Look my configuration page. Thanks! Piero
  4. Hello trying to upload to S3 I get "delete" message that I don't undestand. Why files are being deleted? Locally all files are safe. The s3 user is the same I'm using with other php script. 2017-12-26 17:38:29: AmazonS3: getting files. 2017-12-26 17:38:29: - job finished in 16.970454sec 2017-12-26 17:38:29: AmazonS3: deleted 2017-12-26_17-38-12-www.studiotm.it.package.zip 2017-12-26 17:38:29: AmazonS3: deleting files... 2017-12-26 17:38:29: AmazonS3: upload complete to https://s3-eu-west-1.amazonaws.com/htmlfactory-bkp/2017-12-26_17-38-12-www.studiotm.it.package.zip on bucket htmlfactory-bkp. 2017-12-26 17:38:25: AmazonS3: uploading file /home/studiotm/public_html/site/assets/backups/2017-12-26_17-38-12-www.studiotm.it.package.zip 2017-12-26 17:38:25: - package saved in local folder: 2017-12-26_17-38-12-www.studiotm.it.package.zip 2017-12-26 17:38:25: - package built successfully in 12.817685sec 2017-12-26 17:38:24: - structure zipped successfully in 11.472255sec Thanks and... happy holidays Piero
  5. @flydev : More beta-tester needed ! Hello can I test your module? I have a lot of sites , someone heavy, so I can test and report
  6. thank you LostKobrakai, let me explain - pw version is the 2.5.3 upgraded from 2.4 - the message appears on 2.4 installation too - there are no other image modules installed - the image selected is saved on the same page with images filed how to get the error - open the page - click on the image icon of the CKeditor - the images saved on the page appears withou error - click an image and appear the message - is still possible to click on the "inser image" button and the image is correctly saved into the field
  7. thanks the user have the page-views permission, the error appears only when "click" on the image
  8. Hello I have a strange issue When an user (not admin) try to insert an image on page via CKeditor or TinyMCE editor poup, he get an error: Modules: Module ProcessPageEditImageSelect failed init - You do not have access to images on this page Any ideas? Thanks very much piero
  9. Hi, @kongondo - thanks but the guest access is checked. If I'd log in now, the page would be visible to everyone. @arjen you are right: the page is not completely loaded, but the error log is empty. There are some javascript errors, I'm working to correct them. The same errors occur when the page works correctly.
  10. Hi, the bug is visible now on the page http://www.fotosociality.it/eventi this is a public page available to everyone. As you see the page now looks empty. I'm not logged in into admin but if I do it the page will work again for everyone. PHP version 5.3.3 and Mysql 3.5.8.2 the full phpini is here http://fotosociality.it/test14/info.php Processwire version is 2.3 thanks piero
  11. Hello, thanks for your help, let me look into the log file and check if the cache is in any way enabled. This is the entire code page https://github.com/jeve75/test/blob/gh-pages/events.php that you ask me. thanks j
  12. Hello, I'm working with the include& bootstrap API in order to include content from a different PW installation in my main website. It seems to work correctly, but sometimes (once per week) the page doesn't receive data from processwire (All the images and text are not showing) The only way I found to solve this is... login to the processwire admin page. Instantly the API starts to work again. This is the code I use: <?php function listPage($page, $level = 0) { if($page->numChildren) { foreach($page->children as $child) { ?> <div class="6u"> <div class="row"> <div class="6u box240 boxtext bg-color-events"> <h3><?php echo $child->title ?></h3> <p><?php echo $child->summary ?></p> <a class="scopri color-events" href="eventi?detail=<?php echo $child->name ?>"><span>scopri</span></a> </div> <a href="eventi?detail=<?php echo $child->name ?>"> <div class="6u box240 imghover color-events"> <?php $cover = $child->cover->first(); ?> <img src="/news<?php echo $cover->url;?>" alt="Vai al dettaglio dell'evento"> </div> </a> </div> </div> <?php } } }?> ..... <?php { listPage($wire->pages->get("/eventi/")); } ?> Did it ever happen to you? Any ideas about the possible cause?
×
×
  • Create New...