×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1
  • 2

TOPIC: Does not work on adsmamanger

Does not work on adsmamanger 12 years 2 months ago #15058

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I bought the compojoomcomment because I wanted comments on our adsmanager section, but I am not able to make this work.

Does anyone have a solution?

Re: Does not work on adsmamanger 12 years 2 months ago #15059

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
So, you followed the documentation and it doesn't work? Then please provide me with backend and ftp access to your site and I'll fix it for you. (use our ticket system and create a private ticket for this issue)

Daniel

Re: Does not work on adsmamanger 12 years 2 months ago #15060

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
Since the adsmanager was updated, this is now invalid compojoom.com/support/documentation/compojoom_comment/ch03s06

I cannot find the adsmanager.html.php while trying to follow your guide

Thank you. I will request a ticket if the next reply does solve the issue

Re: Does not work on adsmamanger 12 years 2 months ago #15064

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Yes, please request a ticket! Provide me with backend access + ftp and I'll make it work and then update the documentation.

Sorry about that!
Daniel

Re: Does not work on adsmamanger 12 years 2 months ago #15070

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I would love to use the support tickets but all I was after clicking on your support ticket menu is

"CompojoomComment

Got any problems with CompojoomComment? We are here to help!"

Can you install and tests adsmanager on your end? As much as it is a nice gesture, I find it bizarre that anyone would ask for an FTP access.

Re: Does not work on adsmamanger 12 years 2 months ago #15072

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
CompojoomComment is the right category! You are using this extension, right?

But good, I'll download adsmanager and see what needs to be changed.

I never really understood what is the problem of providing ftp details to a support team. At the end you bought the thing from me and I want to help you, not destroy your site! Destroying sites is a bad, bad marketing... :)

Cheers,
Daniel

Re: Does not work on adsmamanger 12 years 2 months ago #15073

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
Ok! I'm an idiot! I just found out that I've written a plugin for adsmanager 2.6 in August 2011! The plugin is now uploaded in the download category:
compojoom.com/downloads/compojoomcomment/compojoomcomment-4-2-1

Scroll down to the page, download it, install it in your site, enable it. (don't forget to create a setting for admanager in compojoomComment->settings) and you should be ready to go!

Let me know if it works for you too and i'm going to update the documentation!
Thank you!
Daniel
The following user(s) said Thank You: Thomassie Mangiok

Re: Does not work on adsmamanger 12 years 2 months ago #15074

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
Wow thank you so much, your responses are fast. No regret with the purchase :)

The thing with FTP is that our site was once hacked and I had to restart everything.

Have a nice day

Re: Does not work on adsmamanger 12 years 2 months ago #15075

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
So, is everything working now?

P.S. Don't forget to leave a review in the joomla extension directory:
extensions.joomla.org/extensions/contact...icles-comments/12259

Re: Does not work on adsmamanger 12 years 2 months ago #15092

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I now have a back screen but I believe this is the fault of adsmanager, I decided to word with Joomla 1.5. I think it is for the better.

I sure will leave a comment as soon as I have it working on my new site.

Thank you again

Re: Does not work on adsmamanger 12 years 2 months ago #15093

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I now get Fatal error: Class 'CommentPluginAdsmanager' not found in /var/www/vhosts/website.com/httpdocs/plugins/adsmanagercontent/comment/comment.php on line 34

Re: Does not work on adsmamanger 12 years 2 months ago #15094

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
I see.... Sorry about that. I'm working on CComment5 and I was changing the structure of the files so that we can automatically call them and this way make the writing of a plugin for other system much easier.

go to administrator/com_comment/plugin/com_adsmanager/josc_com_adsmanagere.php

and change the whole content of the file to this:
<?php
defined('_JEXEC') or die('Restricted access');
 
require_once(JPATH_SITE . DS . 'components' . DS . 'com_comment' . DS . 'joscomment' . DS . 'utils.php');
 
class CommentPluginAdsmanager {
 
	public function output($row, $params)
	{
		$comObject = JOSC_utils::ComPluginObject('com_adsmanager', $row, 0, $row->category);
		return JOSC_utils::execJoomlaCommentPlugin($comObject, $row, $row, true);
	}
}

