Jump to content

Exceptionz Project

Members
  • Posts

    23
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.exceptionz.net/
  • Jabber
    info@exceptionz.net

Profile Information

  • Gender
    Not Telling
  • Location
    somewhere between / and /home/user/

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Exceptionz Project's Achievements

Jr. Member

Jr. Member (3/6)

18

Reputation

  1. Is it an alternative for you to set that variables in the .htaccess file ? <IfModule mod_php5.c> php_value upload_max_filesize 10M php_value post_max_size 20M php_value memory_limit 30M </IfModule>
  2. If you describe your intention and explain the errors / troubles you are getting, we could help you more aimed.
  3. Hi Joss, thank you for your post. I already have a wiki account. I want also begin with the content part (maybe with the categorization). Your ideas / categories etc. are a good starting point for the wiki
  4. Hi Joss, thank you for this thread. I was also planning to contribute to this part of the project (as I mentioned in the thread "bookmarks"). I have also some change suggestions / improvement proposals. Maybe we could begin creating a roadmap for the wiki at the beginning of the next week?
  5. Providers are sometimes willful... I would try again to convince your provider to add your request as an exception since it is only 3-4 lines in the exceptions config file in mod_security. <LocationMatch /url/to/your/application/request> <IfModule mod_security2.c> SecRuleRemoveById IDHERE </IfModule> </LocationMatch> By the way; mod_security could be -if configured well- a very efficient application layer firewall for webhosts... So it is better not to deactivate it for the vhost, if you don't have any other firewalls/security solutions for your vhost.
  6. It would be better to contact your provider to disable that rule (by ID) / add an exception / or adjust the rules for your host (for that specified false positive)... Some rule sets of mod_security (or other request filter / application layer firewalls) are producing false positives in such usage cases.
  7. I think you are looking after this:
  8. Thanks for the information ryan. I think it is better in this case to fill, refill and reanimate the official wiki of this project.
  9. OK. What do we wait for? I could help with if we could create a basic but structured roadmap with distribution of tasks for that project.
  10. Fantastic to see that PW gets such triumphs
  11. You think a categorised site with code solutions for problems which are already solved in this forum?
  12. It is possibile with PW. You just need the user input from the select list and use the selectors listed here to code your own formular processing for customized search form: http://processwire.com/api/selectors/
  13. You could use the count function: if(count($page->gallery)) { // here your code (for displaying h6 ...) } else { // ... } For more information look at here http://processwire.c...ypes/repeaters/ or here http://processwire.c...pi/arrays/page/
  14. Did you read this thread? http://processwire.com/talk/topic/22-how-to-build-a-news-page/
  15. I don't know if your intention was that one, but maybe you could create a new page (maybe with a template images/banners?) with only images as fields (or html codes for showing the image or maybe repeater) and load them at your wanted place. For this purpose, you could use something like this: <?=$pages->get("/your_central_image_page/")->image1?>
×
×
  • Create New...