MyAPI : plus d'accès frontend ni backend après activation des pluggins

Réduire
X
 
  • Filtrer
  • Heure
  • Afficher
Tout effacer
nouveaux messages

  • [Problème] MyAPI : plus d'accès frontend ni backend après activation des pluggins

    Bonjour,

    J'ai installé le module myAPI pour autoriser la création de comptes utilisateurs via le profil Facebook de mes visiteurs. Dans la page Gestion des plug-ins, j'ai tout d'abord eu le message suivant après l'installation :

    myApi requires the system plugin myApiConnect
    J'ai donc effectué une recherche sur myAPI pour voir si le pluggin myApiConnect était installé et, si oui, voir si il était activé. Je me suis rendu compte qu'il était présent mais non actif. Je l'ai donc activé. J'ai aussi activé les 3 pluggins ci-dessous, pensant bien faire :
    • System - myApiOpenGraph
    • System - myApiTabs
    • User - myApiUser


    Depuis ce moment là, je n'ai plus accès au frontend ni au backend car j'obtiens une page blanche quelque soit le lien sur lequel je clique (la page est conservé dans l'historique).

    Mon serveur est installé en local sur mon PC. J'ai le problème avec l'adresse local 127.0.0.1 et aussi avec l'adresse publique 82.xxx.xxx.xxx.

    Est-il possible de désactivé le module myAPI depuis les fichiers de configuration (dans wampserver/www) ? merci pour aide

    Edit : pour préciser que mon serveur wamp est bien démarré. La version de mon Joomla! est 1.7 et la page blanche n'affiche aucun message...

    Cordialement
    Florew
    Dernière édition par Florew à 20/11/2011, 14h49

  • #2
    Re : MyAPI : plus d'accès frontend ni backend après activation des pluggins

    Voici mon log d'accès Apache :

    Code:
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP Warning:  require_once(C:\\wamp\\www\\plugins\\system\\myApiConnectFacebook.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in C:\\wamp\\www\\plugins\\system\\myApiConnect\\myApiConnect.php on line 50
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP Stack trace:
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   1. {main}() C:\\wamp\\www\\index.php:0
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   2. JSite->initialise() C:\\wamp\\www\\index.php:31
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   3. JApplication->initialise() C:\\wamp\\www\\includes\\application.php:121
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   4. JPluginHelper::importPlugin() C:\\wamp\\www\\libraries\\joomla\\application\\application.php:220
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   5. JPluginHelper::_import() C:\\wamp\\www\\libraries\\joomla\\plugin\\helper.php:106
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   6. plgSystemmyApiOpenGraph->__construct() C:\\wamp\\www\\libraries\\joomla\\plugin\\helper.php:168
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   7. plgSystemmyApiConnect->getFacebook() C:\\wamp\\www\\plugins\\system\\myApiOpenGraph\\myApiOpenGraph.php:42
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP Fatal error:  require_once() [<a href='function.require'>function.require</a>]: Failed opening required 'C:\\wamp\\www\\plugins\\system\\myApiConnectFacebook.php' (include_path='.;C:\\php\\pear') in C:\\wamp\\www\\plugins\\system\\myApiConnect\\myApiConnect.php on line 50
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP Stack trace:
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   1. {main}() C:\\wamp\\www\\index.php:0
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   2. JSite->initialise() C:\\wamp\\www\\index.php:31
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   3. JApplication->initialise() C:\\wamp\\www\\includes\\application.php:121
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   4. JPluginHelper::importPlugin() C:\\wamp\\www\\libraries\\joomla\\application\\application.php:220
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   5. JPluginHelper::_import() C:\\wamp\\www\\libraries\\joomla\\plugin\\helper.php:106
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   6. plgSystemmyApiOpenGraph->__construct() C:\\wamp\\www\\libraries\\joomla\\plugin\\helper.php:168
    [Sun Nov 20 14:53:11 2011] [error] [client 127.0.0.1] PHP   7. plgSystemmyApiConnect->getFacebook() C:\\wamp\\www\\plugins\\system\\myApiOpenGraph\\myApiOpenGraph.php:42
    La ligne 50 de mon fichier myApiConnect.php est celle en rouge ci-dessous :

    Code:
    function getFacebook(){
    		try{ 
    			$version = new JVersion;
       			$joomla = $version->getShortVersion();
    			$vnum = substr($joomla,0,3);
        		if($vnum == '1.6')
    				require_once JPATH_SITE.DS.'plugins'.DS.'system'.DS.'myApiConnect'.DS.'myApiConnectFacebook.php';
    			else
    [COLOR="#FF0000"]				require_once JPATH_SITE.DS.'plugins'.DS.'system'.DS.'myApiConnectFacebook.php';[/COLOR]
    			
    		}catch(Exception $e){
    			return JError::raiseError( 100, $e->getMessage());
    		}
    Le fichier myApiConnectFacebook.php mentionné dans le log est bien présent.

    Aidez moi s'il vous plait.
    Dernière édition par Florew à 20/11/2011, 16h19

    Commentaire


    • #3
      Re : MyAPI : plus d'accès frontend ni backend après activation des pluggins

      Voici le contenu de ma table extensions. Pouvez-vous me dire si quelques chose cloche ?

      Code:
      extension_id 	name 	type 	element Croissant 	folder 	client_id 	enabled 	access 	protected 	manifest_cache 	params 	custom_data 	system_data 	checked_out 	checked_out_time 	ordering 	state
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	830 	Mobile Joomla! Ad Remover 	plugin 	adremover 	mobile 	0 	1 	1 	0 	{"legacy":true,"name":"Mobile Joomla! Ad Remover",...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	826 	Mobile - Forever 	plugin 	always 	mobile 	0 	1 	1 	0 	{"legacy":true,"name":"Mobile - Forever","type":"p...	{"markup":"0"}			0 	0000-00-00 00:00:00 	8 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	413 	plg_editors-xtd_article 	plugin 	article 	editors-xtd 	0 	1 	1 	1 	{"legacy":false,"name":"plg_editors-xtd_article","...	{}			0 	0000-00-00 00:00:00 	1 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	500 	atomic 	template 	atomic 		0 	1 	1 	0 	{"legacy":false,"name":"atomic","type":"template",...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	505 	beez5 	template 	beez5 		0 	1 	1 	0 	{"legacy":false,"name":"beez5","type":"template","...	{"wrapperSmall":"53","wrapperLarge":"72","sitetitl...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	503 	beez_20 	template 	beez_20 		0 	1 	1 	0 	{"legacy":false,"name":"beez_20","type":"template"...	{"wrapperSmall":"53","wrapperLarge":"72","sitetitl...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	502 	bluestork 	template 	bluestork 		1 	1 	1 	0 	{"legacy":false,"name":"bluestork","type":"templat...	{"useRoundedCorners":"1","showSiteName":"0","textB...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	424 	plg_system_cache 	plugin 	cache 	system 	0 	0 	1 	1 	{"legacy":false,"name":"plg_system_cache","type":"...	{"browsercache":"0","cachetime":"15"}			0 	0000-00-00 00:00:00 	9 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	417 	plg_search_categories 	plugin 	categories 	search 	0 	1 	1 	0 	{"legacy":false,"name":"plg_search_categories","ty...	{"search_limit":"50","search_content":"1","search_...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	410 	plg_editors_codemirror 	plugin 	codemirror 	editors 	0 	1 	1 	1 	{"legacy":false,"name":"plg_editors_codemirror","t...	{"linenumbers":"0","tabmode":"indent"}			0 	0000-00-00 00:00:00 	1 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	3 	com_admin 	component 	com_admin 		1 	1 	1 	1 	{"legacy":false,"name":"com_admin","type":"compone...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	4 	com_banners 	component 	com_banners 		1 	1 	1 	0 	{"legacy":false,"name":"com_banners","type":"compo...	{"purchase_type":"3","track_impressions":"0","trac...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	5 	com_cache 	component 	com_cache 		1 	1 	1 	1 	{"legacy":false,"name":"com_cache","type":"compone...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	6 	com_categories 	component 	com_categories 		1 	1 	1 	1 	{"legacy":false,"name":"com_categories","type":"co...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	7 	com_checkin 	component 	com_checkin 		1 	1 	1 	1 	{"legacy":false,"name":"com_checkin","type":"compo...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	801 	comprofiler 	component 	com_comprofiler 		1 	1 	0 	0 	{"legacy":false,"name":"comprofiler","type":"compo...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	23 	com_config 	component 	com_config 		1 	1 	0 	1 	{"legacy":false,"name":"com_config","type":"compon...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	8 	com_contact 	component 	com_contact 		1 	1 	1 	0 	{"legacy":false,"name":"com_contact","type":"compo...	{"show_contact_category":"hide","show_contact_list...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	22 	com_content 	component 	com_content 		1 	1 	0 	1 	{"legacy":false,"name":"com_content","type":"compo...	{"article_layout":"_:default","show_title":"1","li...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	9 	com_cpanel 	component 	com_cpanel 		1 	1 	1 	1 	{"legacy":false,"name":"com_cpanel","type":"compon...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	832 	extplorer 	component 	com_extplorer 		1 	1 	0 	0 	{"legacy":true,"name":"eXtplorer","type":"componen...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	808 	geocode_factory 	component 	com_geocode_factory 		1 	1 	0 	0 	{"legacy":true,"name":"Geocode_Factory","type":"co...	{"ggServer":"google.fr","iGeoOnce":"25","iPause":"...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	10 	com_installer 	component 	com_installer 		1 	1 	1 	1 	{"legacy":false,"name":"com_installer","type":"com...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	810 	com_jaextmanager 	component 	com_jaextmanager 		1 	1 	0 	0 	{"legacy":false,"name":"com_jaextmanager","type":"...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	835 	jw_disqus 	component 	com_jw_disqus 		1 	0 	0 	0 	{"legacy":true,"name":"JW_DISQUS","type":"componen...	{}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	11 	com_languages 	component 	com_languages 		1 	1 	1 	1 	{"legacy":false,"name":"com_languages","type":"com...	{"administrator":"fr-FR","site":"fr-FR"}			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	12 	com_login 	component 	com_login 		1 	1 	1 	1 	{"legacy":false,"name":"com_login","type":"compone...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	1 	com_mailto 	component 	com_mailto 		0 	1 	1 	1 	{"legacy":false,"name":"com_mailto","type":"compon...				0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	13 	com_media 	component 	com_media 		1 	1 	0 	1 	{"legacy":false,"name":"com_media","type":"compone...	{"upload_extensions":"bmp,csv,doc,gif,ico,jpg,jpeg...			0 	0000-00-00 00:00:00 	0 	0
      	Modifier Modifier 	Modifier Éditer en place 	Copier Copier 	Effacer Effacer 	14 	com_menus 	component 	com_menus 		1 	1 	1 	1 	{"legacy":false,"name":"com_menus","type":"compone...	{}			0 	0000-00-00 00:00:00 	0 	0

      Commentaire


      • #4
        Re : MyAPI : plus d'accès frontend ni backend après activation des pluggins

        Bonjour,

        Quelqu'un sait comment je peux désactiver ces trois pluggins depuis phpMyAdmin ou depuis un fichier de conf ? (je très embêté car je n'ai plus accès au backend)

        - System - myApiOpenGraph
        - System - myApiTabs
        - User - myApiUser

        Cordialement,
        Flo

        Commentaire


        • #5
          Re : MyAPI : plus d'accès frontend ni backend après activation des pluggins

          de mémoire tu vas dans ta base de données, puis dans "jos_plugins"
          De là, tu trouveras - System - myApiOpenGraph / System - myApiTabs / User - myApiUser -, normalement à la fin de la liste.
          Tu devrais avoir "1" dans la colonne "published" de chacun d'eux. Modifie en "0".
          Au besoin, si derrière tu as un problème d'autorisation, fais de même avec "system - myApyUser" et "system - myApiAuthentication".

          En espérant t'avoir aidé.

          Commentaire


          • #6
            Re : MyAPI : plus d'accès frontend ni backend après activation des pluggins

            Salut et merci pour ta réponse.

            Dans la structure de ma base la table "jos_plugins" n'apparait pas. Comment dois-je faire ?

            Il y a comprofiler_plugin mais ce sont les plugins de Community Builder...

            Code:
             Structure o3qoj_assets
                Structure o3qoj_associations
                Structure o3qoj_banners
                Structure o3qoj_banner_clients
                Structure o3qoj_banner_tracks
                Structure o3qoj_categories
                Structure o3qoj_comprofiler
                Structure o3qoj_comprofiler_fields
                Structure o3qoj_comprofiler_field_values
                Structure o3qoj_comprofiler_lists
                Structure o3qoj_comprofiler_members
                Structure o3qoj_comprofiler_plugin
                Structure o3qoj_comprofiler_sessions
                Structure o3qoj_comprofiler_tabs
                Structure o3qoj_comprofiler_userreports
                Structure o3qoj_comprofiler_views
                Structure o3qoj_contact_details
                Structure o3qoj_content
                Structure o3qoj_content_frontpage
                Structure o3qoj_content_rating
                Structure o3qoj_core_log_searches
                Structure o3qoj_drivers
                Structure o3qoj_extensions
                Structure o3qoj_geocode_factory_maps
                Structure o3qoj_geocode_factory_markersets
                Structure o3qoj_geocode_factory_parametres
                Structure o3qoj_jaem_log
                Structure o3qoj_jaem_services
                Structure o3qoj_languages
                Structure o3qoj_menu
                Structure o3qoj_menu_types
                Structure o3qoj_messages
                Structure o3qoj_messages_cfg
                Structure o3qoj_modules
                Structure o3qoj_modules_menu
                Structure o3qoj_myapi_comment_mail
                Structure o3qoj_myapi_pages
                Structure o3qoj_myapi_users
                Structure o3qoj_newsfeeds
                Structure o3qoj_passengers
                Structure o3qoj_redirect_links
                Structure o3qoj_schemas
                Structure o3qoj_session
                Structure o3qoj_template_styles
                Structure o3qoj_terawurflcache
                Structure o3qoj_terawurflindex
                Structure o3qoj_terawurflmerge
                Structure o3qoj_terawurflsettings
                Structure o3qoj_terawurfl_alcatel
                Structure o3qoj_terawurfl_android
                Structure o3qoj_terawurfl_aol
                Structure o3qoj_terawurfl_apple
                Structure o3qoj_terawurfl_benq
                Structure o3qoj_terawurfl_blackberry
                Structure o3qoj_terawurfl_bot
                Structure o3qoj_terawurfl_catchall
                Structure o3qoj_terawurfl_chrome
                Structure o3qoj_terawurfl_docomo
                Structure o3qoj_terawurfl_firefox
                Structure o3qoj_terawurfl_grundig
                Structure o3qoj_terawurfl_htc
                Structure o3qoj_terawurfl_kddi
                Structure o3qoj_terawurfl_konqueror
                Structure o3qoj_terawurfl_kyocera
                Structure o3qoj_terawurfl_lg
                Structure o3qoj_terawurfl_mitsubishi
                Structure o3qoj_terawurfl_motorola
                Structure o3qoj_terawurfl_msie
                Structure o3qoj_terawurfl_nec
                Structure o3qoj_terawurfl_nintendo
                Structure o3qoj_terawurfl_nokia
                Structure o3qoj_terawurfl_opera
                Structure o3qoj_terawurfl_operamini
                Structure o3qoj_terawurfl_panasonic
                Structure o3qoj_terawurfl_pantech
                Structure o3qoj_terawurfl_philips
                Structure o3qoj_terawurfl_portalmmm
                Structure o3qoj_terawurfl_qtek
                Structure o3qoj_terawurfl_safari
                Structure o3qoj_terawurfl_sagem
                Structure o3qoj_terawurfl_samsung
                Structure o3qoj_terawurfl_sanyo
                Structure o3qoj_terawurfl_sharp
                Structure o3qoj_terawurfl_siemens
                Structure o3qoj_terawurfl_sonyericsson
                Structure o3qoj_terawurfl_spv
                Structure o3qoj_terawurfl_toshiba
                Structure o3qoj_terawurfl_vodafone
                Structure o3qoj_terawurfl_windowsce
                Structure o3qoj_updates
                Structure o3qoj_update_categories
                Structure o3qoj_update_sites
                Structure o3qoj_update_sites_extensions
                Structure o3qoj_usergroups
                Structure o3qoj_users
                Structure o3qoj_user_profiles
                Structure o3qoj_user_usergroup_map
                Structure o3qoj_viewlevels
                Structure o3qoj_weblinks

            Commentaire

            Annonce

            Réduire
            Aucune annonce pour le moment.

            Partenaire de l'association

            Réduire

            Hébergeur Web PlanetHoster
            Travaille ...
            X