×

Notice

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

TOPIC: No work in Seyret or Puarcade

No work in Seyret or Puarcade 15 years 10 months ago #6079

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
I have searched the forums (both here and on other sites) trying to get !joomlacomment to work in Seyret and Puarcade.

I am NOT a PHP coder so what may seem obvious to most may as well be in Chinese to me. Has anyone anywhere put out a step by step instruction guide for getting !joomlacomment to work in these two components?

I read the post at www.pragmaticutopia.com/component/kunena...id=22&id=12145#13852 however it was not specific enough for me to do the hacking (ie. find "this" replace with "this").

Thanks,

Russ

No work in Seyret or Puarcade 15 years 10 months ago #6092

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
This user had the same problem as you and he fixed it. Did you make the same steps?

compojoom.com/forum/9-plugins/2468-jooml...mit=10&start=20#6091

Read the thread in pramaticutopia again - if you are still unable to make the changes I will provide you with a better explanation.

No work in Seyret or Puarcade 15 years 10 months ago #6148

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
No, I have set everything on the back end. It's all a no show. I opened up puarcade.html.php and have no idea where to paste the code you referenced on the other forum. And how about Seyret? Is this a similar problem?

Thanks,

Russ

No work in Seyret or Puarcade 15 years 10 months ago #6177

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
find the line 894:
I think it was saying puarcade_html::writeJoComment();

change it to puarcade_html::writeJoComment($game);

later in that file on line 982 you have
function writeJComments(){
	global $mosConfig_absolute_path;
      $pathtoJcomments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php';
    	require_once($pathtoJcomments);
   		$obj_id = $game->id;
    	$obj_title = $game->gamename;
    	echo JComments::showComments($obj_id, 'com_puarcade', $obj_title);
    }

change it to this
  	function writeJComments(&$game){
  		global $mosConfig_absolute_path;
      $pathtoJcomments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php';
    	require_once($pathtoJcomments);
   		$obj_id = $game->id;
    	$obj_title = $game->gamename;
    	echo JComments::showComments($obj_id, 'com_puarcade', $obj_title);
    }

about seyret I don't know - I have rewritten the plugin for seyret with beta2 and it was working for me.

edit: yes you have to edit some files from seyret too. If you want to know which one exactly open administrator/components/com_comment/plugin/seyret - the file without the class in it and at the top you should see a comment telling you what to place and where.

No work in Seyret or Puarcade 15 years 10 months ago #6187

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
This is supposed to be in components/com_puarcade/puarcade.html.php ? Cuz I got nothing even close to that in my puarcade.html.php . And the file you reffed for Seyret had no instructions.

Sux cuz this thing works so well in my other components.

I give up.

No work in Seyret or Puarcade 15 years 10 months ago #6188

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
which version of puarcade do you use man???

No work in Seyret or Puarcade 15 years 10 months ago #6189

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
and I checked what you have to do for seyret:
enable joomlacomment from seyrets backend

No work in Seyret or Puarcade 15 years 10 months ago #6191

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Daniel Dimitrov wrote:

which version of puarcade do you use man???


2.3.1b

No work in Seyret or Puarcade 15 years 10 months ago #6192

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Daniel Dimitrov wrote:

and I checked what you have to do for seyret:
enable joomlacomment from seyrets backend


I may be missing something but I have read and reread these admin files til I am blue in the face.

No work in Seyret or Puarcade 15 years 10 months ago #6193

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
!JoomlaComment

No work in Seyret or Puarcade 15 years 10 months ago #6196

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
hm, what?

and if you use 2.3.1b then it is impossible that you don't find the specified code.

No work in Seyret or Puarcade 15 years 10 months ago #6252

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Thanks for your help. I uninstalled PUArcade and then reinstalled a fresh download. For anyone else with the same problems, the lines of code in question are at 1787 and 1963 respectively.

Still no luck with Seyret but at least I am making some progress.

Regards

No work in Seyret or Puarcade 15 years 10 months ago #6254

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

Which version of seyret do you use? Did you configure the seyret plugin in joomlacomment's backend?

No work in Seyret or Puarcade 15 years 10 months ago #6256

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Yes! !JoomlaComment now works in PUArcade! Thank You!

Seyret 0.2.8.5

Seyret Configuration>>General>>Integration set to !JoomlaComment
!JoomlaComment>>Other Component Settings>>com_seyret is set up

Did I miss something?

Thanks Again

No work in Seyret or Puarcade 15 years 10 months ago #6258

  • Daniel Dimitrov
  • Daniel Dimitrov's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 9618
  • Karma: 155
  • Thank you received: 1081
hm, that is my version and it works for me. When you open the com_seyret do you see the seyret categories? Are they configured?

No work in Seyret or Puarcade 15 years 10 months ago #6264

  • Russ Williams
  • Russ Williams's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 0
Daniel Dimitrov wrote:

hm, that is my version and it works for me. When you open the com_seyret do you see the seyret categories? Are they configured?


No, that's the problem. It doesn't see anything from Seyret
  • Page:
  • 1
Time to create page: 0.183 seconds