It should work after that. If you get another error after that I'm still willing to fix everything myself. I hate to waste customer's time...

Again sorry for the troubles.
Daniel
The following user(s) said Thank You: Thomassie Mangiok

Re: Does not work on adsmamanger 12 years 2 months ago #15098

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
How can I give you the ftp info?

The error is gone but I am not able to comment
www.qanuuk.com/index.php/buy/70-furnitur...-x-38q-picture-frame

Re: Does not work on adsmamanger 12 years 2 months ago #15099

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
You can use the ticket system -> just create a private ticket and the only one who is going to see your ticket is me.

Actually I think I know why you can't see the comment form:

go to administrator/component/com_comment/plugin/com_adsmanager/josc_com_adsmanager.class.php

and change the check visible function:
/*
     * Condition to active or not the display of the post and input form
     * If the return is false, show readon will be executed.
	*/
	public function checkVisual($contentId=0) {
		$option = JRequest::getCMD('option');
		$view = JRequest::getVar('view');
		$id = JRequest::getInt('id');
 
		return ($option == 'com_adsmanager' && $view == 'details' && $id);
	}

and the link to content to this one:
/*
     * construct the link to the content item  
     * (and also direct to the comment if commentId set)
	*/
	public function linkToContent($contentId, $commentId='') {
 
		$application =& JFactory::getApplication();
 
		if ($commentId) {
			$commentId = '#josc' . $commentId;
		}
 
		$catId = $this->getCatId($contentId);
 
		$itemId = '&Itemid='.JOSC_utils::getItemid('com_adsmanager');
 
		if(!$application->isAdmin()) {
			$url = 'index.php?option=com_adsmanager&view=details&id=' . $contentId . '&catid=' . $catId . $itemId;
		} else {
			$url = JURI::root() . 'index.php?option=com_adsmanager&view=details&id=' . '&catid=' . $catId . $contentId . $itemId;
		}
 
		if(JRequest::getVar('josctask') == 'rss') {
			$url = JURI::root() . $url;
		}
		$url = JRoute::_($url) . $commentId;
 
				/* for notification email links and not root directory - ! */
		if (substr(ltrim($url), 0, 7) != 'http://') {
			$uri = & JURI::getInstance();
			$base = $uri->toString(array('scheme', 'host', 'port'));
			$url = $base . $url;
		}
 
		return $url;
	}

Let me know if it is working after that. Don't hesitate to create that ticket if it is not working!
Daniel

Re: Does not work on adsmamanger 12 years 2 months ago #15100

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
ah and btw - this polar bear picture is AWESOME!!!
The following user(s) said Thank You: Thomassie Mangiok

Re: Does not work on adsmamanger 12 years 2 months ago #15101

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I'll try your ticketing system.

BTW, while on the topic of a polar bear. One of a friend's friend was almost caught by a polar bear last weekend as they were trying to kill it because it was in their community.

It was shot twice but got up as soon the the guy approached it, they had 4 going in their community last month.

We as Inuit have respect to animals and the nature, but we first have to protect our people. They are not wasted either, we eat them and use their fur to keep up warm in the tundra.

Re: Does not work on adsmamanger 12 years 2 months ago #15102

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
I am not able to use your ticketing system. When I press "Support Tickets" from your Support menu, I am only greeted by
"CompojoomComment

Got any problems with CompojoomComment? We are here to help!"

There are no buttons.

Re: Does not work on adsmamanger 12 years 2 months ago #15103

  • Thomassie Mangiok
  • Thomassie Mangiok's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 19
  • Thank you received: 0
Wow thanks. I only replaced codes from the top one because I received "Fatal error: Call to undefined method JOSC_com_adsmanager::getCatId() in /var/www/vhosts/qanuuk.com/httpdocs/administrator/components/com_comment/plugin/com_adsmanager/josc_com_adsmanager.class.php on line 120"

Re: Does not work on adsmamanger 12 years 2 months ago #15104

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
and you can't click on "CompojoomComment"???? You should be able to click on that one. And the next step will be to click the new button.

Re: Does not work on adsmamanger 12 years 2 months ago #15105

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
I highlighted what you need to click in the attached photo.
Attachments:
  • Page:
  • 1
  • 2
Time to create page: 0.163 seconds