PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Still having a couple of problems... (http://www.photopost.com/forum/photopost-pro-installation-upgrades/116779-still-having-couple-problems.html)

digidivakathy November 16th, 2005 07:09 AM

Still having a couple of problems...
 
Mostly everything is good, but I wanted to "uncheck" the vBenhanced box in the config file and tried to do it through the admin panel, but got that same ugly message I was getting before I changed the permissions...

Fatal error: Call to undefined function: is_wysiwyg_compatible() in /home2/digiscr/public_html/photopost/showphoto.php on line 922

For some reason, it doesn't seem to like apostrophe's or quotation marks...see this post:

http://www.digiscrapdivas.com/photop...2272&limit=all

These things are working fine in the forums, so it's just a problem over here.

Oh, and Chuck, if you see this, on the ppostfeeder thing, I was running 5.12 before so I didn't make that big of a change...but I know that isn't really your problem. Thing is, the guy who wrote that mod isn't using Photopost anymore so he doesn't support the mod anymore. I've had to take it off my page for now...boo hoo :( !

Thanks!

Chuck S November 16th, 2005 08:57 AM

Hello you need to have vb3enhanced on in 3.5 as that is how we get all the needed variables we need to display things like wysiwyg etc

I dont see anything wrong with the page your linking is there something I should be seeing here

digidivakathy November 16th, 2005 03:38 PM

Okay, but if I did choose to turn it off, should I be getting that ugly message?

Please look at the very last line of the photo details...it has replaced the quotation marks with " . Why is that? It also doesn't like apostrophes and replace them with slashes, as you can see in that same line.

digidivakathy November 20th, 2005 09:37 AM

Can I please get some help with this? Do I need to start a support ticket? The issue I am describing in the last paragraph of my last post is really getting to be a problem.

Chuck S November 20th, 2005 09:45 AM

The link you posted above has no such issues you describe however the quot thing has been answered in another thread here is what was posted

In showphoto.php

$desc = convert_markups( $desc );

change to this

$desc = convert_markups( un_htmlspecialchars( $desc ) );

digidivakathy November 20th, 2005 10:04 AM

Yes, Chuck, it does have the issues...as I said, in the last line of the photo description area. However, since I did what you suggested, all but the slash are gone. Here's another issue, though...

Please go to this post:

http://www.digiscrapdivas.com/photop...1844&nocache=1

and point at the Buy It Here link in the description. This is the code that is in there for the link:

url=http://www.digiscrapdivas.com/shop/index.php?main_page=product_info&products_id=93]Buy it here![/url]

I left off the opening bracket so it wouldn't show as a link here. Anyway, if you hover over that link on the page where the layout shows, you see this link displayed:

http://www.digidivadesigns.com/shop/...products_id=70

Where is the amp; coming from? It's breaking all my links.

Chuck S November 20th, 2005 10:21 AM

You need to make an edit as normally html is not allowed in posts which is a security feature so we dont account for it. HTML has never been supported in photopost and there is always an edit one way or another that had to be made in previous versions as well. There is an edit you can do to make the html display right

Code:

Content visible to verified customers only.
would be

Code:

Content visible to verified customers only.

digidivakathy November 20th, 2005 07:22 PM

Oh, thank you, thank you, thank you! All is well now, I think.

digidivakathy November 21st, 2005 07:29 AM

Well, almost...

I'm still having the slashes showing up in the descriptions and comments. Can you please tell me how to get rid of those?

Here's an example:

http://www.digiscrapdivas.com/photop...php?photo=2646

Thanks!

Chuck S November 21st, 2005 07:44 AM

Okay try this lines 411-412 of bulkupload make the lines this

they are this

$title = $deftitle;
$desc = $defdesc;

make them this

$title = stripslashes($deftitle);
$desc = stripslashes($defdesc);

digidivakathy November 21st, 2005 08:27 AM

So, that won't go back and fix the already uploaded ones, but it keeps it from happening on new uploads, right?

Chuck S November 21st, 2005 08:37 AM

you got it that is affirmative


All times are GMT -5. The time now is 06:44 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97