macguru2000
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] CataBlog Support ForumI’m glad to hear that the XML export and folder unlocking is working for you. I figure that most users don’t have knowledge of linux systems and file permissions so the unlock feature was a natural way to go for FTP users.
Now for showing buy now buttons only for items with a price…I have realized that this isn’t possible with the current release…sorry….so I will need to release an update to fix that bug. I will be reporting it in the bugs section and hopefully a release will be out soon. The way I am thinking of solving this issue is to have two text boxes in the view section, one for the layout and one for the buy now button. That way I can conditionally show the buy now code only when the price is above zero. Also, people will still be able to write their own buy now button code in the view panel. what do you think?
Forum: Plugins
In reply to: [CataBlog] CataBlog Support Forumkristel_ttm,
Today I released a new version, 0.9.2. With this version you should be able to unlock your catablog directory for FTP uploads. Just make sure not to replace any of the folders, just the content of the
originalsfolders. If you can backup the folders to your local machine you should be set. Good luck.Forum: Plugins
In reply to: [CataBlog] CataBlog Bug ReportsThere is a bug in CataBlog 0.9.1 that might cause page failures. Please upgrade immediately to version 0.9.2. Version 0.9.1 should be considered a dead version and never used.
Forum: Plugins
In reply to: [CataBlog] CataBlog Support ForumBrownie,
I’m sorry to hear that your table is empty, I think that reset would be the last option now. I’m not sure what happened, I really do hate when something like this happens. Perhaps you can put this in the bug reports forum with a detailed report. Please include information about your browser, server, WordPress, plugin versions before and after the upgrade and anything else you can think of.
Also thanks for helping me fix the rendering bug in the xml export. I appreciate your patience with CataBlog, I really do want to get it to a stable place at this point and not add to many new features.
Forum: Plugins
In reply to: [CataBlog] CataBlog Bug ReportsA bug in the admin-export template file was found, some configurations of PHP will read the first line as a PHP command and not an xml file declaration. To remedy this I will wrap the line of xml code into a PHP echo command. This will be released in 0.9.1
Forum: Plugins
In reply to: [CataBlog] CataBlog Support Forumbrownie, can you replace the first line of that file,
catablog/templates/admin-export.phpusing the plugin editor.replace the line that looks like this:
<?xml version="1.0" encoding="UTF-8" ?>with this line:
<?php echo "<?xml version="1.0" encoding="UTF-8" ?>" ?>my thoughts are that your server is setup to process php tags <?php ?> without needing the php after the first question mark, this is an older and less desirable configuration in my humble opinion, but CataBlog should work in both if possible.
Forum: Plugins
In reply to: [CataBlog] CataBlog Support ForumThere is an informative article about file permissions and changing them here.
Forum: Plugins
In reply to: [CataBlog] CataBlog Support Forumbrownie, don’t delete anything or do anything rash. try an export and see if the file contains anything, if so, please post it here so I may read it. also, did you make an export before you upgraded, if so try importing it. If all else fails try the reset button in the about page. then a fresh import from a properly formatted xml file (look above)
Forum: Plugins
In reply to: [CataBlog] CataBlog Support ForumA few options that I thought of about this one:
– Is there anyway for you to login to your ftp as the apache user or get super user access, even just for changing file ownership and permission? Do you know what SSH is and can you connect to your web server that way?
– When you made your own catablog folder did you make sure to set the privileges to read/write/execute for user/group/public, also known as 777? Also any folders or other content you upload inside the catablog directory should have permission level 777 as well. If that works then you can try different more secure permission levels.
– Some kind of PHP script or CataBlog feature to “lock/unlock” the catablog directory and it’s content for temporary editing.
Forum: Plugins
In reply to: [CataBlog] CataBlog Support Forumkristel_ttm,
keep in mind you could also do a mysql dump of the wp_catablog_items table. That should be sufficient for replicating your table data exactly as is. You should then make sure to do these two changes manually, change the price field type to float and change the name of the order field to ordinal. Don’t forget about the images as well and backup your catablog folder in the
wp-content/uploads/directory. A good article about file permissions can be read here, it might help you figure a way to upload files that you and php both have permission too.I don’t know why you are getting an empty file, the export feature works on all the setups I tried it with. Make sure to open the file and confirm it is empty in a text editor like textmate. You could also easily make the xml file generated, just reference the code below and make a catablog_item for each database row. Make sure you have a value for id, ordinal and image at least, also be aware of the CDATA tags which are necessary for the import process. Good luck hope I helped and I hope that 0.9 will work better in regards to exporting.
<?xml version="1.0" encoding="UTF-8" ?> <catablog_items date="2010-10-20" time="14:48:31"> <item> <id>4</id> <ordinal>0</ordinal> <image><![CDATA[water-lillies-1287448511.jpg]]></image> <title><![CDATA[water lillies]]></title> <link><![CDATA[/somewhere/far/away]]></link> <description><![CDATA[this is a standard windows image that is installed in every version. really i should be using a less generic image, but i am not.]]></description> <tags><![CDATA[flowers nature default photo]]></tags> <price><![CDATA[65]]></price> <product_code><![CDATA[SKU #345665 UTA]]></product_code> </item> </catablog_items>Forum: Plugins
In reply to: [CataBlog] CataBlog Support Forumcan you try hitting the reset button in the about page of CataBlog and then uploading an image using the standard “Add New” form in the plugin. If that still doesn’t work then you are gonna want to remove all CataBlog directories including the ones in
wp-content/uploads. Let me know if you are successful and sorry for all this trouble.Forum: Plugins
In reply to: [Plugin: CataBlog] BugsI want to start to wind this thread down. It has served us well, but at this point it has gotten very long and unorganized. I have set up 3 new topics for CataBlog for support, bugs and features requests. Also please feel free to start your own topics and rate Catablog at the WordPress.org page
Forum: Plugins
In reply to: [Plugin: CataBlog] Bugskristel_ttm
It does sound like your data is in the right table, if I was you I would be curious what the image source is of the row thumbnails on the page you put [catablog] on. If you right click the broken image icon you should be able to choose “Open Image” in a new window and see the url, perhaps their is a problem with it. look for missing extension, too many slashes, bad domain, etc. Try and modify the url so you can see the original images you uploaded with FTP.
Yes, there is a much better way to connect if your server is a *nix (linux, unix, osx) computer. SSH. SSH ideally gives you access to the command line, if you are not familiar or comfortable with using a *nix prompt I would recommend a book such as the Linux Pocket Guide. A command know as chmod and chown let you change file permission and ownership, something you will have to look into more on your own.
Perhaps your web service’s control panel has a better way for you to manage files and folders with permissions. You could also get in touch with them and see what they recommend for managing permissions on files in your public html directory.
Good luck.
Forum: Plugins
In reply to: [Plugin: CataBlog] Bugsbenfriedman,
My guess is it is a plugin rendering issue or a z-index issue. I read here that you can set your wmode to opaque for flash elements to respect the z-index of other HTML elements and overlays. This is a bug specific to windows and how flash uses video hardware for graphic acceleration. I would also probably bump up the z-index of the built in CSS classes for
#catablog-curtainand#catablog-lightboxwhich by default are set to 3000.Forum: Plugins
In reply to: [Plugin: CataBlog] Bugskristel_ttm,
The export feature works for me. I have a few questions now:
– do you see items in your list view? (click the main icon in admin panel)
– are you sure you are editing the right table in phpMyAdmin?
– i would recommend creating an xml file with below format out of your csv values and importing it through the software<?xml version="1.0" encoding="UTF-8" ?> <catablog_items date="2010-10-12" time="16:20:49"> <item> <id>1</id> <order>0</order> <image><![CDATA[theo-pup-1286494040.jpg]]></image> <title><![CDATA[Theo Pup]]></title> <link><![CDATA[http://www.theo-puppy.com]]></link> <description><![CDATA[this is a description]]></description> <tags><![CDATA[]]></tags> <price><![CDATA[10]]></price> <product_code><![CDATA[SKU#45667]]></product_code> </item> <item> <id>2</id> <order>0</order> <image><![CDATA[photo-1286494070.jpg]]></image> <title><![CDATA[A Photo]></title> <link><![CDATA[]]>http://www.somelink.org</link> <description><![CDATA[]]></description> <tags><![CDATA[]]></tags> <price><![CDATA[5]]></price> <product_code><![CDATA[SKU#99876]]></product_code> </item> </catablog_items>Hope that helps!