|
maxi
|
|
Ни как не получается настроить php в Apache.18.01.2010, 18:58. Показов 2391. Ответов 4
Метки нет (Все метки)
Help me please!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!
Уже прям надоело. Ни как не получается настроить php в Apace. Уже пробовал все что мне советовали, результат отрицательный. Прям не знаю че и делать. Мне тут писали, что надо прописать в httpd.conf AddType application/x-httpd-php .php ScriptAlias /_php/ 'C:/php/' Action application/x-httpd-php ' /_php/php.exe' Я нашел там такую запись ScriptAlias /cgi-bin/ 'C:/Program Files/Apache Group/Apache2/cgi-bin/' Так эти три строки надо прописать вместо этой или просто дописать? Не имеет значения куда их писать или имеет? И вообще вот мой httpd.conf # # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs-2.0/> for detailed information about # the directives. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with '/' (or 'drive:/' for Win32), the # server will use that explicit path. If the filenames do *not* begin # with '/', the value of ServerRoot is prepended -- so 'logs/foo.log' # with ServerRoot set to 'C:/Program Files/Apache Group/Apache2' will be interpreted by the # server as 'C:/Program Files/Apache Group/Apache2/logs/foo.log'. # # NOTE: Where filenames are specified, you must use forward slashes # instead of backslashes (e.g., 'c:/apache' instead of 'c:apache'). # If a drive letter is omitted, the drive on which Apache.exe is located # will be used by default. It is recommended that you always supply # an explicit drive letter in absolute paths, however, to avoid # confusion. # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation (available # at <URL:http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile>); # you will save yourself a lot of trouble. # # Do NOT add a slash at the end of the directory path. # ServerRoot 'C:/Program Files/Apache Group/Apache2' # # ScoreBoardFile: File used to store internal server process information. # If unspecified (the default), the scoreboard will be stored in an # anonymous shared memory segment, and will be unavailable to third-party # app Module vhost_alias_module modules/mod_vhost_alias.so #LoadModule ssl_module modules/mod_ssl.so # # ExtendedStatus controls whether Apache will generate 'full' status # information (ExtendedStatus On) or just basic information (ExtendedStatus # Off) when the 'server-status' handler is called. The default is Off. # #ExtendedStatus On ### Section 2: 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # <VirtualHost> definition. These values also provide defaults for # any <VirtualHost> containers you may define later in the file. # # All of these directives may appear inside <VirtualHost> containers, # in which case these default settings will be overridden for the # virtual host being defined. # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin addmin@123 # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If this is not set to valid DNS name for your host, server-generated # redirections will not work. See also the UseCanonicalName directive. # # If your host doesn't have a registered DNS name, enter its IP address here. # You will have to access it by its address anyway, and this will make # redirections work in a sensible way. # ServerName 123:80 # # UseCanonicalName: Determines how Apache constructs self-referencing # URLs and the SERVER_NAME and SERVER_PORT variables. # When set 'Off', Apache will use the Hostname and Port supplied # by the client. When set 'On', Apache will use the value of the # ServerName directive. # UseCanonicalName Off # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot 'C:/Program Files/Apache Group/Apache2/htdocs' # # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdirectories). # # First, we configure the 'default' to be a very restrictive set of # features. # <Directory /> Options FollowSymLinks AllowOverride None </Directory> # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # This should be changed to whatever you set DocumentRoot to. # <Directory 'C:/Program Files/Apache Group/Apache2/htdocs'> # # Possible values for the Options directive are 'None', 'All', # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews # # Note that 'MultiViews' must be named *explicitly* --- 'Options All' # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs-2.0/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be 'All', 'None', or any combination of the keywords: # Options FileInfo AuthConfig Limit # All s relating to that virtual host will be # logged here. If you *do* define an error logfile for a <VirtualHost> # container, that host's errors will be logged there and not here. # ErrorLog logs/error.log # # LogLevel: Control the number of messages logged to the error.log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat '%h %l %u %t '%r ' %>s %b '%{Referer}i ' '%{User-Agent}i '' combined LogFormat '%h %l %u %t '%r ' %>s %b' common LogFormat '%{Referer}i -> %U' referer LogFormat '%{User-agent}i' agent # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a <VirtualHost> # container, they will be logged here. Contrariwise, if you *do* # define per-<VirtualHost> access logfiles, transactions will be # logged therein and *not* in this file. # CustomLog logs/access.log common # # If you would like to have agent and referer logfiles, uncomment the # following directives. # #CustomLog logs/referer.log referer #CustomLog logs/agent.log agent # # If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # #CustomLog logs/access.log combined # # ServerTokens # This directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules. # Set to one of: Full | OS | Minor | Minimal | Major | Prod # where Full conveys the most information, and Prod the least. # ServerTokens Full # # Optionally add a line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory # listings, mod_status and mod_info output etc., but not CGI generated # documents or custom error documents). # Set to 'EMail' to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature On # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So '/icons' isn't aliased in this # example, only '/icons/'. If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. # # We include the /icons/ alias for FancyIndexed directory listings. If you # do not use FancyIndexing, you may comment this out. # Alias /icons/ 'C:/Program Files/Apache Group/Apache2/icons/' <Directory 'C:/Program Files/Apache Group/Apache2/icons'> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> # # This should be changed to the ServerRoot/manual/. The alias provides # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation. # Alias /manual 'C:/Program Files/Apache Group/Apache2/manual' <Directory 'C:/Program Files/Apache Group/Apache2/manual'> Options Indexes FollowSymLinks MultiViews IncludesNoExec AddOutputFilter Includes html AllowOverride None Order allow,deny Allow from all </Directory> # # ScriptAlias: This controls which directories contain server scrip ncyIndexing customization directives above. # AddEncoding x-compress Z AddEncoding x-gzip gz tgz # # DefaultLanguage and AddLanguage allows you to specify the language of # a document. You can then use content negotiation to give a browser a # file in a language the user can understand. # # Specify a default language. This means that all data # going out without a specific language tag (see below) will # be marked with this one. You probably do NOT want to set # this unless you are sure it is correct for all cases. # # * It is generally better to not mark a page as # * being a certain language than marking it with the wrong # * language! # # DefaultLanguage nl # # Note 1: The suffix does not have to be the same as the language # keyword --- those with documents in Polish (whose net-standard # language code is pl) may wish to use 'AddLanguage pl .po' to # avoid the ambiguity with the common suffix for perl scripts. # # Note 2: The example entries below illustrate that in some cases # the two character 'Language' abbreviation is not identical to # the two character 'Country' code for its country, # E.g. 'Danmark/dk' versus 'Danish/da'. # # Note 3: In the case of 'ltz' we violate the RFC by using a three char # specifier. There is 'work in progress' to fix this and get # the reference data for rfc1766 cleaned up. # # Danish (da) - Dutch (nl) - English (en) - Estonian (et) # French (fr) - German (de) - Greek-Modern (el) # Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko) # Portugese (pt) - Luxembourgeois* (ltz) # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz) # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja) # Russian (ru) - Croatian (hr) # AddLanguage da .dk AddLanguage nl .nl AddLanguage en .en AddLanguage et .et AddLanguage fr .fr AddLanguage de .de AddLanguage he .he AddLanguage el .el AddLanguage it .it AddLanguage ja .ja AddLanguage pl .po AddLanguage ko .ko AddLanguage pt .pt AddLanguage nn .nn AddLanguage no .no AddLanguage pt-br .pt-br AddLanguage ltz .ltz AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage tw .tw AddLanguage zh-tw .tw AddLanguage hr .hr # # LanguagePriority allows you to give precedence to some languages # in case of a tie during content negotiation. # # Just list the languages in decreasing order of preference. We have # more or less alphabetized them here. You probably want to change this. # LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw # # ForceLanguagePriority allows you to serve a result page rather than # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) # [in case no accepted languages matched the available variants] # ForceLanguagePriority Prefer Fallback # # Specify a default charset for all pages sent out. This is # always a good idea and opens the door for future internationalisation # of your web site, should you ever want it. Specifying it as # a default does little harm; as the standard dictates that a page # is in iso-8859-1 (latin1) unless specified otherwise i.e. you # are merely stating the obvious. There are also some security # reasons in browsers, related to javascript and URL parsing # which encourage you to always set a default char set. # AddDefaultCharset ISO-8859-1 # # Commonly used filename extensions to character sets. You probably # want to avoid clashes with the language extensions, unless you # are good at carefully testing your setup after each change. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for # the official list of charset names and their respective RFCs # AddC the line: # # Alias /error/include/ '/your/include/path/' # # which allows you to create your own set of files by starting with the # @exp_errordir@/include/ files and copying them to /your/include/path/, # even on a per-VirtualHost basis. The default include files will display # your Apache version number and your ServerAdmin email address regardless # of the setting of ServerSignature. # # The internationalized error documents require mod_alias, mod_include # and mod_negotiation. To activate them, uncomment the following 30 lines. # Alias /error/ '@exp_errordir@/' # # <Directory '@exp_errordir@'> # AllowOverride None # Options IncludesNoExec # AddOutputFilter Includes html # AddHandler type-map var # Order allow,deny # Allow from all # LanguagePriority en de es fr it nl sv # ForceLanguagePriority Prefer Fallback # </Directory> # # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var # ErrorDocument 410 /error/HTTP_GONE.html.var # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var # ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # # The following directives modify normal HTTP response behavior to # handle known problems with browser implementations. # BrowserMatch 'Mozilla/2' nokeepalive BrowserMatch 'MSIE 4.0b2;' nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch 'RealPlayer 4.0' force-response-1.0 BrowserMatch 'Java/1.0' force-response-1.0 BrowserMatch 'JDK/1.0' force-response-1.0 # # The following directive disables redirects on non-GET requests for # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # Same deal with Apple's DAV filesystem. # BrowserMatch 'Microsoft Data Access Internet Publishing Provider' redirect-carefully BrowserMatch '^WebDrive' redirect-carefully BrowserMatch '^WebDAVFS/1.[012]' redirect-carefully # # Allow server status reports generated by mod_status, # with the URL of http://servername/server-status # Change the '.123' to match your domain to enable. # #<Location /server-status> # SetHandler server-status # Order deny,allow # Deny from all # Allow from .123 #</Location> # # Allow remote server configuration reports, with the URL of # http://servername/server-info (requires that mod_info.c be loaded). # Change the '.123' to match your domain to enable. # #<Location /server-info> # SetHandler server-info # Order deny,allow # Deny from all # Allow from .123 #</Location> # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # #<IfModule mod_proxy.c> #ProxyRequests On |
|
| 18.01.2010, 18:58 | |
|
Ответы с готовыми решениями:
4
Как настроить связку PHP +APACHE на WINDOWS Не могу настроить Apache c PHP Apache + PHP + MySQL. Проблема настроить. |
|
4 / 4 / 3
Регистрация: 25.05.2009
Сообщений: 2,576
|
|
| 18.01.2010, 19:45 | |
|
Стоит сказать, что на данный момент существуют две ветки Apache: 1.3.x и 2.x. По установке и настройке версии 1.3.x можно найти довольно много информации, а вот с версией 2.x дела обстоят хуже. Все дело в том, что системных администраторов устраивает версия 1.3.x, а с настройкой версии 2.x часто возникают проблемы. Поэтому я рассказываю о версии 2.x, хотя и не претендую на полное описание.
Первым делом надо скачать дистрибутив сервера с http://www.apache.org/. Скачиваем версию для Windows из раздела Win32/Binaries. Выбирайте последнюю версию сервера. Запустите скачанный файл. Появится окно установщика. Нажимайте далее до тех пор, пока не увидите следущее окно: Введите ваш e-mail, он будет отображаться как e-mail администратора в ответах сервера. Заполните поля Network Domain и Server Name. Если вы работаете локально, то можно написать в эти поля, что угодно, не забудьте только это слово, если оно отлично от слова localhost, внести в файл hosts. Файл hosts (без расширения) расположен в корневом каталоге Windows, если ваша система Win98 и в каталоге %SystemRoot%system32driversetc, если ваша система Win2k. Если файла там нет, его следует создать и записать в нем: 127.0.0.1 localhost имя_сервера_2 имя_сервера_3 имя_сервера_n Далее внимание! Если устанавливаемая версия сервера Apache является единственной на вашей машине, лучше выбрать первый (рекомендуемый) вариант установки: «for All Users on Port 80, as a Service -- Recommended». В этом случае вам не придется стартовать сервер вручную, он будет запускаться как сервис вместе со стартом системы. Если же на вашей машине уже имеется web-сервер, например Apache 1.3.х, то необходимо выбрать второй вариант установки: «Only for the Current User, on Port 8080, whem started Manually», в противном случае установить второй сервер вам не удастся. При последнем варианте установки вам придется стартовать сервер вручную (Пуск->Программы->Apache HTTP Server 2.0.40->Configure Apache Server-Start Apache in Console>). Вы также можете перед установкой второго сервера остановить сервис первого. Тогда появится возможность установить и второй Apache как сервис, стартующий вместе с системой. В этом случае в конфигурационном файле второго сервера необходимо изменить порт со стандартного 80 на другой, например, 8080: Listen 8080 Все адреса, обрабатываемые сервером, который работает на порту, отличном от 80, имеют вид: http://адрес:порт/, например: http://127.0.0.1:8080/ В следующем окне можете смело выбирать «Typical». В «Custom»-варианте имеется возможность установить дополнительные модули и библиотеки, отказаться от установки документации. В обоих вариантах будет предложено выбрать путь для установки программы. Нажимайте далее, пока не начнется копирование файлов. Поздравляю, установка Apache закончена! Конфигурирование Apache 2.x Определитесь с каталогом для файлов вашего сайта. Я использую C:Inet, но можно выбрать другой. Все настройки сервера можно менять, редактируя один единственный файл httpd.conf: Пуск->Программы->Apache HTTP Server 2.0.40->Configure Apache Server->Edit the Apache httpd.conf Configuration File. Можно также открыть этот файл с помощью любого текстового редактора, httpd.conf расположен в папке conf каталога, в который вы установили Apache, по умолчанию это: C:Program FilesApache GroupApache2conf Внимание! Для вступления настроек в силу необходимо перезапускать Apache. В этой же папке находится файл httpd.default.conf, в котором содержатся установки сервера по умолчанию, так что всегда все можно вернуть в первоначальное состояние, если вы окончательно испортите httpd.conf. Приступим к настройке Как и в версии ride None Options ExecCGI Order allow,deny Allow from all </Directory> Собственно в этом блоке за разрешение исполнения скриптов отвечает только опция ExecCGI директивы Options. Для того, чтобы Apache нормально понимал русский язык, найдите строчку AddDefaultCharset... (добавить кодировку по умолчанию) и замените ее на: AddDefaultCharset WINDOWS-1251 Находим строчку: #AddHandler cgi-script .cgi и меняем ее на следущую: AddHandler cgi-script .cgi .pl .exe .bat Это говорит Apache о том, что файлы с расширениями .cgi .pl .exe и .bat надо рассматривать как CGI-скрипты. Для установки поддержки SSI найдите и раскомментируйте следущие строчки: #AddType text/html .shtml #AddOutputFilter INCLUDES .shtml SSI (Server-Side Include) - директивы, исполняемые на стороне сервера. Они позволяют собирать документ из нескольких файлов, например, для того, чтобы во все страницы вставить одинаковую шапку или блок баннеров. Можете добавить расширения файлов, которые сервер будет просматривать на предмет наличия в них директив SSI: AddType text/html .shtml .shtm .html .htm AddOutputFilter INCLUDES .shtml . shtm .html .htm Однако учтите, что чем больше добавлено расширений, тем больше процессорных ресурсов сервер будет запрашивать при своей работе. Остальные настройки сервера можно оставить без изменений, таким образом, основное конфигурирование Apache завершено! Более подробно о директивах читайте в каталоге с документацией: http://127.0.0.1/manual/mod/directives.html http://127.0.0.1:8080/manual/mod/directives.html Установка PHP Скачайте последнюю версию PHP с сайта http://www.php.net/ в разделе Win32 Binaries. Файл должен иметь расширение .zip Распакуйте архив в папку, где у вас будет располагаться PHP, например C:PHP или C:usrlocalphp. Переименуйте файл php.ini-recommended в php.ini и скопируйте в каталог Windows. В этом файле можно устанавливать различные настройки PHP. Для запуска простого php-скрипта менять в php.ini ничего не надо. Также скопируйте файл php4ts.dll в каталог System или System32. Далее обратите внимание. PHP можно устанавливать как самостоятельную программу (в этом случае скрипты будут исполняться файлом php.exe), либо как модуль Apache (скрипты будут исполняться самим сервером с помощью файла модуля). Рекомендуется выбрать второй вариант, т.к. он обеспечивает более быструю работу скриптов (а на удаленном сервере еще и более безопасную). Для установки PHP как модуля Apache откройте httpd.conf и добавьте две строчки в секцию конфигурации главного сервера: LoadModule php4_module c hpsapiphp4apache2.dllAddType application/x-httpd-php php php3 php4 phtml Первая строчка загружает модуль (необходимо указать точный путь к нему), вторая - указывает серверу, файлы с каким расширением нужно рассматривать как php-скрипты. Обратите внимание на обратные слеши в пути к модулю PHP. В отличие от версии 1.3.x в версии 2.x добавление модуля к серверу осуществляется только одной директивой (LoadModule). Для настройки php больше никаких действий производить не нужно, класть php-скрипты можно в любые папки вашего сайта. Если после подключения модуля PHP ваш Apache при старте выдаст ошибку вида: E:>f:Apache2inapache.exe apache.exe: module 'c hp4buildsnapsapiapache2filtersapi_ap ache2.c' is not compatible with this version of Apache (found 20020628, need 20020903). Please contact the vendor for the correct version.________________________ следуй этой установке!
0
|
|
|
0 / 0 / 0
Регистрация: 01.03.2009
Сообщений: 32
|
|
| 20.01.2010, 16:25 | |
|
http://manlix.ru/?section=articles
та есть паза статей по установки apache
0
|
|
|
maxi
|
|
| 25.01.2010, 19:37 | |
|
Ура-а-а-а-а-а-а-а-а-а-а-а-а-а!!!!!!!!!!!!!!!!!!!!!!
Заработал мой php в Apache Только теперь один наводящий вопрос. Вместо руских букв - иероглефы??? Че делать? |
|
|
0 / 0 / 0
Регистрация: 01.03.2009
Сообщений: 32
|
|
| 25.01.2010, 19:52 | |
|
В таком случае можешь залесть сюда
http://apache.lexa.ru/
0
|
|
| 25.01.2010, 19:52 | |
|
Помогаю со студенческими работами здесь
5
PHP+MySQl+Apache, не получается подключится к БД Не могу настроить apache+php, ошибка 500 internal server error не получается установить связку apache+mysql+php+phpMyAdmin Что лучше, настроить Apache+PHP+MySQL вручную или установить Денвер? Как настроить apache? Искать еще темы с ответами Или воспользуйтесь поиском по форуму: |
|
Новые блоги и статьи
|
|||
|
http://iceja.net/ математические сервисы
iceja 20.01.2026
Обновила свой сайт http:/ / iceja. net/ , приделала Fast Fourier Transform экстраполяцию сигналов. Однако предсказывает далеко не каждый сигнал (см ограничения http:/ / iceja. net/ fourier/ docs ). Также. . .
|
http://iceja.net/ сервер решения полиномов
iceja 18.01.2026
Выкатила http:/ / iceja. net/ сервер решения полиномов (находит действительные корни полиномов методом Штурма).
На сайте документация по API, но скажу прямо VPS слабенький и 200 000 полиномов. . .
|
Расчёт переходных процессов в цепи постоянного тока
igorrr37 16.01.2026
/ *
Дана цепь(не выше 3-го порядка) постоянного тока с элементами R, L, C, k(ключ), U, E, J. Программа находит переходные токи
и напряжения на элементах схемы классическим методом(1 и 2 з-ны. . .
|
Восстановить юзерскрипты Greasemonkey из бэкапа браузера
damix 15.01.2026
Если восстановить из бэкапа профиль Firefox после переустановки винды, то список юзерскриптов в Greasemonkey будет пустым.
Но восстановить их можно так.
Для этого понадобится консольная утилита. . .
|
|
Сукцессия микоризы: основная теория в виде двух уравнений.
anaschu 11.01.2026
https:/ / rutube. ru/ video/ 7a537f578d808e67a3c6fd818a44a5c4/
|
WordPad для Windows 11
Jel 10.01.2026
WordPad для Windows 11
— это приложение, которое восстанавливает классический текстовый редактор WordPad в операционной системе Windows 11. После того как Microsoft исключила WordPad из. . .
|
Classic Notepad for Windows 11
Jel 10.01.2026
Old Classic Notepad for Windows 11
Приложение для Windows 11, позволяющее пользователям вернуть классическую версию текстового редактора «Блокнот» из Windows 10. Программа предоставляет более. . .
|
Почему дизайн решает?
Neotwalker 09.01.2026
В современном мире, где конкуренция за внимание потребителя достигла пика, дизайн становится мощным инструментом для успеха бренда. Это не просто красивый внешний вид продукта или сайта — это. . .
|