i have website developed with cms joomla , it work fine since 2014 but no i have the probleme with message error : 0 - The parameter "roksprocket.providers.path" must be defined.
url website : http://aldimexgroup.com/.
thank you for your help .
Related
i'm using CodeIgniter 4 and having trouble creating a route
I have this url
/Show/post/100008
But I want to route it to this
/post/100008
I've tried
$routes->get('/post/(:num)', 'Show::post/(:num)');
but i'm getting 404 error when typing /post/100008 url only
Is the route correct or is there any other solution for it?
Thank you
The solution is by changing the line to
$routes->get('/post/(:num)', 'Show::post/$1');
Codeigniter 4 URI Routing docs : https://codeigniter.com/user_guide/incoming/routing.html
I'm running a website under TYPO3 6.2 and follow this tutorial in order to migrate my website on HTTPS. For now I got success with :
following typoscript configuration on the root page :
config.absRefPrefix = auto
config.baseURL >
following TSconfig on the root page :
TCAdefaults.pages.url_scheme = 2
.. and everything seem to work fine. But if I edit this parameter :
... website shuts down with infinite redirection loop (301 Moved Permanently). Why ? The result is the same (infinite loop) if I execute this query :
UPDATE pages SET url_scheme = 2
...and same for BE if I make this change :
$GLOBALS['TYPO3_CONF_VARS']['BE']['lockSSL'] = ‘2’;
You should not use the url_scheme field exactly because of issues like these. In fact this field was dropped with TYPO3v8. Any Page TSConfig related to url_scheme should be removed and you should run an SQL query to fix all existing pages.
Instead you should enforce HTTPS using a redirect in your .htaccess.
Infinite loops like these are usually caused by redirects performed both by TYPO3 and your webserver:
You request the site with HTTP.
TYPO3 redirects to HTTPS
Your webserver redirects to HTTP
Repeat 2. and 3.
For this reason you should also check your existing redirects, e.g. for enforcing www. in your domain.
i have added sitemap.xml file to my codeigniter project.
And i call it on my localhost like that : http://localhost/demo/sitemap.xml
it runs without any issue.
But when i run it on live server http://example.com/demo/sitemap.xml
it says 404 page not found.
What is issue ?
you need to add below things in your config/routes.php file
$route['sitemap\.xml'] = 'demo/sitemap'; // your navigation path i.e. your controller_name/function_name
I have a custom component contactList to show list of contacts from DB . This works fine and list gets displayed in localhost when i call index.php?option=com_componentList . But now i uploaded the project to the live server . In live server I am getting this 404 error . Other built in components are working perfectly . What could be the reason ? Thanks in advance .
I got this error while creating a joomla logout link. Here is my code please help
if($user->id){
$token = JUtility::getToken();
$linkout = JRoute::_("index.php?option=com_users&task=user.logout&".$token."=1");
}
and echo $linkout to anchor tag
JUtility::getToken() has been replaced by JSession::getFormToken(), thus code could be changed to:
&task=user.logout&<?php echo JSession::getFormToken(); ?>=1">
you may want to use this for further reference:
joomla 3 and joomla platform 12.2 potential backward compatibility issues