Lari
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error message with SWF UploadThank you for your reply, Otto.
I’m a bit unsure about timeouts, it only takes a couple of seconds for the error to appear. Also, the images I’m using are small. I did set max_input_time and max_execution_time to 0, -1 and 999. I checked phpinfo, the values did change but nothing made it work. Is there some other timeout settings or other things I could try?
Forum: Fixing WordPress
In reply to: Rounded Corners for Text boxTry
<script>jQuery(document).ready( function($){ $('.rounded').corners(); });</script>
instead.
Forum: Fixing WordPress
In reply to: how to link to blog in non-root folderI’m not 100% sure but you could make another page and then choose it as the “posts page” in settings. This new page would then be the blog home.
Forum: Fixing WordPress
In reply to: Changing Database infoIt’s wp-config.php in the WordPress folder.
Forum: Fixing WordPress
In reply to: CategoriesWrite a new post and add it to that category. Does the category become visible?
Forum: Fixing WordPress
In reply to: Adding content to home pageRevolution Options has been your theme’s own page, most likely. It is not part of the default WordPress install. You can add content in the Widgets page, provided your theme shows widgets on the home page.
Worked at least with the test user, thanks!
In Activecollab there’s one table with the roles that have an id and another table with users. In the users table there’s a field role_id, which tells what role the user has. So the role ids come from the roles table. 1 to 7, currently.
If I could tell your plugin the name of the field and a value that is required to add the user to WordPress, that would be great.
For me, it would suffice to set permissions based on the permissions of the external table. In my external users table there is a field that contains a role id. If I could restrict access to WordPress to ids above some value or to a specific value, that would be sweet.
Right now I can’t use the plugin because I don’t want to give access to all the users in the external database.
I think this would be simpler than using a third table.
Why do you need the class? Can’t you use #list ul ul … in your css?
Forum: Fixing WordPress
In reply to: Accessing post slug data in the loop<?php echo($post->post_name) ?>
Forum: Fixing WordPress
In reply to: How to list the current page’s children?Try this plugin that was mentioned earlier.
https://www.webspaceworks.com/resources/cat/wp-plugins/30/
Then use the ancestor class in CSS to highlight your About page.