Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
New Webmasters ask "How-To" questions here. This is where other fucking Webmasters help. |
|
Thread Tools |
04-08-2014, 09:14 AM | #1 |
Registered User
Industry Role:
Join Date: Dec 2012
Location: NYC
Posts: 3
|
Alternatives to WordPress?
Hey all,
I owned a couple of non-porn blogs about a year ago and used the WordPress platform, but they were constantly hacked. Even with the Better WP Security plug-ins and a few others, it'd still happen. They'd just use some script and my site would be one big ad for some kind of religious group. My web hosts kept giving me crap about it so I just let the domains expire. Anyone recommend an alternative to WP? Something that, like Wordpress, would let me run a larger site and not just blogs? |
04-09-2014, 10:44 AM | #2 |
Registered User
Industry Role:
Join Date: Apr 2014
Location: Los Angeles, CA
Posts: 6
|
Were you running some kind of third-party plugin on the WP sites? WordPress isn't without its problems, but the default install shouldn't be vulnerable in the way you're describing. As long as you keep it updated and aren't adding plugins or third-party modules with obvious huge security holes, your site should be pretty safe. There are also ways to harden it to discourage people/bots from even attempting to exploit it.
There are definitely other platforms, like Joomla (which I think is even worse as far as security goes), but it sounds like you really just need to hire a competent webmaster/server admin. WP will also let you run actual sites - you just need to do some tweaking to remove the "blog" features. I have a number of sites I've designed for people based on WP that don't even remotely resemble a blog (if you're wondering why I used WP, it's because the client needed something simple to help them manage it, and the projects didn't necessitate writing an entire custom CMS).
__________________
QuadraNet - Dedicated Servers, Colocation, and Cloud Hosting Los Angeles, CA | Dallas, TX | Miami, FL We make amazing deals! Email [email protected] |
04-09-2014, 01:24 PM | #3 |
Confirmed User
Industry Role:
Join Date: Apr 2012
Posts: 284
|
reaction
Wordpress platform about the best I think, I run Blogs,webites and tubes all on WP
I have NOT had any problems like you discribed..(not sure what happened!..?) Promote the World’s #1 Hardcore 3D Sex Simulation RPG Sell to a massive market of 1 billion videogamers worldwide. 75% are 18+ years old & online gamers are typically PORN CONSUMERS! Push super high quality Windows PC game versions for Straight, Gay, & Anime sites. Feed your traffic free-2-play demos with embedded tracking codes never miss a sale! Upsell collectible virtual items, content upgrades & companion user community. True 50-50 Rev Share (up to 60%) for ALL SALES and LIFETIME UPGRADES & 5% Webmaster Referrals Top conversions, retention, ARPU, promo tools, and customer service. Real-time stats, multiple payout options & PROMPT PAYOUTS SINCE 2001 THRIXXCASH |
04-09-2014, 07:08 PM | #4 | |
Registered User
Industry Role:
Join Date: Dec 2012
Location: NYC
Posts: 3
|
Quote:
I did have some third party stuff, so that was probably it. I'll give WP another shot. Thanks. |
|
04-09-2014, 10:42 PM | #5 |
Registered User
Industry Role:
Join Date: Feb 2013
Location: Ohio
Posts: 52
|
Good to see you're not throwing in the towel on WordPress. As far as open source CMSes go, it far and away my favorite.
A lot of the WordPress security plugins out there are the shits but you might want to take a look at WordFence for future use. It does a ton of stuff but, most importantly, it scans all core/theme/plugin files and compares them against the WordPress repository for modifications. It's hard to stop a hit and run exploit/injection/attack but WordFence at least gives you a fighting chance. |
04-12-2014, 02:49 PM | #6 |
I'm still broke.
Industry Role:
Join Date: Jul 2008
Location: WildWildWest
Posts: 3,083
|
There is no real alternative to WordPress in my opinion.
But you may check: http://mywebmasterlinks.com/#CMS-Software |
04-12-2014, 08:17 PM | #7 |
♥♥♥ Likes Hugs ♥♥♥
Industry Role:
Join Date: Nov 2001
Location: /home
Posts: 15,841
|
Ghost is interesting. https://ghost.org/
__________________
I like pie. |
04-13-2014, 06:35 AM | #8 | |
Likes Pie
Industry Role:
Join Date: Dec 2007
Location: The land that liberated porn
Posts: 12,400
|
Quote:
__________________
Get 5% for life on Model Earnings and Fan token buys with AdultNode.com - Studio Link - Creators keep 100% of your earnings
|
|
04-13-2014, 09:09 AM | #9 |
DirtyPeach.com
Industry Role:
Join Date: May 2010
Location: I'm mobile
Posts: 828
|
I know I'm in the minority here on this, but I've always preferred Joomla over Wordpress.
|
04-13-2014, 09:45 AM | #10 |
♥♥♥ Likes Hugs ♥♥♥
Industry Role:
Join Date: Nov 2001
Location: /home
Posts: 15,841
|
That's for their hosted version. You can download it and run it on your own server like Wordpress.
https://ghost.org/download/
__________________
I like pie. |
04-14-2014, 01:20 AM | #11 |
So Fucking Banned
Join Date: Jul 2006
Posts: 342
|
whats your host, im sure this is related to your host, if some of his other clients are infected , someone with a big A in its name who is constantly spammed in here has this particular problem
|
04-14-2014, 01:23 AM | #12 |
So Fucking Banned
Join Date: Jul 2006
Posts: 342
|
putting stuff like this in your .htaccess helps too
(my not be the best solution but it helps) Options +FollowSymLinks RewriteEngine On RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) RewriteRule ^(.*)$ index.php [F,L] <Files ~ "^\.ht"> Order allow,deny Deny from all </Files> <Files xmlrpc.php> Order Deny,Allow Deny from all Allow from PUT YOUR DESIRED IP HERE </Files> <Files wp-signup.php> Order Deny,Allow Deny from all Allow from PUT YOUR DESIRED IP HERE </Files> <Files wp-login.php> AuthUserFile /var/www/html/.htpasswd AuthName "Private access" AuthType Basic require user PUTYOURUSERNAMEHERE </Files> # 5G:[QUERY STRINGS] <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} (\"|%22).*(<|>|%3) [NC,OR] RewriteCond %{QUERY_STRING} (javascript.*(\;) [NC,OR] RewriteCond %{QUERY_STRING} (<|%3C).*script.*(>|%3) [NC,OR] RewriteCond %{QUERY_STRING} (\\|\.\./|`|=\'$|=%27$) [NC,OR] RewriteCond %{QUERY_STRING} (\;|\'|\"|%22).*(union|select|insert|drop|update|m d5|benchmark|or|and|if) [NC,OR] RewriteCond %{QUERY_STRING} (base64_encode|localhost|mosconfig) [NC,OR] RewriteCond %{QUERY_STRING} (boot\.ini|echo.*kae|etc/passwd) [NC,OR] RewriteCond %{QUERY_STRING} (GLOBALS|REQUEST)(=|\[|%) [NC] RewriteRule .* - [F] </IfModule> # 5G:[USER AGENTS] <IfModule mod_setenvif.c> # SetEnvIfNoCase User-Agent ^$ keep_out SetEnvIfNoCase User-Agent (binlar|casper|cmsworldmap|comodo|diavol|dotbot|fe edfinder|flicky|ia_archiver|jakarta|kmccrew|nutch| planetwork|purebot|pycurl|skygrid|sucker|turnit|vi kspider|zmeu) keep_out <limit GET POST PUT> Order Allow,Deny Allow from all Deny from env=keep_out </limit> </IfModule> |
04-18-2014, 01:09 PM | #13 |
Registered User
Industry Role:
Join Date: Jul 2012
Posts: 21
|
There are a bunch of free CMS's on GitHub.
|
04-22-2014, 02:37 AM | #14 |
Biz Dev and SEO
Industry Role:
Join Date: Jun 2005
Posts: 15,136
|
Fix your file permissions, change wp-login url, disallow wp-login access to your IP(s)... or try http://drupal.org/
__________________
--- Busy ranking websites on Google... |
05-06-2014, 02:59 PM | #15 |
Let's Make Money
Industry Role:
Join Date: Dec 2008
Posts: 8,784
|
Don't know any alternative to WP.
|
05-07-2014, 09:08 AM | #16 | |
Confirmed User
Industry Role:
Join Date: Nov 2009
Posts: 1,425
|
Quote:
I have 3 Joomla sites that have been running for years. No issues.
__________________
Go Fuck Yourself! |
|
05-19-2014, 03:36 PM | #17 |
Confirmed User
Industry Role:
Join Date: Mar 2012
Posts: 210
|
wordpress is probably one of the best of not the best but when you play with free stuff you go along with problems you can get, with $100 worth of premium plugin, you can create a complete community with great features in a really secured wordpress website.
Bare in mind, if a hacker wants to get in, it doesn't matter if you are using wordpress or not, he will go in
__________________
French Translator contact me via skype: media22.fr Uploader available |
05-23-2014, 02:37 PM | #18 |
Confirmed User
Industry Role:
Join Date: Sep 2012
Posts: 827
|
Wordpress is the biggest and most popular program. It is like using DuckDuckGo.com instead of Google (or Bing). You don't want to do that, I think (you have all the plugins / themes / support forums with a lot of experienced users / book about it etc).
|
09-30-2014, 05:53 PM | #19 |
X10 Revenue
Industry Role:
Join Date: Jul 2011
Posts: 405
|
Alternative to WP. Clickcastx 3.0 is an amazing adult site content management software with a lot to offer. From VOD, Webcam, storefront, blog, billing and content customized by you. Easy set up and management. Get your adult site set up and working correctly with us and you won’t be disappointed it is the newest and most advance CMS software to be offered. Worried about security you can enable fraud controls lto protect your site from shared passwords and brute force attacks. Please feel free to check out our new demo at www.clickcastx.com/demo . We look forward to answering any questions you may have.
|
10-03-2014, 08:19 AM | #20 |
Registered User
Industry Role:
Join Date: Sep 2014
Posts: 57
|
there is no any alternative to WP
fast useful a lots of plugins! |
01-04-2015, 03:13 AM | #21 |
Registered User
Industry Role:
Join Date: Dec 2014
Posts: 60
|
Wordpress is the best. It does not make sense to "reinvent the wheel" with something else. If you are looking for free Wordpress-based xxx blog hosting, check out DirtySexBlog.com.
|
01-04-2015, 08:08 AM | #22 |
Confirmed User
Industry Role:
Join Date: Nov 2014
Posts: 182
|
Wordpress is good, if you need plugins just use those that are popular and updated frequently.
Harden the security first on the server level, and then Wordpress it self and you are ok. |
01-08-2015, 09:44 PM | #23 |
Registered User
Industry Role:
Join Date: Jul 2011
Posts: 4
|
Install the "better Security" plugin. We had the same problem you did, CONSTANT hacking. That plugin changed everything. I've used it since it was called "Better Security" but now it's called "iThemes Security".
There's a free and a pro version. It will examine your site and make a LOT of changes. With your approval and actions on your part. With that plugin I haven't had problems. BUT I always promised myself if I ever had a bad hack string afterwards the next step is CloudFare. Talk about bulletproof |
01-09-2015, 01:09 AM | #24 |
Registered User
Industry Role:
Join Date: Oct 2014
Location: Under the blue sky
Posts: 75
|
im using wordpress too, and its sounds very great for free services.
about the hackers they can almost do anything, even sony and fbi can be hacked
__________________
|