Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - feline

#16
True .. SSEF need a little bit (more) redesign .. but .. Slammedime is not so fast  :(

Fel
#17
ahh .. SSEF .. Ok, that is a simple hack  8)

in SimpleSEF.php find:

define('WIRELESS', false);
header('HTTP/1.1 301 Moved Permanently');

// This seems crazy, redirecting to the same url, but it really isn't
redirectexit($_SERVER['REQUEST_URL']);


add before:

if(!empty($modSettings['helpdesk_active']) && strpos($_SERVER['REQUEST_URL'], 'action=helpdesk') !== false && strpos($_SERVER['REQUEST_URL'], 'sa=ajax') !== false)
return;


Now it works  :)

Fel
#18
SimpleDesk Discussion / Problem with AJAX requests
April 06, 2010, 06:19:56 AM
On change the ticked details (Privacy, Urgency) I have always the error:
Your session timed out while posting.  Please go back and try again.
I have debug that, and see that the $_POST array is empty ... see attached image.

Fel
#19
SimpleDesk Discussion / Re: Bug on Admin section
April 06, 2010, 05:17:25 AM
For PortaMx we need no special handling. On stand alone mode we hide the portal.
If a user request a single page, the frontpage is shown with the requested page.
All works easy and will be implemented in the next update (v0.980-1)  :)

Fel
#20
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 03:31:23 PM
Yeah .. that's a good point. But I tested that and have a error .. not good.
With a small modification on my startup code I can fix that .. and anybody is happy  ;D

Fel
#21
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 03:24:16 PM
Ok .. the stand alone mode works .. but we then have no frontpage   ???

I will think about that ...

Fel
#22
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 03:06:36 PM
One other problem ..
The private switch (change) don't work .. (note, that I use SimpleSEF 1.0.3)

Fel
#23
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 03:04:46 PM
Ahh .. great. I will check that and if it works, this will be implemented in portamx.

Fel
#24
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 02:44:56 PM
Because we load the "Frontpage template" if no action exist, this get the error
Cannot redeclare template_main() (previously declared in Themes\default\PortaMx\PortaMx.template.php:15) in Themes\default\SimpleDesk.template.php on line 83

Is there a global settings exist, with information if simpledesk installed && active && in standalone mode?

Fel

.oO(the captcha is nerved)
#25
SimpleDesk Discussion / Re: Bug on Admin section
April 05, 2010, 02:32:46 PM
I just test simpledesk .. looks good for now.
It works not with PortaMx in the stand alone mode ..

And I have no access to the bugtracker?

Fel
#26
SimpleDesk Discussion / Bug on Admin section
April 05, 2010, 02:25:56 PM
On load the Admin page, the variable $context['html_headers'] is cleared.
To fix that change

// Load some extra CSS
$context['html_headers'] = '
<link rel="stylesheet" type="text/css" href="' . $settings['default_theme_url'] . '/css/helpdesk_admin.css" />


to

// Load some extra CSS
$context['html_headers'] .= '
<link rel="stylesheet" type="text/css" href="' . $settings['default_theme_url'] . '/css/helpdesk_admin.css" />


Fel