Jump to content

The Upright Man

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by The Upright Man

  1. $mailcheck = $modules->get('EmailVerification'); I keep getting a null response from my page template when it hits this line, resulting in an error 500. The module is installed in processwire. Any idea?
  2. OK, your screenshots don't look like plain UIKIT to me (what mine is set to). A few things to check ... First, check the Module->Configure for AdminTheme stuff. Make sure the right ones are installed and configured correctly. I think at least some of this is stored in the database, so deleting files and upgrade/downgrade stuff is going to miss what is in your database. Second, Have you tried opening the floating messages that are in the way in Chome's inspector (or Firefox, whatever). This will show you the CSS/JS in charge of positioning the elements. It will tell you what file it loaded those from, which tells you what files are the problem.
  3. OK, I have 3 simple textarea fields on my page. Each contains raw HTML, no filtering. If I edit the textarea and save it, it immediately reverts to the previous content and I have to edit twice and save twice. I think the issue is that I am testing a custom login screen. I never log out. I do however login again, and even though the login is successful, it refuses to save on the admin page. Is this due to a changing session key or something? Is there some way to work around this? The whole idea was to be able to easily make edits, and every test basically logs me out without telling me I am logged out. I get the same problem working in the admin interface. Does it eventually time out the login? I have been working on code in the textbox for awhile and it seems like if I wait too long to save, I get the login box and everything resets to the previously saved state. This is basically what is happening when I test the login screen, except that since I'm logged in, I never get the login box. It just fails to save and shows me the old data. Data loss due to these issues is extremely frustrating! Any ideas on how to make the admin interface behave when logging in again or when it times out?
  4. Is it possible to make a hanna code tag that spans multiple lines? For example .. [[ my-hanna-tag var1=value1 var2=value2 var3=value3 ]] I'm not seeing the code that is causing the CRs to break the parser. Ideas? OK, I got it working by adding a quick hack to TextFormatterHannaCode.module, in function formatValue(), add $value = preg_replace('/\n+/', ' ', $value);
  5. The "Add To Cart" buttons don't do anything on that site. They just sit there.
  6. Ok. Site is done with Ajax. I'm looking for whatever magic javascript call (preferably jQuery) I need to make to fixup the parts of the page that were loaded dynamically. These pieces don't have event hooks and such to trigger the front page editor. I have tried loading the jquery adapter for ckeditor and that makes $('.ckeditor').ckeditor() work without throwing an error, but that's not setting the hooks to pull up edit mode. I'm missing 1 more thing. Anyone know?
×
×
  • Create New...