chisao101
Forum Replies Created
-
Forum: Reviews
In reply to: [Simple Slideshow Manager] Too much adwareI’m getting the same problem, but not with this plugin. Has a resolution been found?
Forum: Fixing WordPress
In reply to: My qucikinstall WP keep asking about cookie enable??Same here…
Forum: Plugins
In reply to: [Namaste! LMS] Storyline CoursesThe plugin just places an Articulate button next to the “Add Media” button and the “Add Contact Form” button on the menu when you go to add a new page or post in WordPress. When you click the Articulate button, it asks for the zip file of a published Storyline (or Articulate Studio) project. There are a few options you can set for how the project is presented, but it’s a pretty simple procedure.
Here is a link to the plugin.
I will try to get a sample course put up on the site I’m building this evening so you can see the output of a Storyline project.
Forum: Plugins
In reply to: [Namaste! LMS] Storyline CoursesStoryline itself is a local client side program for development. The output of Storyline is an e-learning course that is designed to be delivered on the web, or in an ISO that launches from a disk. The web is the obvious choice lately.
I have found a good plugin that works with Storyline and allows me to placve the courses into pages or posts in WordPress, but I’m trying to find a way to track users’ progress through the courses using an LMS. So far, I have not found a way to do that.Forum: Plugins
In reply to: [Namaste! LMS] Storyline CoursesArticulate Storyline is software to build E-Learning courses.
It is a pretty common tool for E-Learning course developers to build interactivity into their courses.
Check it out here.Forum: Plugins
In reply to: [Namaste! LMS] Storyline CoursesI have the same question, but I will explain a bit further.
I am setting up a website that will contain lessons. I want to be able to build my courses inside Articulate Storyline and have the course progress and grades tracked for each student. There will be quizzes and final exams, and I need each student to be able to log in, continue where they left off, and see their grades and progression. At the end, I want to provide a certificate of completion.
Is that possible with Storyline and Namaste-LMS?
I fixed it, but I have no idea how. The permissions didn’t do it, so I doubt that was the problem. I went in and messed with some settings and something worked.
Thanks for your help, though!Sorry it keeps taking me so long to get back, but I’m extremely busy lately.
I changed the permissions to 755 (in the cpanel file manager, i right clicked the folders and chose change permissions) for the folders and sub-folders. No dice. I’m not sure what else to try.
Maybe uninstall the plugin and reinstall?
By the way, I did not migrate this site from godaddy. This is a new site, but I am using hostgator for the first time. I just wasn’t sure if there was anything different about the two hosts that would make it necessary to change the settings.
Sorry it took so long to get back to you, and thank you for your help.
The permissions are set to 644 for all the images in the gallery. The gallery folder has a 750 setting. The gallery sub-folder for the name of the particular gallery (in this case, it is called signs) is also 750. I’m not sure if these are correct. I don’t want to submit a bug report until I know I have the correct settings.
I have not checked the folder permissions. I recently switched from godaddy hosting over to hostgator. Never had to do that on godaddy.
Thanks, I’ll give that a try.Forum: Networking WordPress
In reply to: Mutli problems with multisiteI made a new site and everything is working great now. I think you’re right about getting the wrong .htaccess because that was the only thing that is different.
Thanks for all your help. I’m going to mark this topic as resolved.
Forum: Networking WordPress
In reply to: Mutli problems with multisiteOkay, I turned it all back on. I did not create any new sites.
The permalinks are working correctly.
I noticed something as I was setting the new code in the .htaccess. The code generated by WP was different the first time. There are more lines in the code from this time. The previous code is posted above. This is the new code:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]# END WordPress
Could the problem have been caused by that?
Forum: Networking WordPress
In reply to: Mutli problems with multisiteI commented out the lines added in the wp_config file
contents of .htaccess are:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
</IfModule># END WordPress
Dropped these tables:
wp_blogs
wp_blog_versions
wp_registration_log
wp_signups
wp_site
wp_sitemetaAll Permalinks are working, all configurations.
Forum: Networking WordPress
In reply to: Mutli problems with multisitejust change the allow multisite to false, or go ahead and delete the stuff out of mysql too?