Jump to content


seddass

Member Since 01 Mar 2011
Offline Last Active Today, 07:14 AM
-----

#34463 ProcessWire Pro Cache - Now Available

Posted by seddass on 08 May 2013 - 10:26 AM

Definitely worth the investment !




#27195 ProcessWire Pro Cache - Now Available

Posted by seddass on 12 February 2013 - 11:30 AM

nginx doesnt have support to .htaccess files and all of the rewrite rules are stored in (virtual) host config updated manually. The apache rewrite rules have different syntax so they should to be converted to nginx style. I will send my version of the nginx rewrite rules by email. I believe that it will be easy to implement that ProCache will suggest the necessary rewrite riles for nginx too. Just a suggestion. 




#27131 Selector ">=" in PW2.3 doesn't work as in 2.2.x

Posted by seddass on 11 February 2013 - 02:50 PM

I will post it here hoping that it is my mistake and it shouldn't be reported as PW issue. 
 
I have pages with field "event_datetime" with value similar to:
2013-02-09 19:00
2013-02-10 11:00
2013-02-12 19:00
2013-02-14 19:00
2013-02-15 19:00
2013-02-16 11:00
 
and code 
$today = "2013-02-11 21:34";
$rows = $events->find("event_datetime>=$today, limit=3");
in PW2.2.x 
echo count($rows) will output: 3
 
in PW2.3 
count($rows) is 0
 
Is it related to the new changes in the Selectors or I have to use another way to do it properly? 
Thanks in advance.



#12080 Not (a-z) chars support in PageAutocomplete or in "Add New" Page inpu...

Posted by seddass on 27 May 2012 - 10:10 AM

Thanks MadeMyDay, the most of the cyrillic characters are already there by default.

Meanwhile I have found that the PageName input field replacement was NOT enabled by default in $sanitizer->pageName(). I have modified the Pages->setupNew() method to enable it and this allowed me to use "Create new" feature with not (a-z) characters.


#10912 Search in multilanguage site with multilang fields

Posted by seddass on 24 April 2012 - 10:54 AM

Great! Thanks, Ryan!
I am still amazed of the power of the selectors engine.


#10861 Modules CSS listed in $config->styles (frontend)

Posted by seddass on 23 April 2012 - 11:08 AM

I am using:

$config->styles->removeAll();
$config->scripts->removeAll();
on each template, before anything similar to yours snippet above, formmailer!


#10807 Problems with language-alternate fields

Posted by seddass on 20 April 2012 - 09:08 AM

I am using the latest PW commit. I will try to send a link to exported site profile by email, hoping it will make things easier.
Thanks!