Forum Activity for @paul

paul
@paul
07/12/15 02:35:09PM
4,335 posts

test site migrating 3.0 ning site


Ning To Jamroom

Note that if you do reset the site your skin and templates remain intact.
paul
@paul
07/12/15 02:33:43PM
4,335 posts

test site migrating 3.0 ning site


Ning To Jamroom

The Developer module has a tool to reset the site. It'll delete EVERYTHING except master admin.
But if users just sign up you'll still need emails working. You need to get Mailgun set up and working.
paul
@paul
07/12/15 10:26:53AM
4,335 posts

test site migrating 3.0 ning site


Ning To Jamroom

It could take a few hours to send them all - What do you have the send rate set to (emails/minute)?
Also, make sure the Active Email System set to? Its not still set to the debug log is it?
paul
@paul
07/12/15 08:40:56AM
4,335 posts

Top Ad banner


Installation and Configuration

Where you editing via the ACP template/style editors? If so, if you can get to the database via your cPanel maybe you can find and remove the entry there.
But am a bit concerned about your site as the login and signup pages are broke as well - http://liquaminemusic.com/user/login - http://liquaminemusic.com/user/signup
Have you done anything to them or is this part of the same problem?
paul
@paul
07/12/15 08:22:15AM
4,335 posts

test site migrating 3.0 ning site


Ning To Jamroom

It has found none to send and has finished.
Maybe you had the Kickbox validation set but have not actually validated any of them yet?
paul
@paul
07/12/15 08:19:06AM
4,335 posts

Domain name setup?


Using Jamroom

Yep - It looks to be working ok from this end as well.
paul
@paul
07/09/15 06:50:07AM
4,335 posts

Missing groups on Import


Ning To Jamroom

Can you look at the ning-groups-local.json file using the NingImport tool and check the image URL of the groups that are missing the image and check that it is actually there in the uploaded archive /groups folder?
paul
@paul
07/09/15 04:50:15AM
4,335 posts

Missing groups on Import


Ning To Jamroom

If the NingImport module decides not to import a group for any reason it shows an error message in the modal window. It also puts the error message into the debug log so check there.
The most common reason for not importing an item is that there is no owner profile so check that the missing groups' profiles are imported and were not excluded as 'suspended' or 'left' members.
Were you using the direct media import option? It might be that the missing group images were not available directly from the Ning servers?
paul
@paul
07/09/15 03:56:28AM
4,335 posts

Displaying a users last logged in time


Design and Skin Customization

A simpler, and less resource hungry method might be this -

{$_this_user = jrCore_db_get_item_by_key('jrUser', '_profile_id', $_profile_id)}
<p>{$_this_user.user_last_login|jrCore_format_time}</p>
paul
@paul
07/09/15 02:43:14AM
4,335 posts

Displaying a users last logged in time


Design and Skin Customization

search1="user_id = $_profile_id" is wrong.
'user_id' should be '_user_id' but that aside you are searching for when a user ID == a profile ID!!
Try search1="_profile_id = $_profile_id"
  281