Jump to content

Manaus

Members
  • Posts

    212
  • Joined

  • Last visited

Everything posted by Manaus

  1. RT @lettersfromswe: MTG Sans – a new custom typeface created with @bvd for MTG and Viaplay.http://t.co/9xPh38MyPE http://t.co/IIp9MUhU9j

  2. Hello, I know I can choose /processwire as base url for administration during setup. Can I change it after installation? If so, how? Thanks
  3. RT @YESstudio: "Don’t try to be an artist. Find the thing within you that needs to be expressed. You might find it is art." Duane Michals

  4. RT @ryber: Everyone enjoys trolling JavaScript for it's weirdness but everyone has something. Here's Java http://t.co/SszNlbefLP

  5. Hi Pete, I use to sign in with Twitter, but can't say what's my password, since the login name is different from Twitter's, and so is the email. Still the forum's working! Awesome technology. Thanks
  6. RT @googlefonts: Roboto is updated in @googlefonts to the latest Material Design version! http://t.co/4jhnb8Eqbq

  7. The Light Bandit concentrates sunlight into thin optical fiber tubes and delivers it to your desk. http://t.co/octvyF4k4u

  8. RT @postcss: Awesome PostCSS plugin by @jieorlin to write (width <= 600px) instead of confused (max-width: 600px) by CSS 4 spec https://t.c…

  9. RT @ADIbeinasco: Stringiamoci attorno alla famiglia Cucchi, preghiamo che Dio possa consolare i loro cuori. https://t.co/GHXonmDj7e / @stef

  10. Hello, I'm trying to get a page like /20141214-my-url-title, but seems like either it's a date or it's a title. For example, I tried Y-m-d-title, and I got 2014-12-14-310231sundayamerica-new_york which is nice in its own right, but not what I'm currently looking for. Thanks for any suggestion...!
  11. Hello, I'm trying to import some polymer elements, but for some reason I get a 403 this is the code <link rel="import" href="<? echo $config->urls->templates ?>bower_components/paper-input/paper-input.html" /> Is there a workaround? Thanks!
  12. Love a @cloudup, che converte i file md al volo #comepossostareunavitasenzate

  13. Managed to do this $pages->get(1)->get("image")->get("name=myotherlogo.png")->url and even $pages->get(1)->image->get("name=myotherlogo.png")->url I guess it's the shortest version...
  14. Hello, I'm trying to access a file called 'myotherlogo.png' from a page, but I cannot. Tried: $pages->get(1)->image('name=myotherlogo.png')->url // method Page::image does not exist $pages->get(1)->image->first->url // this works, but I don't need the first Thanks!!
  15. RT @ziodrums: Partecipo anch'io al #mynew10! (Senza selfie, però.) http://t.co/gHPRK6sBn1

  16. Hello, is there an easy way to include an image, say the one attached to the post, in the text flow of the body field? For example <p>Lorem ipsum</p> <img src="xyz" /> <p>Dolor sit amet</p> I fear a common user/client could not care about understanding the usage of relative paths, even less the absolute ones. I would fancy something like <thisarticleimage name="landscape.jpg" /> Thanks for any suggestion
  17. RT @giacheme: "Made In" - The value of country of origin for future brands http://t.co/hUkNaR5jOo #MadeInItaly #Expo2015 http://t.co/NZ6bSL…

  18. Thanks Jan, sort of figured it out: instead of using $http.post('url', data) I used a config object: var config = { method: 'POST', url: '/ajaxprocessingpage/', data: $.param({dati: jsobject}), headers: {'Content-type': 'application/x-www-form-urlencoded'} } $http(config) .then()... In this case, It is accessed on the ajaxProcessingPage as an array using $input->post->dati So complicated... !
  19. Hello, I'm trying to submit a form through AngularJs $http object, but I can't get any response. My post values are a json object: {"user":"johndoe", "email":"jd@..."} But in the receiving page, I'm using this code [at no avail]: var_dump($input->post) // WireInputData (size=0) echo $_SERVER['HTTP_X_REQUESTED_WITH'] // returns void echo 'hi' // works var_dump(json_decode($input->post, true)); // returns null echo $config->ajax; // no response Thanks for any help
×
×
  • Create New...