Forum Activity for @jimmy

jimmyk
@jimmy
02/25/16 05:09:56PM
514 posts

Mail Options


Suggestions

Another note: SparkPost just changed their pricing model as a result of the Mandrill situation. Up to 100K emails a month for free! 101K+ is $44 a month.

https://www.sparkpost.com/pricing
jimmyk
@jimmy
02/25/16 09:03:24AM
514 posts

Mail Options


Suggestions

I'm in the process (with another piece of software) of dealing with the Mandrill decision to "close" and force everyone to have a paid account though MailChimp. A lot of people are moving from the service.

While researching new providers, I found an interesting chart. I know Jamroom uses Mailgun for mail - which is a great service - but looking at the chart below the deliverability is much higher for other providers. Maybe you guys would want to create another module for SparkPost or SendGrid?

Just a suggestion.


CcCSOmUW4AArS0I.thumb.png.81867815725bf65c3ec1d9b939791a1a.png CcCSOmUW4AArS0I.thumb.png.81867815725bf65c3ec1d9b939791a1a.png - 153KB

updated by @jimmy: 05/29/16 09:31:30PM
jimmyk
@jimmy
02/24/16 02:31:09PM
514 posts

How Apache Is Losing The Web To NGINX


Off Topic

I'll check that out! I use both, but since I started using centminmod.com for my servers, I've moved to using Nginx. If you haven't ever check out centminmod.com it's one of the best LEMPs I've ever used. eva2000 (developer) is a really smart guy - check out the centminmod forums.
jimmyk
@jimmy
02/24/16 01:02:39PM
514 posts

How Apache Is Losing The Web To NGINX


Off Topic

Some parts of the platform stack are so ubiquitous that that are almost transparent. Commercialized web servers were the first part of the Internet to make the jump from service providers to enterprises, and they made companies like Netscape, IBM, Microsoft, and Red Hat rich in those early days.

The open source Apache web server rose to prominence along with the open source and Linux software movements that coincided with the rise of Internet-style networking and computing, and for several decades the Apache web server has dominated the installed base. But the NGINX web serving and load balancing platform, which is also open source, has been making steady gains in recent years, and it looks like it won’t be too long before it surpasses Apache in the installed base.

What is going on here?

Read More: http://www.nextplatform.com/2016/02/24/how-apache-is-losing-the-web-to-nginx/
updated by @jimmy: 05/27/16 11:08:28AM
jimmyk
@jimmy
02/15/16 01:28:35PM
514 posts

Jamroom and Nginx Centmin Mod LEMP Stack


Off Topic

Created a separate staticfiles.conf file located here:

https://gist.github.com/zeronug/c5d3298f4783dc73efc9
jimmyk
@jimmy
02/15/16 11:24:37AM
514 posts

Index Not Found


Installation and Configuration

I believe I figured it out. What I did was create 3 locations for the directories:

location ~^(/modules/).*(\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso))$ {
	gzip_static off;
	#add_header Pragma public;
	add_header Cache-Control "public, must-revalidate, proxy-revalidate";
	access_log off;
	expires 30d;
	break;
        }
    location ~^(/data/).*(\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso))$ {
	gzip_static off;
	#add_header Pragma public;
	add_header Cache-Control "public, must-revalidate, proxy-revalidate";
	access_log off;
	expires 30d;
	break;
        }
    location ~^(/skins/).*(\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso))$ {
	gzip_static off;
	#add_header Pragma public;
	add_header Cache-Control "public, must-revalidate, proxy-revalidate";
	access_log off;
	expires 30d;
	break;
        }

I can use the three above and the images show. If I try one of the location blocks with:

/image/img/module/jrCore/

the ACP jrCore images don't show. So, I know it's working on all the images except that specific location, which happens to be the location for those ACP images.
updated by @jimmy: 02/15/16 11:25:17AM
jimmyk
@jimmy
02/15/16 11:09:40AM
514 posts

Index Not Found


Installation and Configuration

@brian most of the files with the extensions (3gpgifjpgjpegpngicowmvaviasfasxmpgmpegmp4plsmp3midwavswfflvexeziptarrargztgzbz2uha7zdocdocxxlsxlsxpdfiso) are going to be in either the skins and the data directory, correct? If so, I can apply the rule to both those directories and omit the modules directory?
jimmyk
@jimmy
02/15/16 10:52:09AM
514 posts

Index Not Found


Installation and Configuration

I'm not sure I want to exclude that rule for the entire JR site. Since it's only affecting a select group of images in the ACP couldn't there be a sort of work around for this?

I could create a new staticfiles.conf file for just my JR site on the server. But like I said above, I wouldn't be able to use any of the settings for all the other images on the site which aren't affected by this.

I'm trying to do a specific rule for the jrCore directory. We'll see what happens.


updated by @jimmy: 02/15/16 10:57:58AM
jimmyk
@jimmy
02/14/16 08:40:34PM
514 posts

Image Upload Issue


Jamroom Developers

I tried it on Firefox before and it worked. Dam Chrome!
jimmyk
@jimmy
02/14/16 05:17:20PM
514 posts

Index Not Found


Installation and Configuration

Looks like I found the issue.

There is a location for staticfiles in Centminmod.

   location ~* \.(3gpgifjpgjpegpngicowmvaviasfasxmpgmpegmp4plsmp3midwavswfflvexeziptarrargztgzbz2uha7zdocdocxxlsxlsxpdfiso)$ {
	gzip_static off;
	#add_header Pragma public;
	add_header Cache-Control "public, must-revalidate, proxy-revalidate";
	access_log off;
	expires 30d;
	break;
        }

@brian the above isn't playing nice with the images in the ACP (see screen shot above) any thoughts? I can remove it for JR but having this included works for every other script I've installed and I'm not having any other issues with any of the other images on the site... just the ACP images.

I asked the centminmod developer https://community.centminmod.com/posts/26574/ if I could just remove the above and he said:

Quote:
"What is an example url link to the broken image ? and where does that image reside on local path ?"
depends on that

Any ideas?
updated by @jimmy: 02/14/16 05:41:05PM
  24