I also want to test this plugin on localhost testing server.
My server is XAMPP v1.7.0 for Windows. I installed Joomla 1.5.15 in a subfolder in htdocs directory, named 1515.
Then I installed this plugin and enabled it.
I insered a new DIV in my article and assigned it a unique ID value.
Then I refreshed the frontend page, but both the article Title and the text in my new DIV disappeared.
I checked the source code of that page, it seems that pcDTR plugin can't give a correct
path to the CSS file and the background image.
Following are the source code:
| Code: |
<link rel="stylesheet" href="/1515\media/pcdtr/css/styles.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/1515\plugins/system/pcdtr/css.php" type="text/css" media="screen" />
|
| Code: |
#pcdtr1{background-image:url(/1515\plugins/system/pcdtr/png.php?id=1&rand=235);width:131px;height:24px;}
|
You can see that, pcDTR used a wrong backslash in the path.
Maybe this is the problem?
Or did I missed something?
Please give me some help. Thanks.