Curioso
Forum Replies Created
-
Forum: Plugins
In reply to: Popular posts AWstats pluging problem$awstats_dir should be set to the DirData directory as set in the awstats.conf file.
Forum: Plugins
In reply to: Picpress Markdown OR Textile = ProblemsForum: Plugins
In reply to: Awstats pluginUpdate: I added a list of popular pages.
Forum: Plugins
In reply to: Awstats pluginI have no experience with cPanel, so I do not know where awstats keeps its monthly overviews there. By default they are in /var/lib/awstats. From a Google search I get the impression that they are in /home/user/tmp/awstats in a cPanel installation.
Forum: Fixing WordPress
In reply to: permalinks and htaccess on IIS?Only the earliest version of PictPress required permalinks enabled, later versions also work without permalinks enabled.
Forum: Fixing WordPress
In reply to: Errors after 1.5 UpgradeYou have PictPress installed at /home/shaicogg/www/www/pictpress, while PictPress expects to be installed in the WordPress wp-content/plugins directory. Therefore it cannot find the wp-config.php file that it needs.
Forum: Fixing WordPress
In reply to: Errors after 1.5 UpgradeMy wp-settings.php has at line 115:
include_once(ABSPATH . 'wp-content/plugins/' . $plugin);
In your error message the ‘/’ after ‘plugins’ is missing…
Is your wp-settings.php file correct?If you want to keep using PictPress with WP 1.5, you will have to upgrade to the version at http://svn.wp-plugins.org/pictpress/trunk/pictpress.zip, which has been updated to work with the new version.
Forum: Fixing WordPress
In reply to: PictPress WeirdnessTrep, there seems to be something on your site that is inserting <del>..</del> tags in the comment strings that PictPress is using. Can it be another plugin that is interfering?
Bic, under wordpress/wp-admin/options.php you will find an alphabetical list of all options, PictPress opions all start with “pp_”.
I have to work to get a real options page…Bill, if you want comments per photo, you have to set pp_single_post to 0, PictPress will then generate one post per picture, including the possibility to comment per picture. If you still want all pictures in a single post, I cannot help you….
It is up to you how you want to organize your pictures.
You can start very simple by setting pp_image_dir to just %postname% and uploading your pictures to wp/wp-content/a-few-flowers in this case.
I have chosen %year%/%monthnum%/%postname% myself, because this scales better with the number of pictures I take (up to about 10 sets of pictures per month). In this case you would have to upload to wp/wp-content/2004/09/a-few-flowers.
If you produce much less pictures per month you could pick %year%/%postname% and if you produce much more pictures per month you could pick %year%/%monthnum%/%day%/%postname%.
In principle you can change pp_image_dir later, old posts should keep working, but if you update an old post, you have to move the pictures to the new pp_image_dir location.Currently the pictures are sorted by filename, but this is easy to change. I will add an option pp_sort_order that can take values like filename, date and date-reverse.
Any other wishes?I have released a new version of PictPress. A lot of the things that were causing problems have been made optional.
Forum: Themes and Templates
In reply to: Need Help with PictPress StyleSheetI know too little of CSS to fix the IE problem.
I am using the techniques described in A List Apart, http://www.alistapart.com/articles/cssdropshadows/ and http://www.alistapart.com/articles/practicalcss/
to shadow and float the thumbnails.
Maybe somebody with more experience in CSS and cross-browser compatibility can shed light on the problem?Forum: Plugins
In reply to: PictPress: Error Messages When PostingIs this a problem with the file as I distributed it?
Forum: Fixing WordPress
In reply to: Calendar Link?A simple fix would be to change the following line in the function get_day_link in wp-includes/template-functions-links.php from
if ('' != get_settings('permalink_structure')) {
to
if ('' != get_settings('permalink_structure') && strpos(get_settings('permalink_structure'), '%day%') !== false) {