Jump to content

wishbone

Members
  • Posts

    183
  • Joined

  • Last visited

Posts posted by wishbone

  1. I'm still in the beginning of the install process. PW checks for compatibility. Though mod_rewrite is definitely enabled, it can't find it:

    "Unable to determine if Apache mod_rewrite (required by ProcessWire) is installed. On some servers, we may not be able to detect it until your .htaccess file is place. Please click the 'check again' button at the bottom of this screen, if you haven't already."

    I checked again, tested, and the hoster also says, mod_rewrite is always enabled. Anyway, I redirect already non-www Urls to www and such which works.

    I don't want to continue with this issue...

    (pw latest edition 3.0.165, PHP 7.4, MySQl 5.7. Shared hosting (strato).)

  2. lots of new things! yes, duplicator could help, but I'm not doing pw-sites very often, so I stick to the live server for now.

    Next problem occurs:

    ## started a new topic ##

    "Unable to determine if Apache mod_rewrite (required by ProcessWire) is installed. On some servers, we may not be able to detect it until your .htaccess file is place. Please click the 'check again' button at the bottom of this screen, if you haven't already."

    I checked again, tested, and the hoster also says, mod_rewrite is always enabled. Anyway, I redirect already non-www Urls to www and such which works.
    I don't want to continue with this issue...

    All these problems keep "Wordpress people" away from pw - so sry, b/c I myself, though a non-developer, like it so much and would wish it more popularity.

  3. thank you so much for your fast and thorough help!

    After hours of trying and testing, the solution is somewhat spooky: index.php opens if not specified in the URL, like so:
    domain.de opens index.php (and install.php successively), domain.de/index.php throws the above 404-error.

    I had index.php written in the URL because its a running site, with DirectoryIndex index.html

    btw: pw latest edition 3.0.165, PHP 7.4, MySQl 5.7. Shared hosting (strato).

  4. Hello,

    after a long time building again a site on processwire. I'm not a developer but had always fun working through processwire.

    But I didn't ever have such problems:

    Only uploading files and calling index.php throughs the error: "404 page not found (no site configuration or install.php available)"

    Calling install.php directly works fine, but I would like to eliminate the error for not to get problems because of misconfiguration later on.

    I tried with and without RewriteBase / , also tried to abandon the 1. Apache Options section - no result.

    Thanks!

  5. thx a lot looks great - unfortunately, I don't have access to files at the moment, so feed back will take some time... (btw would be helpful if PW had a possibility to access files and edit them via browser as well)

    as for the flexboxes - what makes them so appealing is the ability to align the boxes independent of their width and distance. Percents do not equal apply if you have margins and paddings in pixels...

  6. oh how great, thank you for the excessive lesson!

    But still doesn't work.

    This is what I have:

    <?php foreach($page->projectBox as $box) {
    				$box_count = 0;
    				if ( $box_count == 3 ) { 
    					// start a new line
    					echo "<br>";
    					$box_count = 0;
    				  } else {
    				echo "<div class='projektbox'>";
    				...
    				echo"</div>";
        			$box_count = $box_count + 1;
    				}
    			}
    				?>
    

    what is this underscore in $box_count?

    The divs are flexboxes which are "floating" by definition.

  7. Hallo,

    for a number of floating flexboxes I want to limit the number of them in each row.

    This is what I tried :

    <?php foreach($page->projectBox as $box) {
    				if (count($box)<3 | count($box)>3) {
    					echo "<div class='projektbox'>";
    					echo "<h2>{$box->boxTitle}</h2>";
    					echo "{$box->boxText}";
    					echo"</div>";
    					}
    				if (count($box)=3) {
    					echo "<br>";
    					}
    				}
    			?>
    

    Which throws a 500 error... any help, pls?

    Thank youuu!

  8. Installing CKEditor and MarkupHtmlPurifier throws the message:

    Module "InputfieldCKEditor" has multiple files (bold file is the one in use). Click here to change which file is used

    /site/modules/InputfieldCKEditor/InputfieldCKEditor.module
    /wire/modules/Inputfield/InputfieldCKEditor/InputfieldCKEditor.module

    What to do?

    thx

×
×
  • Create New...