This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
76
The Pub / Re: What I LIKE in Wedge!
« on January 27th, 2014, 07:19 PM »Would you please give it a try?Quote from MultiformeIngegno on January 23rd, 2014, 05:46 PM Nao you know at some point it will be needed that someone looks for the directive to make pURLS work on nginx too..? :D
Its market share now is almost 18%Code: [Select] location / { try_files $uri $uri/ /index.php; }
If needed here's my wedge config file:
server {
server_name .DOMAIN.TLD;
index index.php;
root /var/www/WEDGE_INSTALLATION_DIR;
error_log /var/www/WEDGE_INSTALLATION_DIR/error.log;
#Specify a charset
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_read_timeout 180;
include fastcgi.conf;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
## Deny dot files:
location ~ /\. {
deny all;
}
# Deny access to apache .htaccess files
location ~ /\.ht {
deny all;
}
## favicon.ico not found
location = /favicon.ico {
access_log off;
log_not_found off;
}
## robots.txt not found
location = /robots.txt {
access_log off;
log_not_found off;
}
}77
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 07:13 PM »
Ooops, my last thought shown below the avatar is overlapping the post
EDIT: not anymore.. ?!?!
EDIT: not anymore.. ?!?!
78
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 07:12 PM »Alrighty. (Maybe I'll have the new installer up when you're back... Not sure, though.)
Maybe a popup saying that page refresh (to clear cache) may be needed after changing settings regarding obfuscation and minification would be avoiding noobs complaining.
Another thing: "Enable compressed JS/CSS" should have a description that it works only on Apache (due to the htaccess config). Even better would be a check that greys it if another web server is found
79
The Pub / Re: Wedge repo -- installation feedback
« on January 27th, 2014, 05:02 PM »
http://download.simplemachines.org/index.php?thanks;filename=smf_2-0-7_changelog.txt
They just had to say "packages updated". I knew about the packages update by reading other topics.
They just had to say "packages updated". I knew about the packages update by reading other topics.
80
The Pub / Re: Wedge repo -- installation feedback
« on January 27th, 2014, 04:50 PM »81
The Pub / Re: Wedge repo -- installation feedback
« on January 27th, 2014, 04:42 PM »
+1 for releasing through GitHub. At least it would mean not to risk the problems SMF had with 2.0.7 release (they had some issues with packages, they updated them at least 2 times after release without saying when and what changed).. With github there are commits. :)
82
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 04:39 PM »
I'm still not home, tonight I'll try re enabling obfuscation (after I switched Jquery CDN) and see how it goes.
83
The Pub / Re: Wedge repo -- installation feedback
« on January 27th, 2014, 03:18 PM »No, you can't, the Selectbox doesn't appear when JQuery is missing, I had to go to the database and change it there.Quote from MultiformeIngegno on January 27th, 2014, 09:58 AM Actually you can change CDN. You mean to change it automatically when it's down?Quote from Harz-FEAR on January 27th, 2014, 02:45 AM The google CDN for jquery isn't loading, and it's somehow ironic that you can't change the jquery CDN if the CDN isn't reachable.
84
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 12:10 PM »
I disabled obfuscation..
I'll switch to jquery CDN later and see if selects and obfuscation work fine.
Anyway CDNjs had jquery 2.1.0 from day 1 :P you didn't want to add it....... :whistle:
I'll switch to jquery CDN later and see if selects and obfuscation work fine.
Anyway CDNjs had jquery 2.1.0 from day 1 :P you didn't want to add it....... :whistle:
85
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 10:53 AM »
Now I'm from mobile and can't seem to be able to view source code. Will see this afternoon. If you want to look now here's the link: ffio.it
86
The Pub / Re: Wedge repo -- installation feedback
« on January 27th, 2014, 09:58 AM »The google CDN for jquery isn't loading, and it's somehow ironic that you can't change the jquery CDN if the CDN isn't reachable.
87
Archived fixes / Re: select has visibility:hidden on create new topic
« on January 27th, 2014, 12:41 AM »
Yeah I can confirm all selects are set to visibility:hidden by default. When I set them to visible there's raw code in them.
Another thing: when I enable "Enable compressed JS/CSS" all stylings are lost..
Another thing: when I enable "Enable compressed JS/CSS" all stylings are lost..
88
Archived fixes / select has visibility:hidden on create new topic
« on January 26th, 2014, 11:13 PM »
Default is as attachment 'wedge1'. If I set visibility:visible I see as attachment 'wedge2'
89
The Pub / Re: Wedge repo -- installation feedback
« on January 26th, 2014, 11:01 PM »
I just downloaded the zip from GitHub, uploaded to my VPS (PHP 5.5.8, nginx 1.5.9), chmodded all the files to 775 and chowned to www-data (which is in the root group). Stylings have something wrong..: http://ffio.it/install.php
I get a 404 when I try to load the CSS file
Ok now it works! It was CloudFlare's fault... -_-
Posted: January 26th, 2014, 10:58 PM
I get a 404 when I try to load the CSS file
Posted: January 26th, 2014, 11:00 PM
Ok now it works! It was CloudFlare's fault... -_-
90
Off-topic / Re: Aeva: preg_replace(): The /e modifier is deprecated, use preg_replace_callback
« on January 26th, 2014, 10:45 PM »It'll probably work, as it's close in spirit to the Wedge version.
Why didn't you simply use the one I gave you, though..? :P