Jump to content


Didjee

Member Since 15 Feb 2012
Offline Last Active May 21 2013 09:26 AM
-----

#30332 Where did you find about ProcessWire?

Posted by Didjee on 17 March 2013 - 05:38 PM

I heard about PW by reading a post on the Textpattern forum (which was my previous 'main' CMS). After implementing my first PW site, I never switched back to Txp ;-)


#27103 ProcessWire 2.3 Testing

Posted by Didjee on 11 February 2013 - 10:23 AM

Upgraded from 2.2.9 to 2.3-dev without any problems!

 

Specs:

  • Apache 2.0
  • PHP 5.3.16
  • MySQL 5.0.95



#23398 New year, new website

Posted by Didjee on 02 January 2013 - 11:13 AM

At the start of this new year I launched my new website: Didjee.nl (in Dutch only, sorry :))


#23155 carousel or image slider

Posted by Didjee on 28 December 2012 - 04:21 AM

Check out Caroufredsel (http://caroufredsel.dev7studios.com/). One of the best slider plugins i've seen so far. It's highly configurable.


#22881 image upload gettings stuck on 100%

Posted by Didjee on 21 December 2012 - 08:21 AM

Working on a Mac using Safari and Firefox, I recently had exactly the same problem after moving a website from developing server to live server (from another provider). After that I could only upload images with a file size of max. 200 KB, while max upload file size set by the provider was 16 MB.

In Internet Explorer 8 I had no problems uploading larger files. In that browser the AJAX-uploader (with drag-and-drop functionality) isn't supported, instead the 'classic' uploader is used. So I thought the AJAX-uploader should be the problem. I solved the problem after editing line 296 of InputfieldFIle.js (wire/modules/Inputfield/InputfieldFile/) from:

InitHTML5();

into:

InitOldSchool();

Strange thing is that this problem only shows up at some providers...


#17644 ProcessWire Conference 2013 / London / Cambridge

Posted by Didjee on 27 September 2012 - 08:17 AM

+1 for London!


#9276 [release] Bootstrap Admin Theme

Posted by Didjee on 15 March 2012 - 10:37 AM

Hi! This is my first post here ;-)

I solved the issues mentioned by Soma by editing bootstrap.css.

Go to /wire/templates-admin/styles/bootstrap.css
Remove or comment line 2063 to 2087 (.modal class) and replace it by:

body.modal {
   background-position: 0 -60px !important;
}
body.modal div.topbar,
body.modal ul#breadcrumb {
   display: none;
}
body.modal div.container-fluid {
   min-width: 300px;
}
body.modal div.container-fluid > div[style] {
   padding-top: 15px !important;
}

Posted Image