Kevin, I think I fixed the nested divs, and the vspacing validation
issues, but I can't seem to reproduce the attachment file directory
problem. It seems to be a cleanUrl issue.

If you send me offlist a copy of your index.php file / .htaccess I
might be able to take a look. When did it break? Was it 3.4.11? Note
this detail in the changelog for that release:

* Added a $farmURL, $imgURL, and $pubURL variable to the system, and
now use these in the corresponding snippets and when displaying farm
images. I'm hoping this will solve some of our cleanURL problems.

If you have an $imgPath/$farmPath in your index file, it may need to
be changed to $imgURL/$farmURL... (And change from relative path to
absolute URL). Not sure, but I'd be happy to take a look...

Cheers,
Dan


On Sun, Apr 11, 2010 at 12:52 PM, Kevin <[email protected]> wrote:
>
> I have two major issues that prevent upgrading all sites to 3.4.11.
>
> NEW ATTACHMENT LINKS POINT TO WRONG DIRECTORY
>
> When you add new attachments, the directory pointed to is not the right
> directory and they don't show up as being missing files so that you can
> click on the ? to upload the content.
>
> Example... added the following new attachments to a page:
>
> [^newimage.png^]
> [^newdoc.txt^]
> [^newpdf.pdf^]
>
> HTML output is:
>
> <img src='SITENAME/boltwire/farm/img/newimage.png' alt=''  />
>
> <p><a href='SITENAME/boltwire/farm/img/newdoc.txt' >newdoc.txt</a><br />
>
> <a href='SITENAME/boltwire/farm/img/newpdf.pdf' >newpdf.pdf</a></p>
>
> Note they are ALL pointed at SITENAME/boltwire/farm/img ... when they should
> all
> be pointed instead at SITENAME/field/files ...
>
> Now, if you upload the file (you could use reload=true to make the ^ link
> show up), they then get saved to the right path and when the page is
> displayed,  they show up in the right path then, but until you add the
> content to the site, they continue to point to boltwire/farm/img which is
> wrong.
>
> I'm sure this has something to do with CleanURS's, but it used to work
> properly and I use CleanURL's on every site by default for link
> accessibility.
>
>
> NESTED DIV'S DON'T WORK.
>
> <div style="width: 435px; margin-left: auto; margin-right: auto;">
> <div style="position:relative; width:435px; height:340px; overflow:hidden;">
> EMBED OBJECT REMOVED</div></div>
>
> HTML Output:
>
> <div  style='width: 435px; margin-left: auto; margin-right: auto;' >
> &lt;div style="position:relative; width:435px; height:340px;
> overflow:hidden;"&gt;
> EMBED OBJECT REMOVED</div>
>
> &lt;/div&gt; </div>
>
> I have a few sites that use very complicated div's on their main pages that
> simply don't work as a result of this.  They do work just fine on 3.4.9
>
>
> MINOR ISSUE Validation broken with images again.
>
> The code which validated in 3.4.9 no longer does now.
>
> [^tnet-cactuspic.png class=right title='Picture of Cactus'^]
>
> ! Welcome to TNET Services...
> TNET Services, Inc. is located in the City of Mesa...
>
> HTML output...
>
> <img src='SITENAME/field/files/tnet-cactuspic.png' class='right'
> title='Picture of Cactus' alt='' />
>
> <p><br />
> <h1>Welcome to TNET Services...</h1>
> TNET Services, Inc. is located in the City of Mesa,...</p>
>
> Removing the line after the image doesn't really change anything, just
> removes the <br />... The starting <p> is before the <h1> header which is
> the validation error.
>
> [^tnet-cactuspic.png class=right title='Picture of Cactus'^]
> ! Welcome to TNET Services...
> TNET Services, Inc. is located in the City of Mesa,...
>
> HTML Output...
>
> <img src='SITENAME/field/files/tnet-cactuspic.png' class='right'
> title='Picture of Cactus' alt='' />
>
> <p><h1>Welcome to TNET Services...</h1>
> TNET Services, Inc. is located in the City of Mesa,...</p>
>
> And if I space them out like
>
> [^tnet-cactuspic.png class=right title='Picture of Cactus'^]
>
> ! Welcome to TNET Services...
>
> TNET Services, Inc. is located in the City of Mesa,...
>
> HTML Output...
>
> <img src='SITENAME/field/files/tnet-cactuspic.png' class='right'
> title='Picture of Cactus' alt=''  />
>
> <p><br />
> <h1>Welcome to TNET Services...</h1></p>
>
> <p>TNET Services, Inc. is located in the City of Mesa,
>
> I get <p>'s around the <h1> header again with a <br />
>
> Lastly, If I drop the image and just do what I was doing in 3.4.9:
>
> ! Welcome to TNET Services...
> TNET Services, Inc. is located in the City of Mesa,...
>
> HTML Output
>
> <p><h1>Welcome to TNET Services...</h1>
> TNET Services, Inc. is located in the City of Mesa,...</p>
>
> Which how I reformatted all the pages when I converted to 3.4.9  To get this
> right, I need to go back to how I formatted them before 3.4.9 which is:
>
> ! Welcome to TNET Services...
>
> TNET Services, Inc. is located in the City of Mesa,...
>
> HTML Output
>
> <h1>Welcome to TNET Services...</h1>
>
> <p>TNET Services, Inc. is located in the City of Mesa,...</p>
>
> Which is more natural HTML and how I have been formatting using boltwire for
> some time before the big upgrade to 3.4.9
>
> Hope that is not confusing..
>
> Noticed Boltwire site has similar issues with it's side with no images.
>
> <div id="side"><p><h1><a href="http://boltwire.com/index.php?p=main";
>>INFORMATION</a></h1>
> <ul><li><a href="http://boltwire.com/index.php?p=main.story"; >Our
> Story</a></li><li><a href="http://boltwire.com/index.php?p=main.features";
>>Features</a></li><li><a href="http://boltwire.com/index.php?p=main.support";
>>Support</a></li><li><a href="http://boltwire.com/index.php?p=downloads";
>>Downloads</a></li><li><a
> href="http://boltwire.com/index.php?p=downloads.roadmap";
>>Roadmap</a></li><li><a href="http://boltwire.com/index.php?p=main.license";
>>License</a></li></ul></p>
>
> Note the <p> before the <h1> which doesn't get closed until after the
> closing of the </ul>..
>
> --
> You received this message because you are subscribed to the Google Groups
> "BoltWire" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/boltwire?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en.

Reply via email to