bbcurtis
Forum Replies Created
-
Is there an actual fix for this problem? I’ve uploaded over
1GB or so and am trying to sync it gets stuck atStarting sync. Memory usage: 240.2 MiB – Limit: 256.0 MiB Note: The memory usage seems to be quite high. Please disable other plugins to lower the memory consumption.
Checking for file changes… done!
Searching for new files…
I should have stuck to what I used to do, upload a few handfuls of files then sync…but it would be nice to get this function to work properly.
Would love any input.
Thank you!Looking for some help. Everything has been working fine to this point, need to get this back up and running.
thank you!Greetings again,
Not sure if I explained properly. Is there a way to have the function of the Filebrowser, though not as a “tree” rather is confined to a
“box”. (don’t know how else to explain) Working with this iframe, I need something that works like the tree, but does not open DOWN the page.Clifford
Forum: Networking WordPress
In reply to: Login/Redirect issuesHi there. Checking in one more time for any additional feedback on the above. I’ve not done much in the last few days.
Thanks Much!Forum: Networking WordPress
In reply to: Login/Redirect issuesI need to get my mind wrapped back around the setup without Multi Site.
What I need is:A place for each client to go and download their content. Content will be audio files. Not just 1 file, but all their files will be categorized by year and month. So they log in and see a Master Archive which takes them to a year/month, then they see each job in that month folder.
I’d prefer to customize each page with own log as i’ve got now,
and each client space will be password protected, etc…I’ve taken wordpress-file-centre for a test drive, but looks like they can only see one file. So yes,
1) Users can login and only download their content.2) No one else can see their content.
Forum: Networking WordPress
In reply to: Login/Redirect issueshi, sorry didn’t want to keep asking as you’ve been so kind already:)
Hmmm, seems like I might have tried that plugin, for something. Honestly I don’t remember. I just started using WordPress and messing with code, end of June and have tried so many things, one after other just to get something to work, so i’ve lost some knowledge of what i’ve done.
With my current setup, can you explain a little further on how I might tweak, or implement to get the results I need?
Forum: Networking WordPress
In reply to: Login/Redirect issuesGuess I need to rethink how I can accomplish what I want to do.
Thanks so much for the time in working with me to try and get
that issue figured out.Take Care!
Forum: Networking WordPress
In reply to: Login/Redirect issuesOkie, let’s see if I can do this 🙂
If I place (page names are not accurate, only for discussion)
spotsonline.com/site4 (which has a login)
in the browser (do not log in)
and place
spotsonline.com/site5 (which has a login)
in the browser and log in with user 3–i’m now IN.Now with spotsonline.com/site4 in the browser (DO NOT LOGIN, just hit enter), I can get into site4 without having to login.
As soon as I log out of of either site, then try to access the site that is still open, the site that is still open, logs out.
Switch the scenario with sites and the same thin happens.
(and of course I can log into each site with user1)
Now the exception in this scenario is:spotsonline.com/site4 (which has a login)
in the browser (do not log in)
and place
spotsonline.com/wp-login.php (which has a login)
in the browser and hit enter, it thinks i’m trying to login
to site4 BUT won’t let me.yikes, hope I did ok.
Forum: Networking WordPress
In reply to: Login/Redirect issuesI’m not totally sure of creation date, but this is the order
they appear in “My Sites” Menu:
Site1 – User1 (Role=Admin)
Site2 – User1 (Role=Admin)
Site3 – User1 (Role=Admin)
Site4 – User2 (Role=Subscriber), User1 (Role=Admin)
Site5 – User3 (Role=Subscriber), User1 (Role=Admin)Forum: Networking WordPress
In reply to: Login/Redirect issuesGotcha.
I have 5 sites. On 3 of the the sites I only have 1 user as “Administrator” 1 other site has 2 users, 1 “Subscriber” and 1 Administrator, and one more site with 2 users, “Subscriber” and 1 Administrator.
Network Activated Plugins:
Add Logo to Login / Login Configurator Take Control of the WordPress Toolbar / WP-Filebase / WP Hide DashboardOnly 1 of the sites (the original site I created before I sent to Multisite) has 2 plugins activated on the site itsel: Admin Trim Interface and Jetpack by WordPress.com—the other do not have any activated on the individual site.
Forum: Networking WordPress
In reply to: Login/Redirect issuesNot that I can tell. I even deleted users that I had created for test purposes. In Network Admin, I see all users, there are two
independent users and who has super admin.Maybe another plugin causing an issue?.
HMM, this is interesting. If i’m logged into one account,
and type in the url of another page, I can get in w/out logging in. OK, we know that, but when logged into one account and I try to log into the admin account with http://spotsonline.com/wp-login.php I get redirected to
the profile page of the original account i’m logged into, BUT doesn’t let me in, I get an “invalid user ID” …Forum: Networking WordPress
In reply to: Login/Redirect issuesNo Go, still acting same. I coped the code direct from your post, pasted in the loggedin-shortcodes.php file that is in wp-content/plugins
..acts same on mobile browser, Chrome, Firefox, IE7Forum: Networking WordPress
In reply to: Login/Redirect issuesI made the change to the loggedin-shortcodes.php
file you made for me and ended up with this, according to
the other instructions: Bold is what I changed, and still
experiencing the same issues. While logged in to one “account” and
click on another, can get it without logging in 🙁// [loggedin_message]This content is only shown to logged-in users.[/is_user_logged_in]
// Shows content to logged in usersadd_shortcode( ‘loggedin_message’, ‘ippy_loggedin_message_shortcode’ );
function ippy_loggedin_message_shortcode( $attr, $content = null ) {/* If it is a feed or the user is not logged in, return nothing. */
if ( is_feed() || !is_user_logged_in() || !is_blog_user() || is_null( $content ) )
return ”;/* Return the content. */
return do_shortcode( $content );
}// [loggedout_message]This content is only shown to logged-in users.[/is_user_logged_in]
// Shows content to logged out users 🙂add_shortcode( ‘loggedout_message’, ‘ippy_loggedout_message_shortcode’ );
function ippy_loggedout_message_shortcode( $attr, $content = null ) {/* If it is a feed or the user is not logged in, return nothing. */
if ( is_user_logged_in() || !is_blog_user() || is_null( $content ) )
return ”;/* Return the content. */
return do_shortcode( $content );
`Forum: Networking WordPress
In reply to: Login/Redirect issuesI hate to be such a Needy little newbee, lol, however…
I’ve looked at the page and looked in the wp-includes/user.php
to find any of the lines you referred to, and I can’t find where to
make these changes. I did try a couple of things, with no success.Forum: Networking WordPress
In reply to: Login/Redirect issuesGood Morning!
Did some more testing and sure enough, if I go to
spotsonline.com/test3 and login
then, while logged in, I go to
spotsonline.com/test4
it takes me straight to the test4 page without having to login.
I would need to logout of test3 first–I assume this is because with MU.
Seems this is the last piece to this login puzzle.Thank you so very much for your help on this issue.