Show Likes

This section allows you to view all posts where this member received or gave a like to.

1
Off-topic / Re: My Journey with Wedge.
Pandos « on May 3rd, 2015, 05:36 PM »
Hmm...
@Nao: please take a look...

Here's the config:
Code: [Select]
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;
   }

}
2
Off-topic / Re: My Journey with Wedge.
Pandos « on May 3rd, 2015, 05:36 PM »
Hmm...
@Nao: please take a look...

Here's the config:
Code: [Select]
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;
   }

}
3
The Pub / Re: Creating a Front Page
Pandos « on March 5th, 2015, 02:12 PM »
It's 99,999% Nao :D
4
The Pub / Re: Creating a Front Page
Pandos « on March 5th, 2015, 11:31 AM »
Wedge is one of the best forums available.
But to get it more to public there should be an easy solution to include third-party pages.
Most sites have tons of static pages beside the forum. Why not let Wedge determine the look of them?

And here's the culprit: if a lot of sites running Wedge, it's possible to get sponsored by someone else (much better than running ads :) ).

So it takes a bit of personal effort to make it happen.
It would be very disappointing to see Wedge fall down.
Wedge is a Communiy-Management-System.... so let's give the Community the opportunity to grow with Wedge. ;)
5
The Pub / Re: Creating a Front Page
Pandos « on March 5th, 2015, 11:31 AM »
Wedge is one of the best forums available.
But to get it more to public there should be an easy solution to include third-party pages.
Most sites have tons of static pages beside the forum. Why not let Wedge determine the look of them?

And here's the culprit: if a lot of sites running Wedge, it's possible to get sponsored by someone else (much better than running ads :) ).

So it takes a bit of personal effort to make it happen.
It would be very disappointing to see Wedge fall down.
Wedge is a Communiy-Management-System.... so let's give the Community the opportunity to grow with Wedge. ;)
6
Development blog / Re: The obligatory Christmas update.
Pandos « on December 15th, 2014, 09:03 AM »
I'm alive and not drifted away. :)

At this time some heavy changes IRL are taking place. But it's getting better and I will be back soon again.
7
Development blog / Re: The obligatory Christmas update.
Pandos « on December 15th, 2014, 09:03 AM »
I'm alive and not drifted away. :)

At this time some heavy changes IRL are taking place. But it's getting better and I will be back soon again.
8
Development blog / Re: The obligatory Christmas update.
Pandos « on December 15th, 2014, 09:03 AM »
I'm alive and not drifted away. :)

At this time some heavy changes IRL are taking place. But it's getting better and I will be back soon again.
9
Off-topic / Re: Motorbike Licence
Pandos « on December 5th, 2014, 01:26 PM »
Just saw you and your new Bike :eheh:

10
Support / Re: Warning mysqli_connect
Pandos « on November 27th, 2014, 10:27 AM »
In most cases (and almost on GoDaddy and other shared hosters) it's an server issue.
If this machine is dedicated to you, extend the my.cnf with the following code:

Code: [Select]
max_connections=200

Then restart MySQL.

On non dedicated systems make sure that connections are not persistent.