Menu

File does not exist: /var/www/html/cake2/rd_cake/phrase_values and blank logon screen

Help
DP M
2014-03-17
2014-09-25
  • DP M

    DP M - 2014-03-17

    Hi,
    I have searched the forum and googled a lot but could not get a solution.
    I am trying to install RADIUSdesk using the following link -
    http://www.radiusdesk.com/getting_started/install_ubuntu_apache
    and this test does not work.
    http://127.0.0.1/cake2/rd_cake/phrase_values/get_language_strings.json?_dc=1355816922405&language=
    please note there is no folder phrase_values.
    I have then tried cakephp-2.4.6 and cakephp-2.5 also still no such folder.

    I persisted with the install using the next steps. the install is going through without errors.
    Finally I am getting a blank screen on login. The following error is found in httpd/error_log.
    File does not exist: /var/www/html/cake2/rd_cake/phrase_values
    In fact there is no file or folder named phrase_values and no file get_language_strings.json.
    Ive checked the forums and am not seeing no mention of this problem. So I have concluded that the cake does no have this folder. Am I missing something?
    Can someone please help?

    Thanks
    DP

     
  • Tito

    Tito - 2014-03-18

    To me it looks like your cake2 installation is not working correctly. If you open just http://127.0.0.1/cake2 do you get any URL rewrite errors?

    Did you also restart apache after you installed/configured cake2?

     
  • Tito

    Tito - 2014-03-21

    Did you get this fixed? While updating cake2 I also noticed that not setting the folder to writable will make that test link fail.

     
    • Jon Webb

      Jon Webb - 2014-09-25

      Did you find a fix to this? The folder doesn't exist for me, and I am getting no login. Did you just create it manually?

       
  • Mfawa Alfred Onen

    Usually you want to make the directory owned by the webserver user. Also make sure mod_rewrite is enabled, the .htaccess file in rd_cake is present and you have added the apache mod as found in the documentation.

    \<Directory  /var/www/html/cake2>
        AllowOverride All
    </Directory>
    #-------COMPRESS CONTENT-----------
    # place filter 'DEFLATE' on all outgoing content
    SetOutputFilter DEFLATE
    # exclude uncompressible content via file type
    SetEnvIfNoCase Request_URI \.(?:exe|t?gz|jpg|png|pdf|zip|bz2|sit|rar)$ no-gzip
    #dont-vary
    # Keep a log of compression ratio on each request
    DeflateFilterNote Input instream
    DeflateFilterNote Output outstream
    DeflateFilterNote Ratio ratio
    LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
    CustomLog /var/log/httpd/deflate.log deflate
    # Properly handle old browsers that do not support compression
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    #----------------------------------
    
    #------ADD EXPIRY DATE-------------
    <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
        Header set Expires "Thu, 15 Apr 2015 20:00:00 GMT"
    </FilesMatch>
    #----------------------------------
    
    #--------Remove ETags --------------------
    FileETag none
    #-----------------------------------------
    
     

    Last edit: Mfawa Alfred Onen 2014-03-22

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.