naijarules.comHave you seen ElkArte yet? Another nice SMF fork.
Nginx is perfectly fine with wedge at far as i have seen it. The only thing you have to keep in mind is that nginx does not support .htaccess files (at least in default installation).
What's the advantage of maintaining two complete themes instead?
index.php?action=admin;area=featuresettings;sa=home
Sorry don't know the english descriptions, but there you can change it.
From the link you gave me, there is no option to disable it entirely, just to remove it from the displaying in the homepage. This means that thought query is still executed but to displayed. I was looking for an option to display thought entirely.Quote from CerealGuy on April 29th, 2015, 11:54 PM index.php?action=admin;area=featuresettings;sa=home
Sorry don't know the english descriptions, but there you can change it.
Thanks anyway.
Just take a look at the documentation :)
http://wedge.org/doc/8392/prettyurls-on-nginx/
The topic or board you are looking for appears to be either missing or off limits to you.
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;
}
## 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;
}
}
server {
listen 80;
listen [::]:80;
root /var/www/nerdng.com/html;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name nerdng.com www.nerdng.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/html;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}That would be stupid if wedge executes the queries but not display thoughts. I will have a look at it...Quote from Wanchope on April 30th, 2015, 09:35 AM From the link you gave me, there is no option to disable it entirely, just to remove it from the displaying in the homepage. This means that thought query is still executed but to displayed. I was looking for an option to display thought entirely.Quote from CerealGuy on April 29th, 2015, 11:54 PM index.php?action=admin;area=featuresettings;sa=home
Sorry don't know the english descriptions, but there you can change it.
Thanks anyway.
You can also include JavaScript files based on your screen size or even platform. :)
Not in CSS but in JavaScript.
Responsive as I understood is using one theme to render both desktop and mobile theme at the same time, how do you remove Java script on mobile and make it available on desktop at the same theme assurances obsèques? This is me not doubting you, I just don't know it can be done, css can to resize the screen size but can it disable Java script / Ajax? Can it reduce the font on mobile from being different from desktop? Thanks.
Dear "Sabrina" from Paris (?!), I would love to meet you in real life. Please, tell me more about the assurances obsèques you tried to innocently link in your quote to another message! Lol... Spammers are getting creative, I guess.
PS: Lol, this topic is so outdated, the guy seems to have switched to XF in the meantime... I still use Wedge on a daily basis on my other sites, and wouldn't change to anything else for the world, but of course your mileage may vary.
...it's very easy to port SMF 2.x mods to Wedge...
I hereby give permission to the SMF team to backport anything they like from Wedge into SMF, as long as they follow the BSD licence guidelines. Same for ElkArte and its team.
Honestly, I haven't the faintest idea about the current state of SMF.
Had I been forced to guess, I'd have said they were advancing at their own speed (i.e. a turtle?), which after all is the reason why I left the SMF dev team to focus on forking it.
Then again, SMF was born around 2003 or so, and it made a lot of progress in 7 years. While it's natural to understand it wouldn't move at a higher pace in the following 10 years (80% of what's need in a forum was already implemented, what else could be done that's not in Wedge already?), it's a bit of a let-down if it's true they haven't done much progress.
ElkArte is a very heavy modification of SMF. It however focused on different areas and isn't really following the same philosophy as Wedge.
Then again their forum also seems to be more active than mine. But obviously it doesn't automatically mean they're advancing faster.
Also, they really need a designer to help with their forum layout, ahah.
I don't consider myself a designer, but my work on the main Wedge theme, I consider better than what Elk and SMF both did. I really wouldn't mind if I found some of it in their software. Come on, even the little details I focused on back in the day, such as doing some JavaScript magic to have user mini-profiles align along their long posts vertically, now that's done with standard CSS -- in this case, position: sticky does the trick.
Anyway. I'm not here to judge anyone. None of us at Wedge, Elk and SMF make money over our work, as far as I know. It's always a passion project. That all 3 of them are still active 10 years after is a testament to how committed we all are.