Txanny
Forum Replies Created
-
Forum: Themes and Templates
In reply to: A small (not) error in comments.phpThanks for reporting!
I included solution for this for the next release.
You can download the corrected files that are attached to this bug: http://alkivia.org/tracker/view.php?id=96Forum: Plugins
In reply to: [Plugin: SidePosts Widget] Full post not showing – 404 message receivedI think not. Spam?
Forum: Plugins
In reply to: [Plugin: User Community] User photo in sidebar?A sidebar login widget will be included in the plugin in a near version.
Forum: Plugins
In reply to: [Plugin: User Community] class.gallery_upload errorWell, the problems with the plugin are safe-mode. By now safe-mode is not supported by the upload class. This will be corrected really soon as the new class with this fixed is almost finished. (The solution on the video does not completely solve it).
But, the errors you show in the last post, are not related to the community plugin. You’re showing errors from the Register Plus plugin.
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?magcrossin,
You can change the images size in the plugin gallery settings.
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?You’re right, by now you cannot set other than local anonymous when using the gallery component. I will manage it for a next version, to allow defaults from Gravatar.
Please, start a new topic when not following the current. It is difficult to follow a mix of unrelated questions.
I like this last proposal. About adding detaliled definition lists, will be really useful to customize the list style by not using tables. Paerhaps I will implement it for a soon release.
Just I don’t see the utility to set a class by user_id (perhaps I would use IDs that can ve referenced on a link).
Any way, some sort of template system for the list, profile and gallery is planned for in some release, don’t cant say when, but it will be betwen 0.6 and 0.8. Probably an array or object with all data will be passed to the template to let you to set the fields you want with the style you prefer.
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?Shown image is the profile size. Checking it’s name you can see it, as thumbnail images ends with _thum. So, you have to check the image sizes you’ve set on the gallery settings or, if using WordPress defaults, on the WordPress media settings.
Also, check your server and WordPress settings, as sometimes the uploads folder shows as “uploads” and others shows as “upLoads” (Note the upercase L). In the last case it does not works because that folder with upercase L does not exists on disk.
Thanks for sharing leeharvey.
I will add another tip to this one 😉
To prevent your custom style to be overriden when updating the plugin, do the following:
1. Copy or move the style.css file outside the plugin folder. Place it anywhere you want except the plugin folder.
2. Crete a PHP file in the plugins folder and call it as you wany, for example: community-customs.php.
3. Place this text in the file (write in the URL to your style.css file where it says http://yoursite.com/path_to/style.css):
<?php /* Plugin Name: My Customs Plugin URI: http://example.org Description: My custom filters. Version: 1.0 Author: Your Name Author URI: http://example.org */ function replace_community_style( $url ) { return 'http://yoursite.com/path_to/style.css'; } add_filter('akucom_style_url', 'replace_community_style'); ?>4. Activate the plugin, and the style file will be replaced by your custom and don’t worry about updating 😉
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?If the folder was created outside the uploads folder, normally is a WordPress misconfiguration. Look at this: http://wordpress.org/support/topic/267058
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?This normally is caused by rights on your WordPress uploads folder. Yo have to set there permissions that allow the server user to write files and to create and execute folders.
After setting this rights, deactivate and reactivate the plugin to create the directories (Them are created at activation time). Look at the uploads folder, there have to be an ‘alkiva’ folder and inside it, a ‘users’ folder. (This is <uploads>/alkivia/users)
Another way is to manually create this folders with write permissions to the server user. (to both folders, alkivia and alkivia/users).
Just to test, you can set rights on this folders to 777. If it works, you can change them to fit your security needs, but remember that the server user always needs write access as it is who creates the files.
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?Have you uploaded the pictures to the user Gallery? The only avatar shown in the page comes from Gravatar…
The user gallery is in the User menu.
Forum: Plugins
In reply to: [Plugin: Download AutoStats] A Question about “Download Autostats”It should not. When I wrote this plugin, it was just for my own use with PodPress 😉 But it was long time ago and I did not check again with PodPress.
By the way, this plugin is being rewritten as it needs to finish some features and the current design does not allow me to do it as I want.
Forum: Plugins
In reply to: [Plugin: User Community] Pictue UploadsThis normally is caused by a WordPress misconfiguration. You can correct it in the miscellaneous settings for WordPress.
The plugin uses the URL and the upload folder set on that setting page.
If you cannot solve it there, tell me and I will ask you for some information, and provide one small script to upload to your site to check this settings.
Forum: Plugins
In reply to: User Community Plugin: profile and gallery directories?Just released Community 0.5.2. This release should solve your links problem.