Jump to content

Frank Schneider

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by Frank Schneider

  1. this was the solution thank you very much
  2. I have a site that stores member data, template and fields. for new member i store in /mitglieder/mitglied_neu/ -> this works i add a new page /mitglieder/mitglied_edit/ and i call with echo "<a href='".$pages->get("/mitglieder/mitglied_edit/")->url(array("urlSegments" => array($mitglied->id)))."'>"; URL -> ...../Processwire/mitglieder/mitglied_edit/1071/ and i get an 404 Error page not found. can anyone say me why, whats wrong? in the page i want the id: 1071 in the page: $mitglied = null; if ($page->url == $pages->get("/mitglieder/mitglied_neu/")->url) { $mitglied = $pages->get("id=".(int)$input->urlSegment0); } if ($page->url == $pages->get("/mitglieder/mitglied_neu/")->url && $mitglied == null) { throw new Wire404Exception(); }
  3. I read Dokumentation, but it not help me. Equal what i change in the options nothing change. $menu = $modules->get('MarkupMenuBuilder'); $options = array( 'has_children_class' => 'has_children', 'current_class' => 'current', 'menu_css_id' => 'main', 'menu_css_class' => 'nav', ); echo $menu->render("MainLeft", $options);
  4. I use the MarkupMenuBuilder. For me is unclear how i can design with css. can anyone help me wit examples?
  5. Hello, everyone I moved my website with Processwire to a local Xampp server 7.4.23. The port is 8080 and 3307. I have adjusted the changes to the database access in site \ config.php. $ config-> dbHost = 'localhost'; $ config-> dbName = 'DB1234567'; $ config-> dbUser = 'root'; $ config-> dbPass = ''; $ config-> dbPort = '3307'; The call is made with http: // localhost: 8080 / <mySite> /. Still it doesn't work, I get "The website cannot be reached" Can someone help me?
×
×
  • Create New...