-
Posts
48 -
Joined
-
Last visited
About rolspace.net
- Birthday 11/11/1976
Contact Methods
-
Website URL
https://www.rolspace.net/
Profile Information
-
Gender
Male
-
Location
Zürich
-
Interests
Webdesign, Music, Family
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
rolspace.net's Achievements
Jr. Member (3/6)
4
Reputation
-
rolspace.net changed their profile photo
-
also tried to use an additional image field.... 500 error...
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
it doesn't work. even if i go one by one. it stops at 162 images......
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
Thanks for the info, Soma. What would you suggest? Just try and hope it works at some point? do you have a workaround idea? Several image fields?
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
Well, it seems that the problem starts much earlier. I can upload around 150 images (width 1600px, size between 300 and 600KB), after that, processwire does not store them anymore.....
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
it returned 96. Then I added the files like 10 at once instead of 50 and then it worked again. for a while. up to 162 images. Then the same again. I can add more pictures, save the page, leave and come back to it and the images are gone (the ones I just uploaded). this is really weird...
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
it does actually render the rest of the website correctly. It just stops after 98 pictures. and by the way, it's only thumbnails...
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
rolspace.net started following htaccess - no "Options" allowed! , images don't show and Sorting Question
-
Hi all I have a problem here. I created a gallery with 240 pictures. Created an images field with no maximum amount (0). Unfortunately, only 98 of the 240 images show on the website. Any idea what I possibly could have done wrong? Thanks for your help! <?php foreach ($page->images as $image) { $options = array( 'quality' => 90, 'upscaling' => false ); $thumb = $image->size(250, 250, $options); ?> <div class="col-xl-2 col-lg-3 col-md-4 col-sm-6 col-6 foto"> <a href="<?= $image->url ?>" data-lightbox="lightbox" > <img src="<?= $thumb->url ?>" alt="" > </a> </div> <?php } ?>
- 17 replies
-
- images foreach
- images
-
(and 1 more)
Tagged with:
-
Thanks @Zeka But I don't know where to put that code to make it work.. <?php foreach ($pages->get('/produzenten/')->prod_repeater->sort('prod_objekt') as $produzent) { ?> <div><a><?= $produzent->prod_objekt ?> <?= $produzent->prod_hausnummer ?>, <?= $produzent->prod_ort ?></a></div> <?php } ?> The above will only sort by prod_objekt (streetname)...
-
Hi all! I have a little problem here. I want to sort a list of addresses by streetname and then by number. First, I just had a field "prod_objekt" (address) containing both and then have a foreach loop like this: $pages->get('/produzenten/')->prod_repeater->sort('prod_objekt') as $produzent. Unfortunately, this would not sort by streetnumber if I had the same streetname but multiple numbers. Now, I thought I could sort by two fields. prod_object (adress) first and then by prod_hausnummer (streetnumber). But I just don't know the code for it. I tried this: $pages->get('/produzenten/')->prod_repeater->sort('prod_objekt.prod_hausnummer') as $produzent, but it wouldn't work. Any ideas on how to solve this? Thanks for your help Roli
-
Hi Guys, Just finished a website locally and wanted to upload it on the webserver of my customer. I got a server 500 error. Now, the guidelines of the hoster (world4you.com) does not allow "Options" in the htaccess-file. So, when I uncomment these: Options -Indexes Options +FollowSymLinks the site is visible, but the content won't show and no links are available. Not sure if I need the Symlinks-part but I guess I need a workaround for the Index-part. Can anybody help here? I need the website up and running asap.... Thanks! Roli