Julia_B
Forum Replies Created
-
Forum: Plugins
In reply to: [WPMobile.App] Members siteI came across what appears to be a subscription website with an app version for members – just like what I want to create.
Here it is on the Play store: https://play.google.com/store/apps/details?id=com.lesmillsondemand&hl=en_GB&gl=US
It looks like everyone can download the app for free in the Play store and but only website subscribers can access the content, using their website log-in details.
So would it be possible for me to do the same? Could I make the app free to download on the app stores, but to access any content people would need to log in, using subscription log in details for my website?
Would there be a fee to list on the google/app stores if I did this?
Thanks again @amauric!
Forum: Plugins
In reply to: [WPMobile.App] Members siteI’d just like people who already pay for the website subscription to get the app for free, or for a very small amount with a discount code.
Starting free/cheap on the app stores and later raising the price could be a solution – but I guess anyone could access that, not just my website subscribers.
I’ll have a think about that option. Thanks again @amauric 🙂
Forum: Plugins
In reply to: [WPMobile.App] Members siteAh that’s a shame.
I tried the demo with your plug-in and the app looks great – love how simple it is to set up.
But I can’t think of how to integrate it for existing subscribers. Do you know if the app stores allow you to offer single-use discount codes?
It would need to be a different discount code for each member which could only be used once. Then I could give my existing website members a code to get the app really cheap and new app-only members could join through the stores.
Not sure if that’s possible though?
Really appreciate the help @amauric – thanks so much!
Forum: Plugins
In reply to: [WPMobile.App] Members siteThanks @amauric
So, is it not possible for me to make the app available to people who are already members of my website?
Could I maybe list the app as free on the google/play store but only people who already have a membership of the website could actually log in?
I just want members of the website to have the option of accessing the site content via an app, I don’t want to sell new memberships in the app stores, just make it available to download from there.
Forum: Fixing WordPress
In reply to: Google Search Console 404Thanks so much for the help @bcworkz
🙂Forum: Fixing WordPress
In reply to: Google Search Console 404Update:
It looks like I have fixed the current issue!
I deleted the .htaccess file in the juliabuckleyfitness.com folder and created a new one by clicking Save in permalinks settings and now the 404 errors seem to have stopped.
I’m really pleased about this 🙂
I’m now just unsure what to do about .htaccess file in the public.html folder. I’ve deleted it for now but kept a back-up in case it causes any issues. Everything seems to be working OK so far.
But there was a lot in the htaccess file which was in the public.html folder that doesn’t appear in the new one I created in the juliabuckleyfitness.com folder. As you can see above it was quite long.
So I’m a bit concerned about this.
Do you have any advice please?
Forum: Fixing WordPress
In reply to: Google Search Console 404Thanks @bcworkz
Strangely, I can’t see any reference to wordpress in the .htaccess file.
I’ve pasted the full contents below.
Should I try replacing it with a generic version of the file?
I really appreciate the help 🙂
#php_value memory_limit 64M
#php_value upload_max_filesize 30M
#php_value post_max_size 30M#php_value mysql.connect_timeout 120
#
# Apache/PHP/Drupal settings:
## Protect files and directories from prying eyes.
<FilesMatch “\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$”>
Order allow,deny
</FilesMatch># Don’t show directory listings for URLs which map to a directory.
Options -Indexes# Follow symbolic links in this directory.
Options +FollowSymLinks# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php# Force simple error message for requests for non-existent favicon.ico.
<Files favicon.ico>
# There is no end quote below, for compatibility with Apache 1.3.
ErrorDocument 404 “The requested file favicon.ico was not found.
</Files># Set the default handler.
DirectoryIndex index.php# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.# PHP 4, Apache 1.
<IfModule mod_php4.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule># PHP 4, Apache 2.
<IfModule sapi_apache2.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule># PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule># Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# Enable expirations.
ExpiresActive On# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600<FilesMatch \.php$>
# Do not allow PHP scripts to be cached unless they explicitly send cache
# headers themselves. Otherwise all scripts would have to overwrite the
# headers set by mod_expires if they want another caching behavior. This may
# fail if an error occurs early in the bootstrap process, and it may cause
# problems if a non-Drupal PHP file is installed in a subdirectory.
ExpiresActive Off
</FilesMatch>
</IfModule># Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on# If your site can be accessed both with and without the ‘www.’ prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the ‘www.’ prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the ‘www.’ prefix,
# (http://example.com/… will be redirected to http://www.example.com/…)
# adapt and uncomment the following:
RewriteCond %{HTTP_HOST} ^fitnessrocks\.co.uk$ [NC]
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^(.*)$ http://www.fitnessrocks.co.uk/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the ‘www.’ prefix,
# (http://www.example.com/… will be redirected to http://example.com/…)
# uncomment and adapt the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]# Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# VirtualDocumentRoot and the rewrite rules are not working properly.
# For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
#
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /# Rewrite URLs of the form ‘x’ to the form ‘index.php?q=x’.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule># $Id$
AuthName “Fitness Rocks live site”
AuthUserFile “/home/fitnessr/.htpasswds/public_html/passwd”<Files 403.shtml>
order allow,deny
allow from all
</Files># php — BEGIN cPanel-generated handler, do not edit
# Set the “ea-php70” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php70 .php .php7 .phtml
</IfModule>
# php — END cPanel-generated handler, do not editForum: Fixing WordPress
In reply to: Google Search Console 404Thanks @bcworkz
The issue is only with the http://juliabuckleyfitness.com/fitnessblog/
Some other pages are also sending errors but the homepage at http://juliabuckleyfitness.com (and https://juliabuckleyfitness.com) is fine.
I already tried checking the permalinks – I didn’t change anything but clicked ‘save changes’ because I read that this may help but it didn’t.
I’ve tried disabling all plugins and it doesn’t seem to help.
I’ve also tried switching to 2019 theme.
However, I have found something odd in the .htaccess file.
I’m not a pro developer and I don’t understand what’s in the .htaccess file but I can see several mentions of Drupal. This must a legacy from a previous site I had on the same server which was on Drupal (obviously my current site is WordPress).
This file is in the public.html folder not the juliabuckleyfitness.com folder (which has another .htaccess file which I think looks standard from what a google search is telling me).
Could this old .htaccess file in the public.html folder be causing a conflict?
If so, is there a standard template for this file I could replace it with?
- This reply was modified 6 years, 7 months ago by Julia_B.
Forum: Fixing WordPress
In reply to: Moving subdomain site to subdirectoryThanks @xdividr
This looks perfect… although I daren’t get too complacent about it all working just yet!
Will update with how it goes. Hopefully to say I’ve completed the move!
Sorry! I think I figured this out… I hadn’t enable the sub-domain in Adsense. Hopefully this will fix it.
Forum: Developing with WordPress
In reply to: Exclude tag from searchForum: Plugins
In reply to: [wp-Monalisa] Smilies not showing since updating to 3.7Sorry cubecolour! Thanks for explaining.
Is there another way I can help you investigate tuxlog?
Forum: Plugins
In reply to: [wp-Monalisa] Smilies not showing since updating to 3.7It’s a private members site,
[email address and other text removed]
Forum: Plugins
In reply to: [wp-Monalisa] Smilies not showing since updating to 3.7Hi tuxlog
Thanks for taking a look.
I’m using bbPress 2.5.10
Sorry but I don’t know how to check the debug.log – where should I look?
Forum: Fixing WordPress
In reply to: Slider – Page Link Disappeared?Thanks @dimitris33
I didn’t know that the slider was a plugin, it doesn’t seem to be on my plugins list in my dashboard.
Do you know where I can find the author details?